diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..18b5036 --- /dev/null +++ b/.env.example @@ -0,0 +1,26 @@ +# Copy this file to .env and fill in real values. .env is gitignored. +# All values are required only for the steps that use them — see README.md +# for which scripts need which credentials. + +# --- GitHub Search API (required for github_ai_daily.py and fetch_bot_donors.py) --- +# Fine-grained personal access token. No scopes needed for public-search reads. +# Create at: https://github.com/settings/personal-access-tokens/new +# Rate limit: 30 req/min with token (vs 10 req/min unauthenticated). +GITHUB_TOKEN= + +# --- Google Cloud Platform (required for fetch_branch_activity.py, +# fetch_branch_creates.py, fetch_daily_totals.py) --- +# Your GCP project ID. Must have BigQuery enabled and a billing account +# attached (the GH Archive dataset is public but query costs are billed +# to your project). See README.md for setup instructions. +GCP_PROJECT= + +# Authentication is via Application Default Credentials. Run once on your +# machine: gcloud auth application-default login +# Or set the standard variable to point at a service-account JSON: +# GOOGLE_APPLICATION_CREDENTIALS=/absolute/path/to/sa-key.json + +# --- Slack alerting (optional — pipeline runs fine without it) --- +# Incoming-webhook URL. Pipeline posts anomaly/failure summaries here; +# clean runs stay quiet. Leave blank to disable. +SLACK_WEBHOOK_URL= diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..4d1c5f8 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,29 @@ +name: CI + +on: + push: + branches: + - "**" + pull_request: + workflow_dispatch: + +permissions: + contents: read + +jobs: + tests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.12" + cache: pip + + - name: Install dependencies + run: pip install -r requirements.txt + + - name: Run tests + run: python -m pytest tests/ -v diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml new file mode 100644 index 0000000..46ad4db --- /dev/null +++ b/.github/workflows/daily.yml @@ -0,0 +1,55 @@ +name: Daily Pipeline + +on: + # Schedule intentionally disabled until the first manual run on main passes. + # Re-enable in a follow-up PR after verifying BigQuery auth, git push, and + # Slack webhook work end-to-end in Actions. + # + # schedule: + # # 10:00 UTC daily — GitHub indexes have settled for "yesterday" by then. + # - cron: "0 10 * * *" + workflow_dispatch: + inputs: + end_date: + description: "Target end date (YYYY-MM-DD). Default: yesterday UTC." + required: false + type: string + +permissions: + contents: write + +jobs: + run: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6 + with: + # Need a real ref so we can push back. + fetch-depth: 1 + token: ${{ secrets.GITHUB_TOKEN }} + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.12" + cache: pip + + - name: Install dependencies + run: pip install -r requirements.txt + + - name: Configure git for bot commits + run: | + git config user.name "github-actions[bot]" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" + + - name: Run daily pipeline + env: + GITHUB_TOKEN: ${{ secrets.GH_SEARCH_TOKEN }} + SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} + GITHUB_RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} + run: | + END_DATE_ARG="" + if [ -n "${{ inputs.end_date }}" ]; then + END_DATE_ARG="--end-date ${{ inputs.end_date }}" + fi + python run_pipeline.py --mode daily $END_DATE_ARG diff --git a/.github/workflows/weekly.yml b/.github/workflows/weekly.yml new file mode 100644 index 0000000..4d3f249 --- /dev/null +++ b/.github/workflows/weekly.yml @@ -0,0 +1,61 @@ +name: Weekly Pipeline + +on: + # Schedule intentionally disabled until the first manual run on main passes. + # Re-enable in a follow-up PR after verifying BigQuery auth, git push, and + # Slack webhook work end-to-end in Actions. + # + # schedule: + # # Monday 14:00 UTC — Sunday's BigQuery daily table has landed by then. + # - cron: "0 14 * * 1" + workflow_dispatch: + inputs: + end_date: + description: "Target end date (YYYY-MM-DD). Default: yesterday UTC." + required: false + type: string + +permissions: + contents: write + +jobs: + run: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6 + with: + fetch-depth: 1 + token: ${{ secrets.GITHUB_TOKEN }} + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.12" + cache: pip + + - name: Install dependencies + run: pip install -r requirements.txt + + - name: Auth to Google Cloud + env: + GCP_SA_KEY: ${{ secrets.GCP_SA_KEY }} + run: | + echo "$GCP_SA_KEY" > /tmp/gcp-sa-key.json + echo "GOOGLE_APPLICATION_CREDENTIALS=/tmp/gcp-sa-key.json" >> "$GITHUB_ENV" + + - name: Configure git for bot commits + run: | + git config user.name "github-actions[bot]" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" + + - name: Run weekly pipeline + env: + GITHUB_TOKEN: ${{ secrets.GH_SEARCH_TOKEN }} + SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} + GITHUB_RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} + run: | + END_DATE_ARG="" + if [ -n "${{ inputs.end_date }}" ]; then + END_DATE_ARG="--end-date ${{ inputs.end_date }}" + fi + python run_pipeline.py --mode weekly $END_DATE_ARG diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0f74c3d --- /dev/null +++ b/.gitignore @@ -0,0 +1,46 @@ +# OS +.DS_Store + +# Screenshots and dashboard renders (regenerable) +*.png +dashboard.html + +# PDFs in root (old location — research papers) +/*.pdf + +# References folder is tracked (source material for methodology) +!references/*.pdf + +# Generated Excel (regenerable from build_carbon_workbook.py) +carbon_estimation_workbook.xlsx + +# GH Archive local data +gharchive_data/ + +# Python +__pycache__/ +*.pyc + +# Environment +.env + +# Git worktrees (isolated feature branches) +.worktrees/ + +# Claude Code local per-machine settings (may contain session-approved +# shell snippets with embedded secrets — must never be tracked) +.claude/settings.local.json + +# Superpowers brainstorming companion session dirs +.superpowers/ + +# Exploratory pilots (kept local, never tracked) +pilot_*.py +pilot_*.csv +claude_code_model_mix_pilot.csv + +# Log files (regenerable from re-running fetchers) +*.log + +# Intervention analysis outputs (regenerable from run_intervention_analysis.py) +outputs/ diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..213c668 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,153 @@ +# AGENTS.md + +Operating manual for AI coding agents working with this repository. Read this file before running any script or modifying any file. + +## Project goal + +Estimate market share and adoption velocity of AI coding agents (Cursor, Claude Code, OpenAI Codex, GitHub Copilot, Devin, Aider, and ~25 others) from publicly observable GitHub signals. The repo triangulates four data signals (commit attribution, branch-prefix activity, total push volume, total branch-create volume), generates a Plotly dashboard, and includes a worked intervention analysis (the October 20, 2025 Claude Code web launch). + +## File map + +**Pipeline scripts:** +- `github_ai_daily.py` — fetches per-tool daily commit counts via GitHub Search API. Reads `GITHUB_TOKEN`. Appends to `daily_ai_commits.csv`. +- `fetch_branch_activity.py` — BigQuery scan of `githubarchive.day.*` for PushEvents to agent-prefixed branches (`codex/`, `copilot/`, `cursor/`, etc.). Reads `GCP_PROJECT`. Writes `branch_activity_daily.csv`. +- `fetch_branch_creates.py` — BigQuery scan for `CreateEvent` + `ref_type='branch'`. Writes `branch_creates_daily.csv` and `agent_branch_creates_daily.csv`. +- `fetch_daily_totals.py` — BigQuery scan for total PushEvents (denominator). Writes `push_events_daily.csv`. +- `estimate_carbon.py` — applies Jegham et al. (2025) energy/carbon framework. Writes `daily_carbon_estimates.csv`. +- `dashboard.py` — builds the Plotly HTML dashboard from the CSVs. Writes `dashboard.html`. +- `run_pipeline.py` — orchestrator. `--mode daily` or `--mode weekly`. Reads `GITHUB_TOKEN`, optionally `SLACK_WEBHOOK_URL`. +- `anomaly_analysis.py` — detects signature drift in `daily_ai_commits.csv`. +- `build_carbon_workbook.py` — Excel QA workbook. + +**Intervention analysis:** +- `run_intervention_analysis.py` — orchestrator for the Oct 20 Claude Code intervention study. +- `intervention_data.py` — shared data loaders. +- `intervention_car.py` — event-window cumulative abnormal returns (primary estimator). +- `intervention_breaks.py` — Bai-Perron / BEAST changepoint detection. +- `intervention_pairs.py` — first-difference ITS on substitution pairs. +- `intervention_bsts.py` — BSTS local-linear-trend (robustness). +- `intervention_sdid.py` — synthetic difference-in-differences (robustness). +- `intervention_var.py` — compositional VAR on ALR-transformed shares. +- `intervention_sigmoids.py` — descriptive 3-param logistic fits. +- `intervention_robustness.py` — supporting placebo + sensitivity checks. +- `fetch_bot_donors.py` — GitHub Search fetcher for never-treated donors. +- `vendor/synthdid/` — vendored from d2cml-ai/synthdid.py (PyPI build fails on Python 3.14). +- `events/model_releases.csv` — dated calendar of model releases / agent launches. + +**Data files (all shipped with the repo):** +- `daily_ai_commits.csv` — ~450 days × 32 tools. +- `branch_activity_daily.csv`, `branch_creates_daily.csv`, `agent_branch_creates_daily.csv`. +- `push_events_daily.csv`, `daily_carbon_estimates.csv`. +- `bot_donors_daily.csv` — donor pool for SDID. + +**Documentation:** +- `README.md` — human-facing setup and usage. +- `METHODOLOGY.md` — full methodology, caveats, signal definitions. +- `references/` — 9 PDFs of academic papers cited by the methodology. + +**Tests:** +- `tests/` — pytest suite. CI runs it on every push. + +## Setup checklist + +Before running anything that talks to a network: + +1. **Python 3.12 environment.** `python --version` should report 3.12.x. If you're on 3.13 or 3.14, the vendored `synthdid` works but `tfcausalimpact` / `pycausalimpact` will fail — the repo uses `statsmodels.UnobservedComponents` instead and that's fine. On macOS where Python is installed from python.org, you may need to use `python3` and `pip3` instead of bare `python`/`pip`. +2. **Install dependencies.** `pip install -r requirements.txt`. +3. **Credentials (only if refreshing data — not needed to explore the shipped CSVs):** + - `cp .env.example .env`, then fill in values. + - `GITHUB_TOKEN` — fine-grained PAT, no scopes needed for public-search reads. + - `GCP_PROJECT` — your GCP project ID. Requires BigQuery enabled and a billing account. The dataset (`githubarchive.day.*`) is public; the query cost (~$5–15 for a full backfill) is billed to your project. + - GCP auth via either `gcloud auth application-default login` or `GOOGLE_APPLICATION_CREDENTIALS` pointing at a service-account JSON. + - `SLACK_WEBHOOK_URL` — optional. Leave blank to disable alerting. + +## First contact: what can you do? + +When you're pointed at this repo for the first time, your first job is to check what credentials are available. Different capabilities require different credentials; some paths work with none at all. + +Run this check before anything else: + +```bash +python3 -c "import os; print('GITHUB_TOKEN:', bool(os.environ.get('GITHUB_TOKEN'))); print('GCP_PROJECT:', bool(os.environ.get('GCP_PROJECT')))" +``` + +Then route based on what's available: + +| Credentials | What you can do | +|-------------|-----------------| +| None | Explore shipped CSVs · Build dashboard · Run intervention analysis · Run test suite | +| `GITHUB_TOKEN` only | All of the above · Refresh `daily_ai_commits.csv` via `github_ai_daily.py` · Refresh `bot_donors_daily.csv` via `fetch_bot_donors.py` | +| `GCP_PROJECT` + GCP auth only | All no-credentials paths · Refresh BigQuery signals via the three `fetch_*` scripts | +| Both | Full pipeline refresh via `run_pipeline.py --mode daily` or `--mode weekly` | + +**If the user has no credentials**, tell them what you can do and offer to start with the dashboard or the intervention analysis (both run end-to-end in under a minute from the shipped CSVs). Don't pressure them to set up credentials — the shipped data covers ~450 days and the headline findings are reproducible from it. + +**If the user has GitHub but not GCP**, note that the BigQuery signals (branch activity, branch creates, push totals) will fall out of date but the commit-attribution signal stays current. + +**If the user has both**, before running anything with `--backfill`, confirm the user wants to incur BigQuery costs (~$5–15 for a full backfill against their GCP billing account). Default windows in `run_pipeline.py` are bounded — you can always run those safely. + +## Reproduce-the-analysis walkthrough (autonomous mode) + +Use this when you are running the analysis without a human in the loop. Each step has a verification check; do not proceed past a failed check. + +1. **Clone and install.** + ```bash + git clone && cd + pip install -r requirements.txt + ``` + Verify: `python -c "import plotly, statsmodels, numpy, pandas"` exits 0. + +2. **Run the test suite.** + ```bash + python -m pytest tests/ -v + ``` + Verify: all tests pass. If they don't, stop and report — don't continue building on a broken baseline. + +3. **Build the dashboard from shipped CSVs.** No credentials needed. + ```bash + python dashboard.py + ``` + Verify: `dashboard.html` is created. Open it in a browser to confirm the charts render. The dashboard spans the full data history (~450 days for commits, ~392 days for BigQuery signals). + +4. **Run the intervention analysis from shipped CSVs.** No credentials needed. + ```bash + python run_intervention_analysis.py + ``` + Verify: `outputs/intervention/` directory is created with charts + JSON results. Headline finding is in the CAR section: total-market cumulative abnormal commits ≈ +60K over the 8-day window after Oct 20, z ≈ 5.6. + +5. **(Optional, requires credentials) Refresh the data.** + - Daily refresh: `python run_pipeline.py --mode daily --dry-run` (drop `--dry-run` to persist). + - Weekly refresh (BigQuery): `python run_pipeline.py --mode weekly --dry-run`. **Warning: BigQuery scans cost real money.** A full re-run is ~$5–15 against your GCP billing account. Default date windows in the orchestrator are bounded (7–14 days back); never invoke `--backfill` on the BigQuery fetchers without confirming the user wants to pay for it. + +## Walk-the-user-through-it mode + +Use this when a human says "walk me through this repo" or "help me reproduce the analysis." Operate one step at a time, not all at once. + +1. **Ask what they want.** Common asks: (a) just explore the data, (b) reproduce the dashboard, (c) reproduce the intervention analysis, (d) refresh from source. Each path has a different setup cost. +2. **Check their environment.** Python version, whether they have `git clone`d already, whether they have a venv. +3. **For path (a) — data exploration only:** point them at the CSV files and show a 5-line pandas snippet to load one. No installs needed beyond `pandas`. +4. **For paths (b) and (c) — dashboard or intervention analysis:** `pip install -r requirements.txt`, then run the relevant script. Show them the output file paths. No credentials needed. +5. **For path (d) — refresh from source:** walk them through `.env.example` → `.env`, the GitHub PAT creation flow, the GCP project + BigQuery enablement flow, and `gcloud auth application-default login`. Warn explicitly about BigQuery costs before running any backfill. +6. **After each step:** confirm it worked (show the verification command and its expected output) before moving on. Surface anything that didn't behave as expected — the user is the source of truth on whether their environment is healthy, not you. + +## Guardrails + +- **Never commit `.env`, service-account JSON files, or any file containing a real token.** `.gitignore` already covers `.env`; double-check before any `git add -A`. Prefer `git add ` over `git add .`. +- **Never run unbounded BigQuery scans.** The fetchers accept `--start-date`/`--end-date`. Always bound them. A full backfill is ~$5; a typo (e.g., scanning all of 2024) could be much more. +- **Never hardcode credentials in code.** Read from environment via `os.environ.get(...)`. +- **Never commit `dashboard.html` or any large generated artifact.** They're gitignored for a reason — the file churns on every data refresh and bloats history. +- **Never destructively rewrite tracked CSVs.** The fetchers are designed to append-and-skip-already-fetched-dates. If you find a corrupted row, prefer a targeted patch over a regen-from-scratch, and explain the change in the commit message. +- **Test before claiming success.** "I ran the script" ≠ "the script worked." Run the verification command and quote the output. + +## Known footguns + +- **Signature changes.** AI tools change their commit attribution over time. `METHODOLOGY.md` documents three known events: Aider v0.85.0 (May 2025), Copilot SWE Agent rename (March 2026), Warp→Oz (March 2026). When a tool's daily count cliffs to near-zero, suspect a signature change first. +- **GH Archive data quality.** Three known issues in the BigQuery source data: May 24, 2025 (permanent ~35% drop in push events), Sep 8, 2025 (single-day brownout test), Oct 8–14, 2025 (major outage, 99.5% drop). These dates are nulled in the shipped CSVs. +- **GitHub Search API limits.** 30 req/min with token. The fetcher is rate-limit-aware but a full backfill takes hours. +- **`tfcausalimpact` and `pycausalimpact` don't install on Python 3.14.** The repo uses `statsmodels.UnobservedComponents` for the BSTS-style robustness fit. Don't try to "fix" the missing dependency by switching back. +- **`Rbeast` emits cosmetic SystemErrors on Python 3.14.** During `run_intervention_analysis.py` you may see repeated `SystemError: ...dictobject.c:4172: bad argument to internal function` messages from the `Rbeast` C extension. These are harmless — the script completes successfully and produces all artifacts. They're a known Rbeast/Python-3.14 incompatibility, not a sign of a real failure. +- **`synthdid` on PyPI doesn't build on Python 3.14.** The repo vendors the source in `vendor/synthdid/` with a one-line pandas 3.x shim. Don't `pip install synthdid`. + +## When in doubt + +Re-read `METHODOLOGY.md`. It is the canonical reference for what each signal means, why it's structured the way it is, and what its known limitations are. diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..43c994c --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1 @@ +@AGENTS.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..1e0c874 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,38 @@ +# Contributing + +Thanks for your interest. This is a research-tooling project, so the bar is "does the methodology stay honest" rather than "does this match a style guide." Two contribution paths are especially welcome: + +## Reporting a tool signature change + +The single biggest threat to this dataset is silent signature drift — an AI coding tool changes how it attributes commits (e.g., Aider v0.85.0 in May 2025, the Copilot SWE Agent rename in March 2026), and the detection query stops returning results. If you notice: + +- A tool's daily commit count drops to ~zero or spikes 10x for no obvious reason +- A vendor announces a rebrand, attribution change, or default-behavior change + +…please open an issue with: the tool name, the date the change appears in the data, a link to a public announcement if one exists, and a candidate new query string. See `METHODOLOGY.md` for the detection-pattern format. + +## Adding a new tool + +If you know of an AI coding agent that makes commits to public GitHub repos and isn't already tracked, open an issue or PR with: + +- The tool name and a link to its docs +- A sample commit URL on github.com showing its author/committer signature +- A GitHub Search query that reliably returns its commits (test it at github.com/search?type=commits) +- The fingerprint type (`author-email`, `author-name`, `committer-name`, etc.) + +## Running tests + +``` +pip install -r requirements.txt +python -m pytest tests/ -v +``` + +CI runs the same on every push and PR. + +## Code style + +No formatter is enforced. Match the surrounding code. Keep functions focused. If you're touching a fetcher script, please don't introduce new dependencies without flagging in the PR description — the dependency surface is intentionally small. + +## License + +By contributing, you agree your contributions will be licensed under the MIT License. diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..cb81f91 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 CNaught and contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/METHODOLOGY.md b/METHODOLOGY.md new file mode 100644 index 0000000..803e448 --- /dev/null +++ b/METHODOLOGY.md @@ -0,0 +1,563 @@ +# Methodology: AI Coding Agent Market Share Estimation via GitHub Commit Attribution + +## 1. Overview + +This project estimates the relative adoption and activity of AI coding agents on GitHub by querying the GitHub Search API for commits that bear tool-specific metadata signatures. The approach is based on the observation that many coding agents, when allowed to commit on behalf of the user, inject identifiable metadata into git commit fields (author name, author email, committer name, committer email). + +This methodology is informed by and cross-validated against two peer-reviewed studies: + +- Robbes et al. (2026), "Agentic Much? Adoption of Coding Agents on GitHub," arXiv:2601.18341 +- Robbes et al. (2026), "Promises, Perils, and (Timely) Heuristics for Mining Coding Agent Activity," arXiv:2601.18345 + +The latter maintains a catalog of 86 file-based, 20 branch-based, and 4 label-based heuristics across 48 coding agents, with approximate GitHub match counts as of October 2025. + +--- + +## 2. Detection Signal: Git Commit Metadata + +### 2.1 What We Search + +Each AI coding agent that commits on behalf of a user typically sets one or more of the following git fields to a tool-specific value: + +| Git Field | Example | Searchable via API? | +|-----------|---------|---------------------| +| `author.name` | `aider`, `devin-ai-integration`, `coderabbitai` | Yes (`author-name:`) | +| `author.email` | `noreply@anthropic.com`, `codex@openai.com` | Yes (`author-email:`) | +| `committer.name` | `GitHub Copilot`, `copilot-swe-agent` | Yes (`committer-name:`) | +| `committer.email` | `cursoragent@cursor.com` | Yes (`committer-email:`) | +| Co-authored-by trailer | `Co-authored-by: Claude ` | **No** (message body) | +| Custom trailers | `Generated by: Claude`, `Made-with: Cursor` | **No** (message body) | + +The GitHub Search API (commit search endpoint) can query the four structured metadata fields but **cannot** search within commit message bodies. This means Co-authored-by trailers and custom trailers are invisible to our method. Tools that primarily use trailers without also setting author/committer fields will be undercounted. + +### 2.2 Per-Tool Queries + +The following table lists all tools tracked, the query used, and the approximate total commits as reported by Robbes et al. (2026, Table 1 of arXiv:2601.18345, counts as of 2025-10-20). Our queries were independently validated against the GitHub Search API in March 2026. + +#### Tier 1: High Volume, Default-On Attribution + +| Tool | Query | Signal Field | Table 1 Count | +|------|-------|-------------|---------------| +| Claude Code | `author-email:noreply@anthropic.com` | author email | 2,700,000 | +| Copilot | `committer-name:"GitHub Copilot"` | committer name | 190,000 | +| Copilot SWE Agent | `committer-name:copilot-swe-agent` | committer name | 35,500 | +| Cursor | `committer-email:cursoragent@cursor.com` | committer email | 40,700 | +| Aider | `author-name:aider` | author name | 44,700 | + +#### Tier 2: Significant Volume + +| Tool | Query | Signal Field | Table 1 Count | +|------|-------|-------------|---------------| +| Devin | `author-name:"devin-ai-integration"` | author name | 14,800 | +| Lovable | `author-name:"lovable-dev"` | author name | N/A (file-based) | +| OpenHands | `author-email:openhands@all-hands.dev` | author email | 35,900 | +| Gemini Code Assist | `author-name:gemini-code-assist` | author name | 22,500 | +| Coderabbit | `author-name:coderabbitai` | author name | 19,600 | +| ChatGPT | `author-name:ChatGPT` | author name | 23,300 | + +#### Tier 3: Moderate Volume + +| Tool | Query | Signal Field | Table 1 Count | +|------|-------|-------------|---------------| +| Gemini CLI | `author-email:218195315+gemini-cli@...` | author email | 3,500 | +| Jules (Google) | `author-name:google-labs-jules` | author name | 10,100 | +| Cline | `author-name:cline` | author name | 11,000 | +| Sourcery AI | `author-name:sourcery-ai` | author name | 10,400 | +| DeepSource | `author-name:deepsource-autofix` | author name | 10,200 | +| Sweep AI | `author-name:sweep-ai` | author name | 1,000 | +| Qwen Coder | `author-name:Qwen-Coder` | author name | 4,600 | +| Roo Code | `author-email:roomote@roocode.com` | author email | 3,400 | +| OpenCode | `author-email:noreply@opencode.ai` | author email | 5,700 | + +#### Tier 4: Lower Volume / Opt-In + +| Tool | Query | Signal Field | Table 1 Count | +|------|-------|-------------|---------------| +| OpenAI Codex | `author-email:codex@openai.com` | author email | 305 | +| Amp (Sourcegraph) | `author-email:amp@ampcode.com` | author email | 5,900 | +| Warp (Oz Agent) | `author-email:agent@warp.dev` | author email | N/A | +| Codegen | `author-name:codegen-sh` | author name | 2,800 | +| Gru | `author-name:gru-agent` | author name | 2,400 | +| Junie (JetBrains) | `author-email:junie@jetbrains.com` | author email | 615 | +| Crush | `author-email:crush@charm.land` | author email | 1,300 | +| Sketch | `author-email:hello@sketch.dev` | author email | 1,700 | +| Kilo Code | `author-name:"Kilo Code"` | author name | 474 | + +--- + +## 3. What This Measures (and What It Does Not) + +### 3.1 What We Measure + +This method measures **autonomous agent coding** — specifically, commits where an AI coding agent was the author or committer using its own identity. This corresponds to scenarios where the agent: + +1. Was given a task (via CLI prompt, issue assignment, or PR workflow) +2. Autonomously wrote code +3. Committed the result using its own name/email + +### 3.2 What We Do NOT Measure + +| Invisible Activity | Why | +|---|---| +| **Copilot autocomplete** (millions of users) | No commit trace. User commits under own identity. | +| **Cursor editor mode** (non-agent) | No commit trace. Only agent mode sets committer. | +| **Any tool in "suggest" mode** | User accepts suggestions and commits manually. | +| **Co-authored-by only** tools | Trailers are in message body, not searchable via API. | +| **Codex (most usage)** | Primarily works via branches/PRs, not commit authorship. Only 305 commits via email; 2.1M via branch names, 2.3M via PR labels — neither searchable via commit search. | +| **Windsurf/Codeium** | No commit-level signature. 12.6K via file heuristics only. | +| **Amazon Q** | Per-user emails, unsearchable. | +| **Tabnine** | IDE-only, no commit trace. | +| **Replit** | Per-user emails (`{id}-{user}@users.noreply.replit.com`). | +| **v0.dev, Bolt.new** | Web-based, no git commits. | +| **Any tool with attribution disabled** | Users can strip trailers via git hooks or agent config. | + +### 3.3 Implication + +The data systematically undercounts actual AI coding tool usage. The ratio of "commit-traceable" to "actual" usage varies dramatically by tool: + +- **Claude Code**: Likely well-represented (default-on author email, 2.7M commits) +- **Copilot**: Severely undercounted (190K commits vs. millions of autocomplete users) +- **Codex**: Severely undercounted (305 commit-level vs. 4.4M via branches/labels) +- **Cursor**: Moderately undercounted (agent mode only, not editor mode) + +This is why we describe our metric as "AI agent commit share" not "AI coding tool market share." + +--- + +## 4. GitHub Search API Behavior + +### 4.1 Endpoint + +``` +GET https://api.github.com/search/commits?q={query}&per_page=1 +``` + +We use `per_page=1` because we only need `total_count`, not the actual commit data. + +### 4.2 Date Filtering + +We use the `committer-date:` qualifier (not `author-date:`) with ISO 8601 date ranges: + +``` +author-email:noreply@anthropic.com committer-date:2026-01-01..2026-01-01 +``` + +This returns commits whose committer date falls on that specific day. + +### 4.3 Known Behaviors and Caveats + +| Behavior | Impact | Mitigation | +|----------|--------|------------| +| `total_count` is approximate for large result sets | Counts may fluctuate ±5% between identical queries | Run multiple times, accept as estimate | +| `incomplete_results: true` | GitHub's backend timed out; count is a **lower bound** | Flag with `~` marker in output | +| Pagination capped at 1000 results | Cannot enumerate all matching commits | We only use `total_count`, not pagination | +| Rate limits: 30 req/min (auth), 10 req/min (unauth) | Throttles throughput | 4s delay between calls with auth | +| `+` in email queries may be URL-mangled | Affects Gemini CLI queries | Use URL encoding carefully | +| `[bot]` suffix unreliable | `author-name:"lovable-dev[bot]"` fails | Use name without suffix | + +### 4.4 Authentication + +A GitHub Personal Access Token (fine-grained PAT, no specific permissions required for public search) is passed via `Authorization: Bearer` header. This increases rate limit from 10 to 30 requests per minute. + +--- + +## 5. Signal 2: Branch-Based Agent Detection (GH Archive) + +### 5.1 Motivation + +Some agents — most notably OpenAI Codex — work primarily through branches and pull requests rather than commit authorship. Codex creates branches like `codex/fix-login-bug`, pushes commits to them, and opens a PR. The commits themselves use the developer's identity, making Codex nearly invisible to Signal 1 (commit attribution). Yet Codex is one of the most widely used agents. + +Branch-based detection closes this gap by looking at PushEvent `ref` fields in GH Archive. + +### 5.2 Detection Method + +GH Archive PushEvents still contain the `ref` field (the branch being pushed to) even after the October 2025 payload change. We query BigQuery for PushEvents where the branch name starts with an agent-specific prefix: + +```sql +SELECT COUNT(*) as push_events +FROM `githubarchive.day.20260315` +WHERE type = 'PushEvent' + AND JSON_VALUE(payload, '$.ref') LIKE 'refs/heads/codex/%' +``` + +### 5.3 Agent Branch Prefixes + +| Agent | Branch Prefix | March 2026 Avg/Day | Notes | +|-------|--------------|-------------------|-------| +| Claude Code | `claude/` | ~21,000 | Also dominant in commit attribution | +| Codex | `codex/` | ~13,000 | **Invisible via commits** (200/day). This is the primary Codex signal. | +| Copilot | `copilot/` | ~10,300 | Significant in both signals | +| Cursor | `cursor/` | ~1,000 | Consistent across both signals | +| Devin | `devin/` | ~430 | Branch signal reveals 5x more than commits | +| Jules | `jules/` | ~40 | Low volume | +| Codegen | `codegen-bot/` | ~8 | Low volume | +| Sweep | `sweep/` | ~1 | Nearly inactive | +| OpenHands | `openhands/` | ~7 | Most activity via commit attribution instead | +| Gru | `gru/` | ~0 | Rare | +| Open SWE | `open-swe/` | ~8 | Rare | + +### 5.4 Important: These Are Different Units + +- **Signal 1** counts **commits** where the agent is the git author/committer +- **Signal 2** counts **push events** to agent-named branches + +A single push event may contain multiple commits. A single branch may receive multiple pushes. These signals **cannot be added together** — they measure fundamentally different things. + +### 5.5 Script: `fetch_branch_activity.py` + +Queries BigQuery for PushEvents matching agent branch prefixes. Supports `--date`, `--start-date`/`--end-date`, and `--month`. Outputs to `branch_activity_daily.csv`. + +--- + +## 6. Data Collection Scripts + +### `github_ai_daily.py` — Commit signal (Signal 1) + +Queries the GitHub commit search API for each (tool, date) combination. Flushes results to CSV after each day completes (crash-safe). Supports: + +- `--date YYYY-MM-DD`: Target a specific date +- `--start-date` / `--end-date`: Date range (inclusive) +- `--days N`: Last N days (default 7, skips current day) +- `--output `: CSV output path (default: `daily_ai_commits.csv`) + +CSV columns: `date`, `tool`, `view`, `commits`, `incomplete`, `run_id`, `fetched_at`. The `view` column records which query scope was used — in practice the pipeline always writes `all` (no repo filter). A `--view` flag is supported for ad-hoc filtered analyses but is not exercised by the automation. + +Each run gets a unique `run_id` (UTC timestamp). Skip logic checks `(date, tool, view)` triples — re-running safely resumes from where it left off. Console output shows per-day totals with weekday labels. + +### `fetch_branch_activity.py` — Branch signal (Signal 2) + +BigQuery query against `githubarchive.day.*` counting PushEvents whose `ref` matches agent-specific branch prefixes (`codex/`, `copilot/`, `cursor/`, etc.). Supports `--date`, `--start-date`/`--end-date`, `--month`. Output: `branch_activity_daily.csv`. + +Requires a Google Cloud service-account credential (`GOOGLE_APPLICATION_CREDENTIALS` pointing at a JSON key) or an authenticated `gcloud auth application-default login` session; runs in the project set via `GCP_PROJECT` (see `.env.example`). + +### `fetch_daily_totals.py` — Denominator + +Fetches total daily PushEvent counts from GH Archive via BigQuery. This is the denominator for AI commit share as a percentage of total GitHub activity. Supports `--date`, `--start-date`/`--end-date`, `--month`. Outputs to `push_events_daily.csv` AND `branch_creates_daily.csv` (the latter is a side output — count of CreateEvents where the ref type is `branch`). + +**What it measures**: Count of PushEvents per day. Each push event corresponds to one `git push` which typically contains 1-3 commits. The exact commit count per push is no longer available in GH Archive (removed Oct 2025), so we use a multiplier of ~2.2 to estimate total commits from push events. + +**Cost**: Queries are lightweight (counting events, not scanning payloads). Well within BigQuery's 1 TB/month free tier. + +### `estimate_carbon.py` — Carbon / energy + +Reads `daily_ai_commits.csv` and `branch_activity_daily.csv`; produces `daily_carbon_estimates.csv` with kWh and tCO2e per provider per day per signal. Full methodology in Section 10. + +### `dashboard.py` — Output + +Reads all four CSVs and renders `dashboard.html`, a self-contained Plotly page. + +### `anomaly_analysis.py` — Signature-drift detection + +Scans `daily_ai_commits.csv` for sudden drops (>50% on 7-day rolling avg), spikes (>3×), and "went quiet" patterns (peak >50/day → recent <5/day). Used automatically by the pipeline orchestrator to surface signature changes (tool rebrands, attribution format changes) before they silently distort the data. Thresholds are tuned to suppress noise on low-volume tools (floor of 10/day). + +### `run_pipeline.py` — Orchestrator + +Wraps the above scripts with consistent error handling, Slack notifications, and optional git commit-back. Two modes: + +- `--mode daily` — runs commits → carbon → dashboard → anomaly scan. +- `--mode weekly` — prepends the two BigQuery fetchers, then runs the daily steps. + +Flags: `--end-date YYYY-MM-DD` (defaults to yesterday UTC), `--dry-run` (skip Slack + git), `--no-commit` (skip git, keep Slack). + +Classifies each run as `CLEAN` / `ANOMALY` / `PARTIAL` / `FATAL`. CLEAN runs stay quiet; everything else posts a single summary message to `SLACK_WEBHOOK_URL`. Commits any changed CSVs + regenerated `dashboard.html` back to the branch as `github-actions[bot]`. + +--- + +## 7. Estimating Total GitHub Commits (Denominator) + +### 7.1 The Problem + +GitHub provides no public API for "total commits per day." The commit search API requires specific query terms and cannot enumerate all commits. We need an independent estimate to compute AI commit share as a percentage. + +### 7.2 GH Archive PushEvent Counting + +GH Archive captures all public GitHub events and publishes them as date-sharded BigQuery tables (`githubarchive.day.YYYYMMDD`). While the October 2025 payload change removed commit-level data from PushEvents, the events themselves still exist and can be counted. + +**Query pattern:** +```sql +SELECT COUNT(*) as push_events +FROM `githubarchive.day.20260301` +WHERE type = 'PushEvent' +``` + +This returns the number of `git push` operations to public GitHub repos on that day. + +### 7.3 Push Events to Commits Conversion + +Each PushEvent represents one `git push`, which may contain 1 or more commits. Prior to October 2025, the `payload.size` field contained the exact commit count per push. That field was removed, so we use a historical multiplier: + +- **Estimated multiplier: ~2.2 commits per push event** +- This is a rough average derived from pre-Oct-2025 data where both fields were available +- The true multiplier varies by day of week, repo type, and time period + +**March 2026 baseline**: ~2.5-2.9M push events per day → ~5.5-6.4M estimated commits per day. + +### 7.4 AI Commit Share Calculation + +``` +AI commit share = (sum of AI tool commits) / (push_events × 2.2) +``` + +**Observed range (March 2026):** 0.83% - 1.10%, averaging ~0.94%. + +### 7.5 Caveats on the Denominator + +| Issue | Impact | +|-------|--------| +| Multiplier is approximate | ±30% uncertainty on total commit estimate | +| GH Archive only covers public repos | Private repo commits (majority of GitHub) are excluded from both numerator and denominator | +| Push events may include bot/CI pushes | Inflates denominator, deflating AI share | +| March 31 / incomplete days | Partial day data gives artificially low push counts | + +Despite these caveats, the denominator is useful for: +- **Relative trends**: Is AI share growing week over week? +- **Day-of-week normalization**: Weekdays vs weekends have different baselines +- **Holiday detection**: Jan 1 had 2.34M pushes vs March avg 2.69M — clearly a holiday + +### 7.6 Early Findings (March 2026) + +| Metric | Value | +|--------|-------| +| Daily AI agent commits (avg) | ~55,500 | +| Daily push events (avg) | ~2,690,000 | +| Estimated daily total commits | ~5,900,000 | +| AI agent commit share | ~0.94% | +| Top tool (Claude Code) share of AI | 55-75% (increasing through March) | +| Second tool (Copilot SWE Agent) | ~25-35% (decreasing through March) | +| Growth Jan 1 → Mar avg | +79% (31K → 55.5K daily AI commits) | + +--- + +## 8. Known Patterns That Do NOT Work + +These were tested and failed, documented here to prevent re-investigation: + +| Pattern | Why It Fails | +|---------|-------------| +| `author-name:"lovable-dev[bot]"` | `[bot]` suffix unreliable in GitHub search | +| `author-email:no-reply@replit.com` | Replit uses per-user emails, unsearchable | +| `author-name:"(aider)"` | Parentheses mangled by URL encoding | +| `author-email:noreply@aider.chat` | This is in Co-Authored-By trailer (message body), not author email field | +| `author-email:176961590+gemini-code-assist@...` | `+` in email mangled in URL encoding | +| `author-name:jules` | Too generic — matches thousands of humans named Jules | +| `author-name:kiro` | Too generic — matches humans; Kiro uses `kiro@example.com` as default email | + +--- + +## 9. Limitations and Biases + +### 9.1 Systematic Undercounting + +As established in Section 3.2, this method only captures "autonomous agent commits with tool-specific metadata." Robbes et al. (2026) estimate that commit-level heuristics detect only 54-58% of repos that have file-level adoption markers. Many developers disable commit signing, commit manually after using agents, or use tools that don't sign commits at all. + +### 9.2 Overcounting Risks + +| Risk | Affected Tools | +|------|---------------| +| `author-name` substring matching | `aider` (matches "aider" in any name), `cline` (common name), `ChatGPT` (manual attribution by humans) | +| Bot activity vs. human-directed agent activity | `coderabbitai` (primarily code review bot), `deepsource-autofix`, `sweep-ai` | +| Duplicate counting across agent modes | Copilot vs. Copilot SWE Agent (same product, different modes) | + +### 9.3 Temporal Biases + +- **Survivorship**: We only see commits in public repos that still exist +- **Weekend/weekday patterns**: Agent usage may vary by day of week +- **Release timing**: Agents released mid-year have shorter tails than tools available since 2024 +- **API approximation**: `total_count` can fluctuate ±5% for large result sets + +### 9.4 Signature Drift + +Tool maintainers periodically change how their agent attributes commits. Three such events are documented (Aider v0.85 in May 2025, Copilot SWE Agent rename in Mar 2026, Warp→Oz in Mar 2026) and are called out in `signature_change_findings.md`. The pipeline's automated anomaly scanner (Section 6, `anomaly_analysis.py`) flags these when they happen by detecting >50% drops in a tool's 7-day rolling average. + +--- + +## 10. Carbon Estimation + +### 10.1 Overview + +An estimation layer translates observed commit/branch activity into energy (kWh) and carbon (tCO2e) using the Jegham et al. (2025) framework. Full design spec: `docs/superpowers/specs/2026-03-31-carbon-estimation-design.md`. + +Script: `estimate_carbon.py`. Carbon charts are displayed in `dashboard.py` alongside commit/branch activity. + +### 10.2 Estimation Chain + +``` +Commits/Branches -> Tool -> Provider Group -> Tokens (SWE-bench) -> Energy (Jegham) -> Carbon (CIF) +``` + +### 10.3 Key Parameters + +**Tokens per task** from SWE-rebench (March 2026): AWS/Anthropic ~2.1M, Azure/Microsoft ~1.0M, Azure/OpenAI (Codex) ~775K, Google ~1.4M. Low/high bands at 0.5x-2x. + +**Output fraction** (portion of tokens generated at decode speed): per-provider to reflect extended thinking. AWS/Anthropic 0.25 (Claude extended thinking), Azure/Microsoft 0.15, Google 0.18, Other 0.20. Note: "output" here includes thinking/reasoning tokens generated at decode speed — not just the code visible in the commit diff. + +**Energy per task** via Jegham formula: + +``` +E = [(L + output_tokens / R) / 3600] x [(P_GPU x N_GPU x U_GPU + P_non_GPU x U_non_GPU) / concurrent_requests] x PUE +``` + +| Parameter | AWS/Anthropic | Azure/Microsoft | Google | Other | +|-----------|--------------|----------------|--------|-------| +| PUE | 1.14 | 1.12 | 1.10 | 1.20 | +| GPU class | 4x H100 | 4x H100 | 4x TPU v5e | 4x H100 | +| concurrent_requests | 4 | 6 | 8 | 4 | +| Throughput (tps) | 65 | 120 | 85 | 80 | +| Output fraction | 0.25 | 0.15 | 0.18 | 0.20 | + +The `concurrent_requests` parameter models multi-tenant GPU sharing in production serving — a single inference request does not have exclusive use of a GPU node. This significantly reduces per-request energy compared to Jegham's original exclusive-use assumption. + +**Carbon** = Energy x CIF. Provider CIF (location-based): AWS 0.287, Azure 0.35, Google 0.28 kgCO2e/kWh. Validated by Jegham against GPT-4o disclosure (within 19%) and Mistral LCA (within 1 SD). Our Claude Code estimate cross-validates at 1.3x Jegham's GPT-4o scaled benchmark (within the 2x target). + +### 10.4 Tool-to-Provider Mapping + +Confident mappings: Claude Code -> AWS/Anthropic, Copilot/Codex -> Azure/Microsoft, Gemini/Jules -> Google. Multi-model tools (Cursor, Aider, Cline, etc.) weighted by estimated model usage share (default: 50% Azure, 35% AWS, 15% Google). + +### 10.5 Empirical Validation + +Cross-checked against published data: Pham & Ghaleb (2026) report median agentic PR = 1 commit, 90 lines, output tokens ~0.04–0.1% of total session. This confirms that SWE-bench per-task figures are appropriate per-commit estimates for our purposes. A one-off sampler that measured diff sizes across ~100 AI-authored commits per top tool produced consistent results during initial validation; that script has since been retired. + +### 10.6 Scope and Exclusions + +This is a **Scope 2 (location-based) estimate of operational energy only**. The following are excluded: + +| Excluded source | Estimated impact | Rationale | +|----------------|-----------------|-----------| +| **Embodied carbon** (GPU/server manufacturing) | +15-30% of lifecycle emissions | Per Gupta et al. (2021) "Chasing Carbon"; excluded for simplicity but should be noted in any reporting | +| **Training amortization** | Variable | Model training cost is amortized across all inference; not attributable to individual commits | +| **Networking and storage** | <5% | Negligible vs. GPU inference power | +| **Market-based CIF adjustments** | Could reduce Google to ~0 | Google claims 100% renewable energy matching; Azure and AWS have increasing REC/PPA procurement. Location-based CIF is used as the conservative default | +| **Water usage (WUE)** | N/A | Jegham provides WUE parameters; may be added as a future enhancement | + +**Location-based vs. market-based CIF**: The CIF values used are location-based (reflecting the actual grid carbon intensity where datacenters operate). Market-based accounting would credit providers' renewable energy purchases (RECs, PPAs), which could dramatically lower Google's effective CIF. For corporate Scope 3 reporting, both figures may be relevant. The location-based approach is conservative and avoids reliance on renewable energy claims. + +### 10.7 Caveats + +- 1 commit = 1 agentic task (supported by median PR data but not universal; multi-commit tasks are undercounted, trivial commits are overcounted) +- CIF is annual average (grid intensity varies hourly/seasonally) +- Public repos only +- Branch push token estimate carries additional 0.5x-2x uncertainty vs. commits +- `concurrent_requests` is estimated (4-8 depending on provider); actual serving concurrency is not publicly disclosed +- Token variance across tools is significant (~2.7x from Codex 775K to Claude 2.1M); within a single tool, failed tasks consume 4x+ more tokens + +### 10.8 Results (March 2026) + +| Metric | Commit-attributed | Branch-attributed | +|--------|-------------------|-------------------| +| Days covered | 32 | 32 | +| Total energy (mid) | 1,713 MWh | 1,092 MWh | +| Total carbon (mid) | 497 tCO2e | 321 tCO2e | +| Daily avg carbon | 15.5 tCO2e/day | 10.0 tCO2e/day | +| Per-commit carbon (mid, Claude) | 0.42 kgCO2e | — | +| Per-commit carbon (mid, GPT) | 0.13 kgCO2e | — | + +Combined: ~26 tCO2e/day from AI coding agents on public GitHub (mid estimate), with a range of ~7–90 tCO2e/day (low–high). + +### 10.9 Extrapolation to All GitHub (Public + Private) + +Our data covers **public repositories only**. The GitHub Search API and GH Archive do not index private repo activity. GitHub's Octoverse 2025 report provides the best available data on the public/private split: + +> "In 2025, 81.5% of contributions happened in private repositories, while 63% of all repositories were public." +> +> — GitHub Octoverse 2025 [9] + +Key figures from Octoverse 2025: +- 6.09 billion total contributions across GitHub +- 1.12 billion contributions in public/open source repos (~18.5%) +- 4.97 billion contributions in private repos (~81.5%) +- 986 million total commits pushed (+25% YoY) + +**Important caveats on the multiplier:** + +1. **"Contributions" ≠ "commits."** GitHub's contribution metric includes commits, pull requests, issues, and code reviews. The commit-specific public/private split is not published. Private repos may have proportionally more commits (enterprise CI/CD automation) or fewer (heavier PR/issue workflows). + +2. **AI agent adoption may differ by visibility.** Enterprise teams with private repos may adopt AI agents at higher rates (paid tooling budgets, more complex codebases) or lower rates (security restrictions, compliance). We have no data on this. + +3. **Detection rates may differ.** Some agents may be configured to strip attribution in enterprise settings (security policy), which would reduce the detectable signal in private repos even if usage is high. + +Given these uncertainties, a **3–6x multiplier** (midpoint ~5x) from public-only to all-GitHub is defensible but imprecise: + +| Metric | Public only (measured) | Estimated all-GitHub (×5x) | +|--------|----------------------|---------------------------| +| Daily AI agent commits | ~55,000 | ~275,000 | +| Daily carbon (mid) | ~26 tCO2e | ~130 tCO2e | +| Monthly carbon (mid) | ~818 tCO2e | ~4,100 tCO2e | +| Annualized (mid) | ~9,500 tCO2e | ~47,000 tCO2e | + +The annualized all-GitHub estimate of ~47,000 tCO2e is equivalent to roughly 10,000 US households' annual emissions — from AI coding agents alone. This excludes Copilot autocomplete, Cursor editor mode, and other invisible-to-commits usage which likely dwarfs the agent-mode activity. + +**This extrapolation is speculative.** We present it for context only; all primary results in this methodology use the directly measured public-repo figures. + +### 10.10 Beyond GitHub: Other Git Hosting Platforms + +Our data covers GitHub only. Developers also host code on GitLab, Bitbucket, Azure DevOps, and self-hosted instances. The Stack Overflow Developer Survey 2025 [4] reports platform usage (multi-select) among 49,000+ respondents: + +| Platform | Developer usage | Registered users | +|----------|----------------|-----------------| +| GitHub | 81% | 180M | +| GitLab | 36% | 50M+ | +| Azure DevOps | 17-19% | Not disclosed | +| Bitbucket | Declining (~15% est.) | ~15M (estimated) | + +These percentages sum to >100% because developers use multiple platforms. GitHub dominates open source and individual use; GitLab and Azure DevOps hold significant enterprise share, often for security/compliance reasons (self-hosted, air-gapped deployments). + +**Impact on total AI coding agent emissions:** + +For public/open source repos, GitHub is essentially the entire market — GitLab and Bitbucket public repos are negligible by comparison. The more relevant gap is enterprise/private activity on non-GitHub platforms. + +However, AI coding agent adoption likely skews even more heavily toward GitHub than general developer activity. Most major agents (Claude Code, Copilot, Codex, Cursor) are deeply integrated with GitHub workflows. GitLab and Azure DevOps agent integrations are less mature. This suggests the non-GitHub share of AI agent commits is smaller than the overall platform usage ratios would imply. + +A conservative **1.3-1.5x multiplier** on top of the GitHub all-repos estimate (Section 10.9) could account for non-GitHub platforms, but confidence is very low. We note this as context rather than incorporating it into any primary estimate. + +**This extrapolation is speculative.** We present it for context only; all primary results in this methodology use the directly measured public-repo figures. + +--- + +## 11. References + +All papers with PDFs are archived in `references/`. + +### Academic Papers + +1. Robbes, R., Matricon, T., Degueule, T., Hora, A., & Zacchiroli, S. (2026). "Agentic Much? Adoption of Coding Agents on GitHub." arXiv:2601.18341. [PDF](https://arxiv.org/pdf/2601.18341) | [HTML](https://arxiv.org/html/2601.18341) | Local: `references/robbes-2026-agentic-much.pdf` + +2. Robbes, R., Matricon, T., Degueule, T., Hora, A., & Zacchiroli, S. (2026). "Promises, Perils, and (Timely) Heuristics for Mining Coding Agent Activity." arXiv:2601.18345. [PDF](https://arxiv.org/pdf/2601.18345) | [HTML](https://arxiv.org/html/2601.18345) | Local: `references/robbes-2026-promises-perils-heuristics.pdf` + +3. Jegham, N., Abdelatti, M., Koh, C.Y., Elmoubarki, L., & Hendawi, A. (2025). "How Hungry is AI? Benchmarking Energy, Water, and Carbon Footprint of LLM Inference." arXiv:2505.09598v6. [PDF](https://arxiv.org/pdf/2505.09598v6) | [HTML](https://arxiv.org/html/2505.09598v6) | Local: `references/jegham-2025-how-hungry-is-ai.pdf` + +4. Pham, C. & Ghaleb, T. (2026). "Agentic PRs: An Empirical Study of AI-Driven Pull Requests." arXiv:2601.17627. [PDF](https://arxiv.org/pdf/2601.17627) | [HTML](https://arxiv.org/html/2601.17627v1) | Local: `references/pham-ghaleb-2026-agentic-prs.pdf` + +5. Ogenrwot, C. & Businge, J. (2026). "MSR Agentic PR Analysis." arXiv:2601.17581. [PDF](https://arxiv.org/pdf/2601.17581) | [HTML](https://arxiv.org/html/2601.17581) | Local: `references/ogenrwot-businge-2026-msr-agentic-prs.pdf` + +6. Nguyen, H. et al. (2025). "Agentic PR Analysis." arXiv:2509.14745. [PDF](https://arxiv.org/pdf/2509.14745) | [HTML](https://arxiv.org/html/2509.14745v1) | Local: `references/nguyen-2025-agentic-pr-analysis.pdf` + +7. SWE-Effi (2025). "SWE-Bench Efficiency Analysis." arXiv:2509.09853. [PDF](https://arxiv.org/pdf/2509.09853v2) | [HTML](https://arxiv.org/html/2509.09853v2) | Local: `references/swe-effi-2025.pdf` + +8. "Fingerprinting AI Coding Agents on GitHub." arXiv:2601.17406. [PDF](https://arxiv.org/pdf/2601.17406) | [HTML](https://arxiv.org/html/2601.17406v1) | Local: `references/fingerprinting-ai-agents-2025.pdf` + +9. "Where Do AI Coding Agents Fail?" arXiv:2601.15195. [PDF](https://arxiv.org/pdf/2601.15195) | [HTML](https://arxiv.org/html/2601.15195) | Local: `references/where-ai-agents-fail-2025.pdf` + +### Benchmarks and Data Sources + +10. SWE-rebench Leaderboard — https://swe-rebench.com/ +11. Artificial Analysis (model benchmarks) — https://artificialanalysis.ai/ + +### Surveys and Reports + +12. Stack Overflow Developer Survey 2025 — https://survey.stackoverflow.co/2025 +13. GitHub Octoverse 2025 — https://github.blog/news-insights/octoverse/octoverse-a-new-developer-joins-github-every-second-as-ai-leads-typescript-to-1/ +14. GitHub (2025). "What 986 Million Code Pushes Say About the Developer Workflow in 2025." — https://github.blog/news-insights/octoverse/what-986-million-code-pushes-say-about-the-developer-workflow-in-2025/ +15. Gupta, U. et al. (2021). "Chasing Carbon: The Elusive Environmental Footprint of Computing." — https://arxiv.org/abs/2011.02839 + +### APIs and Tools + +16. GitHub REST API: Search commits — https://docs.github.com/en/rest/search/search#search-commits +17. GH Archive — https://www.gharchive.org/ +18. BigQuery public datasets: `githubarchive.day.*` — https://console.cloud.google.com/bigquery + +### Provider Sustainability Reports + +19. AWS Sustainability — https://sustainability.aboutamazon.com/ +20. Microsoft Environmental Sustainability Report — https://www.microsoft.com/en-us/corporate-responsibility/sustainability +21. Google Environmental Report — https://sustainability.google/reports/ +22. EPA eGRID (US grid carbon intensity) — https://www.epa.gov/egrid diff --git a/README.md b/README.md new file mode 100644 index 0000000..be85cf5 --- /dev/null +++ b/README.md @@ -0,0 +1,179 @@ +# Coding Agent Adoption + +Multi-signal estimate of AI coding agent adoption from publicly observable GitHub data. Tracks ~30 agents (Cursor, Claude Code, OpenAI Codex, GitHub Copilot, Devin, Aider, Jules, OpenHands, and more) across ~450 days of commit attribution, branch-prefix activity, push volume, and a worked intervention analysis around the October 20, 2025 Claude Code web launch. + +Originally built at CNaught for AI-coding-adoption research. + +## What's in the box + +**Data (~2 MB, all CSV):** +- `daily_ai_commits.csv` — daily commit counts per tool, ~450 days × 32 tools. +- `branch_activity_daily.csv`, `branch_creates_daily.csv`, `agent_branch_creates_daily.csv` — branch-prefix signals from GH Archive via BigQuery. +- `push_events_daily.csv` — total daily push volume (denominator for AI share %). +- `daily_carbon_estimates.csv` — derived carbon/energy estimates (Jegham et al. 2025 framework). +- `bot_donors_daily.csv` — never-treated donor pool for the intervention analysis (Dependabot, Renovate, pre-commit-ci, etc.). + +**Pipeline scripts:** +- `github_ai_daily.py` — daily commit-attribution fetcher (GitHub Search API). +- `fetch_branch_activity.py`, `fetch_branch_creates.py`, `fetch_daily_totals.py` — BigQuery fetchers. +- `estimate_carbon.py` — carbon/energy estimation. +- `dashboard.py` — Plotly HTML dashboard generator. +- `run_pipeline.py` — orchestrator (daily / weekly modes, Slack alerting, git commit-back). +- `anomaly_analysis.py` — signature-drift scanner. + +**Intervention analysis:** +- `run_intervention_analysis.py` and the `intervention_*.py` modules — event-window CAR (primary), BEAST changepoint detection, first-difference ITS, BSTS, synthetic DiD. The Oct 20 Claude Code web launch is the worked example. +- `vendor/synthdid/` — vendored synthdid.py (PyPI build is broken on Python 3.14). +- `events/model_releases.csv` — dated event calendar. + +**Documentation:** +- `METHODOLOGY.md` — full methodology, signal definitions, caveats. +- `AGENTS.md` — operating manual for AI coding agents reproducing the analysis. +- `references/` — 9 PDFs of cited academic papers. + +## Quick look (no setup) + +The CSV files are self-describing — open `daily_ai_commits.csv` in any spreadsheet, or: + +```python +import pandas as pd +df = pd.read_csv("daily_ai_commits.csv") +print(df.groupby("tool")["commits"].sum().sort_values(ascending=False).head(10)) +``` + +## Quick dashboard (Python only, no credentials) + +```bash +pip install -r requirements.txt +python dashboard.py +open dashboard.html # macOS; on Linux: xdg-open dashboard.html +``` + +This works against the shipped CSVs — no GitHub or GCP credentials needed. + +## Quick intervention analysis (Python only, no credentials) + +```bash +pip install -r requirements.txt +python run_intervention_analysis.py +``` + +Writes results + charts to `outputs/intervention/`. The headline finding (Oct 20 Claude Code web launch) is in the CAR section: cumulative abnormal commits ≈ +60K over the 8-day window, z ≈ 5.6. + +## Full setup (refresh data from source) + +Required if you want to update the CSVs beyond their shipped end-date. + +### 1. Python environment + +> On macOS, you may need `python3` instead of `python`. The same applies to `pip3` instead of `pip`. + +```bash +python --version # 3.12 recommended; 3.13/3.14 work but see AGENTS.md footguns for caveats +pip install -r requirements.txt +``` + +### 2. Credentials + +Copy the template and fill it in: + +```bash +cp .env.example .env +``` + +You need a `GITHUB_TOKEN` and a `GCP_PROJECT`. Slack is optional. + +### 3. GitHub fine-grained PAT (for `github_ai_daily.py` and `fetch_bot_donors.py`) + +1. Go to https://github.com/settings/personal-access-tokens/new +2. Set a name, expiration, and "Public repositories" access. +3. No additional permissions needed — public-search reads work without them. +4. Copy the token (starts with `github_pat_...`) into `.env` as `GITHUB_TOKEN=...`. + +Rate limit: 30 req/min with a token (vs 10 req/min unauthenticated). A full historical refresh takes a few hours. + +### 4. GCP project + BigQuery (for `fetch_branch_activity.py`, `fetch_branch_creates.py`, `fetch_daily_totals.py`) + +1. Create a GCP project at https://console.cloud.google.com/projectcreate (or use an existing one). +2. Enable BigQuery: https://console.cloud.google.com/apis/library/bigquery.googleapis.com (select your project, click Enable). +3. Attach a billing account: https://console.cloud.google.com/billing/linkedaccount (BigQuery has a free tier — 1 TB/month — but a billing account must be attached even to use the free tier). +4. Put the project ID in `.env` as `GCP_PROJECT=your-project-id`. +5. Authenticate locally: + ```bash + gcloud auth application-default login + ``` + (Or set `GOOGLE_APPLICATION_CREDENTIALS=/abs/path/to/sa-key.json` if you'd rather use a service account.) + +**Cost expectation:** the GH Archive dataset (`githubarchive.day.*`) is public; you pay for the scan, not the storage. A full backfill of all four BigQuery signals is ~$5–15. Incremental weekly runs are pennies. Always bound your date ranges (`--start-date` / `--end-date`). + +### 5. Optional: Slack webhook + +If you want anomaly/failure alerts: + +1. Create an incoming webhook: https://api.slack.com/messaging/webhooks +2. Put the URL in `.env` as `SLACK_WEBHOOK_URL=https://hooks.slack.com/services/...`. + +Leave blank to disable. Clean pipeline runs are quiet either way. + +## Running the pipeline + +### Daily refresh (commits only) + +```bash +python run_pipeline.py --mode daily --dry-run +``` + +Fetches the last 7 days of commit data, regenerates the carbon estimates and dashboard, scans for anomalies, and (without `--dry-run`) commits the updated CSVs back to git. + +### Weekly refresh (adds BigQuery signals) + +```bash +python run_pipeline.py --mode weekly --dry-run +``` + +Adds the three BigQuery fetchers (branch activity, branch creates, daily totals) on a 14-day window before the daily steps. Requires GCP auth. + +### Individual scripts + +Each script accepts `--help`: + +```bash +python github_ai_daily.py --help +python fetch_branch_creates.py --help +python estimate_carbon.py --help +python dashboard.py +``` + +### Tests + +```bash +python -m pytest tests/ -v +``` + +CI runs the same on every push and PR. + +## Methodology + +See `METHODOLOGY.md` for the full treatment. Three things are worth flagging up front: + +1. **Commit attribution measures autonomous agent coding, not "tools developers use."** Copilot autocomplete and Cursor editor mode use the developer's git identity and leave zero trace. Only tools that make commits with their own author/committer identity are detectable here. That's why the multi-signal approach (branch prefixes, push volume) exists — to catch tools that are invisible in commit data. + +2. **Tool signatures occasionally change.** Aider switched to `Co-authored-by` trailers in v0.85.0 (May 2025), making ~95% of its commits invisible to this method. Copilot SWE Agent was renamed in March 2026. Warp's CLI was renamed to Oz around the same time. The anomaly scanner flags suspected drift, but new changes will happen — if you notice a cliff in the data and there's no announcement on file, please open an issue. + +3. **GH Archive (BigQuery source data) has three known issues** in 2025: a permanent ~35% push-volume drop on May 24, a one-day brownout on Sep 8, and a 99.5% outage on Oct 8–14. Those dates are nulled in the shipped CSVs and flagged on the dashboard. + +## Working with an AI coding agent + +If you point Claude Code, Codex, Cursor, or another agent at this repo, see `AGENTS.md` — it's the operating manual: file map, setup checklist, reproduction walkthrough, guardrails, and a step-the-user-through-it script for when a human is in the loop. + +## Contributing + +See `CONTRIBUTING.md`. The most valuable contributions are flagging tool-signature changes and proposing new tool detectors — see that doc for the format. + +## License + +MIT. See `LICENSE`. + +## Attribution + +Originally built at CNaught for AI-coding-adoption research. If you build on this work, a citation or link is appreciated but not required. diff --git a/agent_branch_creates_daily.csv b/agent_branch_creates_daily.csv new file mode 100644 index 0000000..247ceea --- /dev/null +++ b/agent_branch_creates_daily.csv @@ -0,0 +1,4456 @@ +date,agent,branch_creates,unique_repos,fetched_at +2025-04-01,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-01,Copilot,82,82,2026-04-28T03:51:23.640037+00:00 +2025-04-01,Claude Code,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-01,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-01,Devin,157,47,2026-04-28T03:51:23.640037+00:00 +2025-04-01,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-01,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-01,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-01,Gru,12,6,2026-04-28T03:51:23.640037+00:00 +2025-04-01,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-01,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-02,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-02,Copilot,13,13,2026-04-28T03:51:23.640037+00:00 +2025-04-02,Claude Code,6,1,2026-04-28T03:51:23.640037+00:00 +2025-04-02,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-02,Devin,141,49,2026-04-28T03:51:23.640037+00:00 +2025-04-02,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-02,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-02,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-02,Gru,5,3,2026-04-28T03:51:23.640037+00:00 +2025-04-02,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-02,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-03,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-03,Copilot,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-03,Claude Code,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-03,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-03,Devin,170,71,2026-04-28T03:51:23.640037+00:00 +2025-04-03,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-03,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-03,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-03,Gru,4,3,2026-04-28T03:51:23.640037+00:00 +2025-04-03,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-03,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-04,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-04,Copilot,4,4,2026-04-28T03:51:23.640037+00:00 +2025-04-04,Claude Code,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-04,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-04,Devin,303,102,2026-04-28T03:51:23.640037+00:00 +2025-04-04,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-04,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-04,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-04,Gru,4,2,2026-04-28T03:51:23.640037+00:00 +2025-04-04,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-04,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-05,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-05,Copilot,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-05,Claude Code,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-05,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-05,Devin,268,67,2026-04-28T03:51:23.640037+00:00 +2025-04-05,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-05,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-05,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-05,Gru,8,6,2026-04-28T03:51:23.640037+00:00 +2025-04-05,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-05,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-06,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-06,Copilot,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-06,Claude Code,3,3,2026-04-28T03:51:23.640037+00:00 +2025-04-06,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-06,Devin,255,73,2026-04-28T03:51:23.640037+00:00 +2025-04-06,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-06,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-06,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-06,Gru,4,3,2026-04-28T03:51:23.640037+00:00 +2025-04-06,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-06,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-07,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-07,Copilot,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-07,Claude Code,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-07,Cursor,2,2,2026-04-28T03:51:23.640037+00:00 +2025-04-07,Devin,134,70,2026-04-28T03:51:23.640037+00:00 +2025-04-07,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-07,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-07,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-07,Gru,7,3,2026-04-28T03:51:23.640037+00:00 +2025-04-07,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-07,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-08,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-08,Copilot,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-08,Claude Code,2,1,2026-04-28T03:51:23.640037+00:00 +2025-04-08,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-08,Devin,228,80,2026-04-28T03:51:23.640037+00:00 +2025-04-08,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-08,Codegen,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-08,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-08,Gru,10,4,2026-04-28T03:51:23.640037+00:00 +2025-04-08,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-08,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-09,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-09,Copilot,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-09,Claude Code,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-09,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-09,Devin,140,66,2026-04-28T03:51:23.640037+00:00 +2025-04-09,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-09,Codegen,28,5,2026-04-28T03:51:23.640037+00:00 +2025-04-09,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-09,Gru,17,4,2026-04-28T03:51:23.640037+00:00 +2025-04-09,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-09,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-10,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-10,Copilot,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-10,Claude Code,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-10,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-10,Devin,156,70,2026-04-28T03:51:23.640037+00:00 +2025-04-10,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-10,Codegen,11,5,2026-04-28T03:51:23.640037+00:00 +2025-04-10,Jules,2,1,2026-04-28T03:51:23.640037+00:00 +2025-04-10,Gru,4,3,2026-04-28T03:51:23.640037+00:00 +2025-04-10,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-10,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-11,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-11,Copilot,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-11,Claude Code,3,2,2026-04-28T03:51:23.640037+00:00 +2025-04-11,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-11,Devin,202,76,2026-04-28T03:51:23.640037+00:00 +2025-04-11,Sweep,2,1,2026-04-28T03:51:23.640037+00:00 +2025-04-11,Codegen,22,4,2026-04-28T03:51:23.640037+00:00 +2025-04-11,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-11,Gru,3,2,2026-04-28T03:51:23.640037+00:00 +2025-04-11,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-11,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-12,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-12,Copilot,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-12,Claude Code,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-12,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-12,Devin,205,64,2026-04-28T03:51:23.640037+00:00 +2025-04-12,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-12,Codegen,99,10,2026-04-28T03:51:23.640037+00:00 +2025-04-12,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-12,Gru,4,3,2026-04-28T03:51:23.640037+00:00 +2025-04-12,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-12,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-13,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-13,Copilot,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-13,Claude Code,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-13,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-13,Devin,252,59,2026-04-28T03:51:23.640037+00:00 +2025-04-13,Sweep,51,2,2026-04-28T03:51:23.640037+00:00 +2025-04-13,Codegen,44,3,2026-04-28T03:51:23.640037+00:00 +2025-04-13,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-13,Gru,3,2,2026-04-28T03:51:23.640037+00:00 +2025-04-13,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-13,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-14,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-14,Copilot,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-14,Claude Code,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-14,Cursor,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-14,Devin,205,65,2026-04-28T03:51:23.640037+00:00 +2025-04-14,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-14,Codegen,74,8,2026-04-28T03:51:23.640037+00:00 +2025-04-14,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-14,Gru,3,2,2026-04-28T03:51:23.640037+00:00 +2025-04-14,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-14,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-15,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-15,Copilot,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-15,Claude Code,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-15,Cursor,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-15,Devin,188,78,2026-04-28T03:51:23.640037+00:00 +2025-04-15,Sweep,2,1,2026-04-28T03:51:23.640037+00:00 +2025-04-15,Codegen,86,12,2026-04-28T03:51:23.640037+00:00 +2025-04-15,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-15,Gru,4,1,2026-04-28T03:51:23.640037+00:00 +2025-04-15,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-15,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-16,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-16,Copilot,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-16,Claude Code,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-16,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-16,Devin,194,80,2026-04-28T03:51:23.640037+00:00 +2025-04-16,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-16,Codegen,87,9,2026-04-28T03:51:23.640037+00:00 +2025-04-16,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-16,Gru,13,5,2026-04-28T03:51:23.640037+00:00 +2025-04-16,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-16,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-17,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-17,Copilot,15,15,2026-04-28T03:51:23.640037+00:00 +2025-04-17,Claude Code,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-17,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-17,Devin,135,69,2026-04-28T03:51:23.640037+00:00 +2025-04-17,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-17,Codegen,136,15,2026-04-28T03:51:23.640037+00:00 +2025-04-17,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-17,Gru,13,4,2026-04-28T03:51:23.640037+00:00 +2025-04-17,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-17,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-18,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-18,Copilot,18,18,2026-04-28T03:51:23.640037+00:00 +2025-04-18,Claude Code,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-18,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-18,Devin,185,110,2026-04-28T03:51:23.640037+00:00 +2025-04-18,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-18,Codegen,78,14,2026-04-28T03:51:23.640037+00:00 +2025-04-18,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-18,Gru,16,3,2026-04-28T03:51:23.640037+00:00 +2025-04-18,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-18,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-19,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-19,Copilot,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-19,Claude Code,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-19,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-19,Devin,162,81,2026-04-28T03:51:23.640037+00:00 +2025-04-19,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-19,Codegen,12,6,2026-04-28T03:51:23.640037+00:00 +2025-04-19,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-19,Gru,7,3,2026-04-28T03:51:23.640037+00:00 +2025-04-19,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-19,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-20,Codex,3,1,2026-04-28T03:51:23.640037+00:00 +2025-04-20,Copilot,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-20,Claude Code,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-20,Cursor,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-20,Devin,266,95,2026-04-28T03:51:23.640037+00:00 +2025-04-20,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-20,Codegen,11,3,2026-04-28T03:51:23.640037+00:00 +2025-04-20,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-20,Gru,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-20,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-20,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-21,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-21,Copilot,2,1,2026-04-28T03:51:23.640037+00:00 +2025-04-21,Claude Code,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-21,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-21,Devin,260,125,2026-04-28T03:51:23.640037+00:00 +2025-04-21,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-21,Codegen,33,7,2026-04-28T03:51:23.640037+00:00 +2025-04-21,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-21,Gru,4,3,2026-04-28T03:51:23.640037+00:00 +2025-04-21,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-21,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-22,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-22,Copilot,20,10,2026-04-28T03:51:23.640037+00:00 +2025-04-22,Claude Code,6,1,2026-04-28T03:51:23.640037+00:00 +2025-04-22,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-22,Devin,410,181,2026-04-28T03:51:23.640037+00:00 +2025-04-22,Sweep,8,2,2026-04-28T03:51:23.640037+00:00 +2025-04-22,Codegen,24,8,2026-04-28T03:51:23.640037+00:00 +2025-04-22,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-22,Gru,15,3,2026-04-28T03:51:23.640037+00:00 +2025-04-22,OpenHands,2,1,2026-04-28T03:51:23.640037+00:00 +2025-04-22,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-23,Codex,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-23,Copilot,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-23,Claude Code,2,1,2026-04-28T03:51:23.640037+00:00 +2025-04-23,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-23,Devin,172,95,2026-04-28T03:51:23.640037+00:00 +2025-04-23,Sweep,2,1,2026-04-28T03:51:23.640037+00:00 +2025-04-23,Codegen,131,15,2026-04-28T03:51:23.640037+00:00 +2025-04-23,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-23,Gru,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-23,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-23,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-24,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-24,Copilot,3,3,2026-04-28T03:51:23.640037+00:00 +2025-04-24,Claude Code,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-24,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-24,Devin,160,55,2026-04-28T03:51:23.640037+00:00 +2025-04-24,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-24,Codegen,99,21,2026-04-28T03:51:23.640037+00:00 +2025-04-24,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-24,Gru,2,2,2026-04-28T03:51:23.640037+00:00 +2025-04-24,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-24,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-25,Codex,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-25,Copilot,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-25,Claude Code,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-25,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-25,Devin,178,76,2026-04-28T03:51:23.640037+00:00 +2025-04-25,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-25,Codegen,98,20,2026-04-28T03:51:23.640037+00:00 +2025-04-25,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-25,Gru,3,3,2026-04-28T03:51:23.640037+00:00 +2025-04-25,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-25,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-26,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-26,Copilot,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-26,Claude Code,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-26,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-26,Devin,122,53,2026-04-28T03:51:23.640037+00:00 +2025-04-26,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-26,Codegen,155,14,2026-04-28T03:51:23.640037+00:00 +2025-04-26,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-26,Gru,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-26,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-26,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-27,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-27,Copilot,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-27,Claude Code,2,2,2026-04-28T03:51:23.640037+00:00 +2025-04-27,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-27,Devin,143,58,2026-04-28T03:51:23.640037+00:00 +2025-04-27,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-27,Codegen,109,12,2026-04-28T03:51:23.640037+00:00 +2025-04-27,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-27,Gru,20,4,2026-04-28T03:51:23.640037+00:00 +2025-04-27,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-27,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-28,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-28,Copilot,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-28,Claude Code,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-28,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-28,Devin,197,69,2026-04-28T03:51:23.640037+00:00 +2025-04-28,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-28,Codegen,89,17,2026-04-28T03:51:23.640037+00:00 +2025-04-28,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-28,Gru,23,4,2026-04-28T03:51:23.640037+00:00 +2025-04-28,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-28,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-29,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-29,Copilot,2,2,2026-04-28T03:51:23.640037+00:00 +2025-04-29,Claude Code,1,1,2026-04-28T03:51:23.640037+00:00 +2025-04-29,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-29,Devin,217,81,2026-04-28T03:51:23.640037+00:00 +2025-04-29,Sweep,5,1,2026-04-28T03:51:23.640037+00:00 +2025-04-29,Codegen,52,16,2026-04-28T03:51:23.640037+00:00 +2025-04-29,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-29,Gru,17,5,2026-04-28T03:51:23.640037+00:00 +2025-04-29,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-29,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-30,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-30,Copilot,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-30,Claude Code,2,1,2026-04-28T03:51:23.640037+00:00 +2025-04-30,Cursor,2,1,2026-04-28T03:51:23.640037+00:00 +2025-04-30,Devin,207,83,2026-04-28T03:51:23.640037+00:00 +2025-04-30,Sweep,2,2,2026-04-28T03:51:23.640037+00:00 +2025-04-30,Codegen,55,21,2026-04-28T03:51:23.640037+00:00 +2025-04-30,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-30,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-30,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-04-30,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-01,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-01,Copilot,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-01,Claude Code,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-01,Cursor,1,1,2026-04-28T03:51:23.640037+00:00 +2025-05-01,Devin,208,80,2026-04-28T03:51:23.640037+00:00 +2025-05-01,Sweep,4,1,2026-04-28T03:51:23.640037+00:00 +2025-05-01,Codegen,37,10,2026-04-28T03:51:23.640037+00:00 +2025-05-01,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-01,Gru,2,2,2026-04-28T03:51:23.640037+00:00 +2025-05-01,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2025-05-01,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-02,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-02,Copilot,2,1,2026-04-28T03:51:23.640037+00:00 +2025-05-02,Claude Code,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-02,Cursor,4,1,2026-04-28T03:51:23.640037+00:00 +2025-05-02,Devin,207,101,2026-04-28T03:51:23.640037+00:00 +2025-05-02,Sweep,2,1,2026-04-28T03:51:23.640037+00:00 +2025-05-02,Codegen,30,11,2026-04-28T03:51:23.640037+00:00 +2025-05-02,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-02,Gru,6,2,2026-04-28T03:51:23.640037+00:00 +2025-05-02,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-02,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-03,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-03,Copilot,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-03,Claude Code,1,1,2026-04-28T03:51:23.640037+00:00 +2025-05-03,Cursor,2,2,2026-04-28T03:51:23.640037+00:00 +2025-05-03,Devin,241,88,2026-04-28T03:51:23.640037+00:00 +2025-05-03,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-03,Codegen,249,13,2026-04-28T03:51:23.640037+00:00 +2025-05-03,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-03,Gru,16,4,2026-04-28T03:51:23.640037+00:00 +2025-05-03,OpenHands,2,1,2026-04-28T03:51:23.640037+00:00 +2025-05-03,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-04,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-04,Copilot,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-04,Claude Code,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-04,Cursor,1,1,2026-04-28T03:51:23.640037+00:00 +2025-05-04,Devin,166,65,2026-04-28T03:51:23.640037+00:00 +2025-05-04,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-04,Codegen,179,13,2026-04-28T03:51:23.640037+00:00 +2025-05-04,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-04,Gru,14,3,2026-04-28T03:51:23.640037+00:00 +2025-05-04,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-04,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-05,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-05,Copilot,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-05,Claude Code,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-05,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-05,Devin,213,94,2026-04-28T03:51:23.640037+00:00 +2025-05-05,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-05,Codegen,73,9,2026-04-28T03:51:23.640037+00:00 +2025-05-05,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-05,Gru,2,1,2026-04-28T03:51:23.640037+00:00 +2025-05-05,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-05-05,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-06,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-06,Copilot,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-06,Claude Code,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-06,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-06,Devin,343,99,2026-04-28T03:51:23.640037+00:00 +2025-05-06,Sweep,3,2,2026-04-28T03:51:23.640037+00:00 +2025-05-06,Codegen,300,17,2026-04-28T03:51:23.640037+00:00 +2025-05-06,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-06,Gru,6,2,2026-04-28T03:51:23.640037+00:00 +2025-05-06,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-06,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-07,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-07,Copilot,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-07,Claude Code,3,3,2026-04-28T03:51:23.640037+00:00 +2025-05-07,Cursor,2,1,2026-04-28T03:51:23.640037+00:00 +2025-05-07,Devin,282,111,2026-04-28T03:51:23.640037+00:00 +2025-05-07,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-07,Codegen,28,14,2026-04-28T03:51:23.640037+00:00 +2025-05-07,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-07,Gru,5,3,2026-04-28T03:51:23.640037+00:00 +2025-05-07,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-07,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-08,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-08,Copilot,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-08,Claude Code,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-08,Cursor,4,2,2026-04-28T03:51:23.640037+00:00 +2025-05-08,Devin,210,94,2026-04-28T03:51:23.640037+00:00 +2025-05-08,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-08,Codegen,123,12,2026-04-28T03:51:23.640037+00:00 +2025-05-08,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-08,Gru,30,5,2026-04-28T03:51:23.640037+00:00 +2025-05-08,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-05-08,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-09,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-09,Copilot,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-09,Claude Code,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-09,Cursor,4,1,2026-04-28T03:51:23.640037+00:00 +2025-05-09,Devin,213,107,2026-04-28T03:51:23.640037+00:00 +2025-05-09,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-09,Codegen,50,18,2026-04-28T03:51:23.640037+00:00 +2025-05-09,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-09,Gru,16,3,2026-04-28T03:51:23.640037+00:00 +2025-05-09,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2025-05-09,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-10,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-10,Copilot,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-10,Claude Code,1,1,2026-04-28T03:51:23.640037+00:00 +2025-05-10,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-10,Devin,233,86,2026-04-28T03:51:23.640037+00:00 +2025-05-10,Sweep,13,2,2026-04-28T03:51:23.640037+00:00 +2025-05-10,Codegen,34,10,2026-04-28T03:51:23.640037+00:00 +2025-05-10,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-10,Gru,63,1,2026-04-28T03:51:23.640037+00:00 +2025-05-10,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-10,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-11,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-11,Copilot,2,2,2026-04-28T03:51:23.640037+00:00 +2025-05-11,Claude Code,2,1,2026-04-28T03:51:23.640037+00:00 +2025-05-11,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-11,Devin,150,70,2026-04-28T03:51:23.640037+00:00 +2025-05-11,Sweep,2,1,2026-04-28T03:51:23.640037+00:00 +2025-05-11,Codegen,21,6,2026-04-28T03:51:23.640037+00:00 +2025-05-11,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-11,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-11,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2025-05-11,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-12,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-12,Copilot,4,2,2026-04-28T03:51:23.640037+00:00 +2025-05-12,Claude Code,1,1,2026-04-28T03:51:23.640037+00:00 +2025-05-12,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-12,Devin,314,99,2026-04-28T03:51:23.640037+00:00 +2025-05-12,Sweep,2,1,2026-04-28T03:51:23.640037+00:00 +2025-05-12,Codegen,32,10,2026-04-28T03:51:23.640037+00:00 +2025-05-12,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-05-12,Gru,10,2,2026-04-28T03:51:23.640037+00:00 +2025-05-12,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-12,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-13,Codex,1,1,2026-04-28T03:51:23.640037+00:00 +2025-05-13,Copilot,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-13,Claude Code,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-13,Cursor,3,2,2026-04-28T03:51:23.640037+00:00 +2025-05-13,Devin,266,102,2026-04-28T03:51:23.640037+00:00 +2025-05-13,Sweep,3,1,2026-04-28T03:51:23.640037+00:00 +2025-05-13,Codegen,15,10,2026-04-28T03:51:23.640037+00:00 +2025-05-13,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-13,Gru,4,2,2026-04-28T03:51:23.640037+00:00 +2025-05-13,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-05-13,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-14,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-14,Copilot,6,3,2026-04-28T03:51:23.640037+00:00 +2025-05-14,Claude Code,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-14,Cursor,4,4,2026-04-28T03:51:23.640037+00:00 +2025-05-14,Devin,248,111,2026-04-28T03:51:23.640037+00:00 +2025-05-14,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-14,Codegen,28,14,2026-04-28T03:51:23.640037+00:00 +2025-05-14,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-14,Gru,4,3,2026-04-28T03:51:23.640037+00:00 +2025-05-14,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2025-05-14,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-15,Codex,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-15,Copilot,7,2,2026-04-28T03:51:23.640037+00:00 +2025-05-15,Claude Code,2,2,2026-04-28T03:51:23.640037+00:00 +2025-05-15,Cursor,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-15,Devin,208,105,2026-04-28T03:51:23.640037+00:00 +2025-05-15,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2025-05-15,Codegen,39,18,2026-04-28T03:51:23.640037+00:00 +2025-05-15,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-15,Gru,88,7,2026-04-28T03:51:23.640037+00:00 +2025-05-15,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-05-15,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-16,Codex,257,120,2026-04-28T03:51:23.640037+00:00 +2025-05-16,Copilot,4,2,2026-04-28T03:51:23.640037+00:00 +2025-05-16,Claude Code,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-16,Cursor,17,8,2026-04-28T03:51:23.640037+00:00 +2025-05-16,Devin,274,102,2026-04-28T03:51:23.640037+00:00 +2025-05-16,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-16,Codegen,66,16,2026-04-28T03:51:23.640037+00:00 +2025-05-16,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-16,Gru,11,2,2026-04-28T03:51:23.640037+00:00 +2025-05-16,OpenHands,5,2,2026-04-28T03:51:23.640037+00:00 +2025-05-16,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-17,Codex,7301,1488,2026-04-28T03:51:23.640037+00:00 +2025-05-17,Copilot,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-17,Claude Code,2,1,2026-04-28T03:51:23.640037+00:00 +2025-05-17,Cursor,11,6,2026-04-28T03:51:23.640037+00:00 +2025-05-17,Devin,168,71,2026-04-28T03:51:23.640037+00:00 +2025-05-17,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2025-05-17,Codegen,59,12,2026-04-28T03:51:23.640037+00:00 +2025-05-17,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-17,Gru,18,5,2026-04-28T03:51:23.640037+00:00 +2025-05-17,OpenHands,5,3,2026-04-28T03:51:23.640037+00:00 +2025-05-17,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-18,Codex,6357,1151,2026-04-28T03:51:23.640037+00:00 +2025-05-18,Copilot,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-18,Claude Code,1,1,2026-04-28T03:51:23.640037+00:00 +2025-05-18,Cursor,21,11,2026-04-28T03:51:23.640037+00:00 +2025-05-18,Devin,181,72,2026-04-28T03:51:23.640037+00:00 +2025-05-18,Sweep,12,2,2026-04-28T03:51:23.640037+00:00 +2025-05-18,Codegen,35,10,2026-04-28T03:51:23.640037+00:00 +2025-05-18,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-18,Gru,2,1,2026-04-28T03:51:23.640037+00:00 +2025-05-18,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-05-18,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-19,Codex,5363,1122,2026-04-28T03:51:23.640037+00:00 +2025-05-19,Copilot,188,106,2026-04-28T03:51:23.640037+00:00 +2025-05-19,Claude Code,10,4,2026-04-28T03:51:23.640037+00:00 +2025-05-19,Cursor,6,5,2026-04-28T03:51:23.640037+00:00 +2025-05-19,Devin,236,110,2026-04-28T03:51:23.640037+00:00 +2025-05-19,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2025-05-19,Codegen,46,10,2026-04-28T03:51:23.640037+00:00 +2025-05-19,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-19,Gru,10,2,2026-04-28T03:51:23.640037+00:00 +2025-05-19,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-19,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-20,Codex,5825,1532,2026-04-28T03:51:23.640037+00:00 +2025-05-20,Copilot,529,239,2026-04-28T03:51:23.640037+00:00 +2025-05-20,Claude Code,30,10,2026-04-28T03:51:23.640037+00:00 +2025-05-20,Cursor,14,10,2026-04-28T03:51:23.640037+00:00 +2025-05-20,Devin,163,84,2026-04-28T03:51:23.640037+00:00 +2025-05-20,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-20,Codegen,50,16,2026-04-28T03:51:23.640037+00:00 +2025-05-20,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-05-20,Gru,12,4,2026-04-28T03:51:23.640037+00:00 +2025-05-20,OpenHands,3,2,2026-04-28T03:51:23.640037+00:00 +2025-05-20,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-21,Codex,5378,1237,2026-04-28T03:51:23.640037+00:00 +2025-05-21,Copilot,497,221,2026-04-28T03:51:23.640037+00:00 +2025-05-21,Claude Code,29,9,2026-04-28T03:51:23.640037+00:00 +2025-05-21,Cursor,9,6,2026-04-28T03:51:23.640037+00:00 +2025-05-21,Devin,251,108,2026-04-28T03:51:23.640037+00:00 +2025-05-21,Sweep,5,2,2026-04-28T03:51:23.640037+00:00 +2025-05-21,Codegen,65,24,2026-04-28T03:51:23.640037+00:00 +2025-05-21,Jules,4,4,2026-04-28T03:51:23.640037+00:00 +2025-05-21,Gru,4,3,2026-04-28T03:51:23.640037+00:00 +2025-05-21,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-21,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-22,Codex,4927,1127,2026-04-28T03:51:23.640037+00:00 +2025-05-22,Copilot,523,226,2026-04-28T03:51:23.640037+00:00 +2025-05-22,Claude Code,72,31,2026-04-28T03:51:23.640037+00:00 +2025-05-22,Cursor,25,12,2026-04-28T03:51:23.640037+00:00 +2025-05-22,Devin,231,107,2026-04-28T03:51:23.640037+00:00 +2025-05-22,Sweep,18,2,2026-04-28T03:51:23.640037+00:00 +2025-05-22,Codegen,94,21,2026-04-28T03:51:23.640037+00:00 +2025-05-22,Jules,2,2,2026-04-28T03:51:23.640037+00:00 +2025-05-22,Gru,6,4,2026-04-28T03:51:23.640037+00:00 +2025-05-22,OpenHands,6,3,2026-04-28T03:51:23.640037+00:00 +2025-05-22,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-23,Codex,4162,1013,2026-04-28T03:51:23.640037+00:00 +2025-05-23,Copilot,409,189,2026-04-28T03:51:23.640037+00:00 +2025-05-23,Claude Code,106,36,2026-04-28T03:51:23.640037+00:00 +2025-05-23,Cursor,9,8,2026-04-28T03:51:23.640037+00:00 +2025-05-23,Devin,189,83,2026-04-28T03:51:23.640037+00:00 +2025-05-23,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-23,Codegen,30,12,2026-04-28T03:51:23.640037+00:00 +2025-05-23,Jules,2,2,2026-04-28T03:51:23.640037+00:00 +2025-05-23,Gru,7,2,2026-04-28T03:51:23.640037+00:00 +2025-05-23,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-23,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-24,Codex,3040,682,2026-04-28T03:51:23.640037+00:00 +2025-05-24,Copilot,219,111,2026-04-28T03:51:23.640037+00:00 +2025-05-24,Claude Code,141,47,2026-04-28T03:51:23.640037+00:00 +2025-05-24,Cursor,11,5,2026-04-28T03:51:23.640037+00:00 +2025-05-24,Devin,154,69,2026-04-28T03:51:23.640037+00:00 +2025-05-24,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-24,Codegen,64,22,2026-04-28T03:51:23.640037+00:00 +2025-05-24,Jules,4,3,2026-04-28T03:51:23.640037+00:00 +2025-05-24,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-24,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-24,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-25,Codex,3125,616,2026-04-28T03:51:23.640037+00:00 +2025-05-25,Copilot,206,107,2026-04-28T03:51:23.640037+00:00 +2025-05-25,Claude Code,191,63,2026-04-28T03:51:23.640037+00:00 +2025-05-25,Cursor,2,2,2026-04-28T03:51:23.640037+00:00 +2025-05-25,Devin,122,60,2026-04-28T03:51:23.640037+00:00 +2025-05-25,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-25,Codegen,31,11,2026-04-28T03:51:23.640037+00:00 +2025-05-25,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-05-25,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-25,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2025-05-25,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-26,Codex,2345,635,2026-04-28T03:51:23.640037+00:00 +2025-05-26,Copilot,219,125,2026-04-28T03:51:23.640037+00:00 +2025-05-26,Claude Code,202,72,2026-04-28T03:51:23.640037+00:00 +2025-05-26,Cursor,8,6,2026-04-28T03:51:23.640037+00:00 +2025-05-26,Devin,101,55,2026-04-28T03:51:23.640037+00:00 +2025-05-26,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-26,Codegen,12,9,2026-04-28T03:51:23.640037+00:00 +2025-05-26,Jules,2,2,2026-04-28T03:51:23.640037+00:00 +2025-05-26,Gru,23,4,2026-04-28T03:51:23.640037+00:00 +2025-05-26,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-26,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-27,Codex,2264,573,2026-04-28T03:51:23.640037+00:00 +2025-05-27,Copilot,332,162,2026-04-28T03:51:23.640037+00:00 +2025-05-27,Claude Code,186,80,2026-04-28T03:51:23.640037+00:00 +2025-05-27,Cursor,15,11,2026-04-28T03:51:23.640037+00:00 +2025-05-27,Devin,105,68,2026-04-28T03:51:23.640037+00:00 +2025-05-27,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-27,Codegen,24,13,2026-04-28T03:51:23.640037+00:00 +2025-05-27,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-05-27,Gru,8,3,2026-04-28T03:51:23.640037+00:00 +2025-05-27,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-05-27,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-28,Codex,2486,563,2026-04-28T03:51:23.640037+00:00 +2025-05-28,Copilot,234,119,2026-04-28T03:51:23.640037+00:00 +2025-05-28,Claude Code,178,62,2026-04-28T03:51:23.640037+00:00 +2025-05-28,Cursor,18,15,2026-04-28T03:51:23.640037+00:00 +2025-05-28,Devin,111,66,2026-04-28T03:51:23.640037+00:00 +2025-05-28,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2025-05-28,Codegen,38,17,2026-04-28T03:51:23.640037+00:00 +2025-05-28,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-28,Gru,2,1,2026-04-28T03:51:23.640037+00:00 +2025-05-28,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-05-28,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-29,Codex,2526,555,2026-04-28T03:51:23.640037+00:00 +2025-05-29,Copilot,238,125,2026-04-28T03:51:23.640037+00:00 +2025-05-29,Claude Code,153,58,2026-04-28T03:51:23.640037+00:00 +2025-05-29,Cursor,29,18,2026-04-28T03:51:23.640037+00:00 +2025-05-29,Devin,140,78,2026-04-28T03:51:23.640037+00:00 +2025-05-29,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2025-05-29,Codegen,28,10,2026-04-28T03:51:23.640037+00:00 +2025-05-29,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-29,Gru,30,2,2026-04-28T03:51:23.640037+00:00 +2025-05-29,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2025-05-29,Open SWE,2,2,2026-04-28T03:51:23.640037+00:00 +2025-05-30,Codex,2260,553,2026-04-28T03:51:23.640037+00:00 +2025-05-30,Copilot,294,134,2026-04-28T03:51:23.640037+00:00 +2025-05-30,Claude Code,102,47,2026-04-28T03:51:23.640037+00:00 +2025-05-30,Cursor,21,17,2026-04-28T03:51:23.640037+00:00 +2025-05-30,Devin,127,70,2026-04-28T03:51:23.640037+00:00 +2025-05-30,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-30,Codegen,31,11,2026-04-28T03:51:23.640037+00:00 +2025-05-30,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-30,Gru,7,3,2026-04-28T03:51:23.640037+00:00 +2025-05-30,OpenHands,2,1,2026-04-28T03:51:23.640037+00:00 +2025-05-30,Open SWE,9,4,2026-04-28T03:51:23.640037+00:00 +2025-05-31,Codex,2339,466,2026-04-28T03:51:23.640037+00:00 +2025-05-31,Copilot,331,115,2026-04-28T03:51:23.640037+00:00 +2025-05-31,Claude Code,235,74,2026-04-28T03:51:23.640037+00:00 +2025-05-31,Cursor,13,13,2026-04-28T03:51:23.640037+00:00 +2025-05-31,Devin,104,58,2026-04-28T03:51:23.640037+00:00 +2025-05-31,Sweep,3,2,2026-04-28T03:51:23.640037+00:00 +2025-05-31,Codegen,26,9,2026-04-28T03:51:23.640037+00:00 +2025-05-31,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-05-31,Gru,5,1,2026-04-28T03:51:23.640037+00:00 +2025-05-31,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-05-31,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2025-06-01,Codex,2428,496,2026-04-28T03:51:23.640037+00:00 +2025-06-01,Copilot,261,106,2026-04-28T03:51:23.640037+00:00 +2025-06-01,Claude Code,276,82,2026-04-28T03:51:23.640037+00:00 +2025-06-01,Cursor,30,17,2026-04-28T03:51:23.640037+00:00 +2025-06-01,Devin,108,57,2026-04-28T03:51:23.640037+00:00 +2025-06-01,Sweep,18,2,2026-04-28T03:51:23.640037+00:00 +2025-06-01,Codegen,40,8,2026-04-28T03:51:23.640037+00:00 +2025-06-01,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-06-01,Gru,2,1,2026-04-28T03:51:23.640037+00:00 +2025-06-01,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-01,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-02,Codex,2021,524,2026-04-28T03:51:23.640037+00:00 +2025-06-02,Copilot,312,147,2026-04-28T03:51:23.640037+00:00 +2025-06-02,Claude Code,184,64,2026-04-28T03:51:23.640037+00:00 +2025-06-02,Cursor,22,15,2026-04-28T03:51:23.640037+00:00 +2025-06-02,Devin,102,61,2026-04-28T03:51:23.640037+00:00 +2025-06-02,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-02,Codegen,12,8,2026-04-28T03:51:23.640037+00:00 +2025-06-02,Jules,4,3,2026-04-28T03:51:23.640037+00:00 +2025-06-02,Gru,2,2,2026-04-28T03:51:23.640037+00:00 +2025-06-02,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-02,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-03,Codex,5641,2474,2026-04-28T03:51:23.640037+00:00 +2025-06-03,Copilot,302,147,2026-04-28T03:51:23.640037+00:00 +2025-06-03,Claude Code,139,67,2026-04-28T03:51:23.640037+00:00 +2025-06-03,Cursor,28,19,2026-04-28T03:51:23.640037+00:00 +2025-06-03,Devin,121,66,2026-04-28T03:51:23.640037+00:00 +2025-06-03,Sweep,2,2,2026-04-28T03:51:23.640037+00:00 +2025-06-03,Codegen,42,14,2026-04-28T03:51:23.640037+00:00 +2025-06-03,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-06-03,Gru,18,3,2026-04-28T03:51:23.640037+00:00 +2025-06-03,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-06-03,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2025-06-04,Codex,18024,7020,2026-04-28T03:51:23.640037+00:00 +2025-06-04,Copilot,328,160,2026-04-28T03:51:23.640037+00:00 +2025-06-04,Claude Code,260,76,2026-04-28T03:51:23.640037+00:00 +2025-06-04,Cursor,43,28,2026-04-28T03:51:23.640037+00:00 +2025-06-04,Devin,117,75,2026-04-28T03:51:23.640037+00:00 +2025-06-04,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-04,Codegen,23,10,2026-04-28T03:51:23.640037+00:00 +2025-06-04,Jules,2,2,2026-04-28T03:51:23.640037+00:00 +2025-06-04,Gru,27,3,2026-04-28T03:51:23.640037+00:00 +2025-06-04,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2025-06-04,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-05,Codex,15540,5341,2026-04-28T03:51:23.640037+00:00 +2025-06-05,Copilot,301,142,2026-04-28T03:51:23.640037+00:00 +2025-06-05,Claude Code,150,66,2026-04-28T03:51:23.640037+00:00 +2025-06-05,Cursor,183,99,2026-04-28T03:51:23.640037+00:00 +2025-06-05,Devin,103,63,2026-04-28T03:51:23.640037+00:00 +2025-06-05,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-05,Codegen,36,13,2026-04-28T03:51:23.640037+00:00 +2025-06-05,Jules,5,4,2026-04-28T03:51:23.640037+00:00 +2025-06-05,Gru,15,2,2026-04-28T03:51:23.640037+00:00 +2025-06-05,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-06-05,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-06,Codex,13994,4311,2026-04-28T03:51:23.640037+00:00 +2025-06-06,Copilot,328,149,2026-04-28T03:51:23.640037+00:00 +2025-06-06,Claude Code,244,79,2026-04-28T03:51:23.640037+00:00 +2025-06-06,Cursor,129,76,2026-04-28T03:51:23.640037+00:00 +2025-06-06,Devin,131,66,2026-04-28T03:51:23.640037+00:00 +2025-06-06,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-06,Codegen,51,12,2026-04-28T03:51:23.640037+00:00 +2025-06-06,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-06,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-06,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-06-06,Open SWE,5,1,2026-04-28T03:51:23.640037+00:00 +2025-06-07,Codex,13961,3765,2026-04-28T03:51:23.640037+00:00 +2025-06-07,Copilot,302,132,2026-04-28T03:51:23.640037+00:00 +2025-06-07,Claude Code,222,66,2026-04-28T03:51:23.640037+00:00 +2025-06-07,Cursor,113,75,2026-04-28T03:51:23.640037+00:00 +2025-06-07,Devin,90,56,2026-04-28T03:51:23.640037+00:00 +2025-06-07,Sweep,5,1,2026-04-28T03:51:23.640037+00:00 +2025-06-07,Codegen,35,9,2026-04-28T03:51:23.640037+00:00 +2025-06-07,Jules,3,3,2026-04-28T03:51:23.640037+00:00 +2025-06-07,Gru,1,1,2026-04-28T03:51:23.640037+00:00 +2025-06-07,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-06-07,Open SWE,2,1,2026-04-28T03:51:23.640037+00:00 +2025-06-08,Codex,13853,3551,2026-04-28T03:51:23.640037+00:00 +2025-06-08,Copilot,265,95,2026-04-28T03:51:23.640037+00:00 +2025-06-08,Claude Code,255,71,2026-04-28T03:51:23.640037+00:00 +2025-06-08,Cursor,91,60,2026-04-28T03:51:23.640037+00:00 +2025-06-08,Devin,66,38,2026-04-28T03:51:23.640037+00:00 +2025-06-08,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-08,Codegen,71,13,2026-04-28T03:51:23.640037+00:00 +2025-06-08,Jules,3,3,2026-04-28T03:51:23.640037+00:00 +2025-06-08,Gru,4,1,2026-04-28T03:51:23.640037+00:00 +2025-06-08,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-08,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-09,Codex,11905,3560,2026-04-28T03:51:23.640037+00:00 +2025-06-09,Copilot,335,140,2026-04-28T03:51:23.640037+00:00 +2025-06-09,Claude Code,120,45,2026-04-28T03:51:23.640037+00:00 +2025-06-09,Cursor,100,65,2026-04-28T03:51:23.640037+00:00 +2025-06-09,Devin,186,64,2026-04-28T03:51:23.640037+00:00 +2025-06-09,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-09,Codegen,47,21,2026-04-28T03:51:23.640037+00:00 +2025-06-09,Jules,2,2,2026-04-28T03:51:23.640037+00:00 +2025-06-09,Gru,2,1,2026-04-28T03:51:23.640037+00:00 +2025-06-09,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-06-09,Open SWE,3,1,2026-04-28T03:51:23.640037+00:00 +2025-06-10,Codex,11614,3571,2026-04-28T03:51:23.640037+00:00 +2025-06-10,Copilot,353,179,2026-04-28T03:51:23.640037+00:00 +2025-06-10,Claude Code,209,64,2026-04-28T03:51:23.640037+00:00 +2025-06-10,Cursor,114,72,2026-04-28T03:51:23.640037+00:00 +2025-06-10,Devin,120,75,2026-04-28T03:51:23.640037+00:00 +2025-06-10,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-10,Codegen,45,15,2026-04-28T03:51:23.640037+00:00 +2025-06-10,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-06-10,Gru,9,5,2026-04-28T03:51:23.640037+00:00 +2025-06-10,OpenHands,5,2,2026-04-28T03:51:23.640037+00:00 +2025-06-10,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-11,Codex,11946,3380,2026-04-28T03:51:23.640037+00:00 +2025-06-11,Copilot,397,183,2026-04-28T03:51:23.640037+00:00 +2025-06-11,Claude Code,125,56,2026-04-28T03:51:23.640037+00:00 +2025-06-11,Cursor,108,63,2026-04-28T03:51:23.640037+00:00 +2025-06-11,Devin,100,55,2026-04-28T03:51:23.640037+00:00 +2025-06-11,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-11,Codegen,64,9,2026-04-28T03:51:23.640037+00:00 +2025-06-11,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-06-11,Gru,11,4,2026-04-28T03:51:23.640037+00:00 +2025-06-11,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-11,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2025-06-12,Codex,9971,3007,2026-04-28T03:51:23.640037+00:00 +2025-06-12,Copilot,296,152,2026-04-28T03:51:23.640037+00:00 +2025-06-12,Claude Code,113,43,2026-04-28T03:51:23.640037+00:00 +2025-06-12,Cursor,98,66,2026-04-28T03:51:23.640037+00:00 +2025-06-12,Devin,144,87,2026-04-28T03:51:23.640037+00:00 +2025-06-12,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-12,Codegen,43,12,2026-04-28T03:51:23.640037+00:00 +2025-06-12,Jules,5,4,2026-04-28T03:51:23.640037+00:00 +2025-06-12,Gru,14,1,2026-04-28T03:51:23.640037+00:00 +2025-06-12,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-12,Open SWE,6,3,2026-04-28T03:51:23.640037+00:00 +2025-06-13,Codex,10936,3009,2026-04-28T03:51:23.640037+00:00 +2025-06-13,Copilot,468,195,2026-04-28T03:51:23.640037+00:00 +2025-06-13,Claude Code,190,70,2026-04-28T03:51:23.640037+00:00 +2025-06-13,Cursor,139,88,2026-04-28T03:51:23.640037+00:00 +2025-06-13,Devin,146,66,2026-04-28T03:51:23.640037+00:00 +2025-06-13,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-13,Codegen,45,13,2026-04-28T03:51:23.640037+00:00 +2025-06-13,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-13,Gru,7,2,2026-04-28T03:51:23.640037+00:00 +2025-06-13,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-13,Open SWE,6,2,2026-04-28T03:51:23.640037+00:00 +2025-06-14,Codex,10886,2713,2026-04-28T03:51:23.640037+00:00 +2025-06-14,Copilot,320,121,2026-04-28T03:51:23.640037+00:00 +2025-06-14,Claude Code,185,50,2026-04-28T03:51:23.640037+00:00 +2025-06-14,Cursor,85,58,2026-04-28T03:51:23.640037+00:00 +2025-06-14,Devin,103,49,2026-04-28T03:51:23.640037+00:00 +2025-06-14,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-14,Codegen,34,11,2026-04-28T03:51:23.640037+00:00 +2025-06-14,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-06-14,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-14,OpenHands,9,3,2026-04-28T03:51:23.640037+00:00 +2025-06-14,Open SWE,4,1,2026-04-28T03:51:23.640037+00:00 +2025-06-15,Codex,11240,2683,2026-04-28T03:51:23.640037+00:00 +2025-06-15,Copilot,408,140,2026-04-28T03:51:23.640037+00:00 +2025-06-15,Claude Code,177,68,2026-04-28T03:51:23.640037+00:00 +2025-06-15,Cursor,128,72,2026-04-28T03:51:23.640037+00:00 +2025-06-15,Devin,73,49,2026-04-28T03:51:23.640037+00:00 +2025-06-15,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-15,Codegen,59,17,2026-04-28T03:51:23.640037+00:00 +2025-06-15,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-06-15,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-15,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-15,Open SWE,4,3,2026-04-28T03:51:23.640037+00:00 +2025-06-16,Codex,10232,2897,2026-04-28T03:51:23.640037+00:00 +2025-06-16,Copilot,326,157,2026-04-28T03:51:23.640037+00:00 +2025-06-16,Claude Code,159,79,2026-04-28T03:51:23.640037+00:00 +2025-06-16,Cursor,96,61,2026-04-28T03:51:23.640037+00:00 +2025-06-16,Devin,132,73,2026-04-28T03:51:23.640037+00:00 +2025-06-16,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-16,Codegen,14,8,2026-04-28T03:51:23.640037+00:00 +2025-06-16,Jules,2,2,2026-04-28T03:51:23.640037+00:00 +2025-06-16,Gru,2,2,2026-04-28T03:51:23.640037+00:00 +2025-06-16,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-16,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-17,Codex,9415,2859,2026-04-28T03:51:23.640037+00:00 +2025-06-17,Copilot,293,157,2026-04-28T03:51:23.640037+00:00 +2025-06-17,Claude Code,133,69,2026-04-28T03:51:23.640037+00:00 +2025-06-17,Cursor,144,85,2026-04-28T03:51:23.640037+00:00 +2025-06-17,Devin,202,85,2026-04-28T03:51:23.640037+00:00 +2025-06-17,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-17,Codegen,29,8,2026-04-28T03:51:23.640037+00:00 +2025-06-17,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-17,Gru,1,1,2026-04-28T03:51:23.640037+00:00 +2025-06-17,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-17,Open SWE,5,1,2026-04-28T03:51:23.640037+00:00 +2025-06-18,Codex,10431,2725,2026-04-28T03:51:23.640037+00:00 +2025-06-18,Copilot,323,161,2026-04-28T03:51:23.640037+00:00 +2025-06-18,Claude Code,158,65,2026-04-28T03:51:23.640037+00:00 +2025-06-18,Cursor,146,92,2026-04-28T03:51:23.640037+00:00 +2025-06-18,Devin,127,68,2026-04-28T03:51:23.640037+00:00 +2025-06-18,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-18,Codegen,15,8,2026-04-28T03:51:23.640037+00:00 +2025-06-18,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-18,Gru,4,2,2026-04-28T03:51:23.640037+00:00 +2025-06-18,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2025-06-18,Open SWE,4,2,2026-04-28T03:51:23.640037+00:00 +2025-06-19,Codex,10664,2733,2026-04-28T03:51:23.640037+00:00 +2025-06-19,Copilot,335,176,2026-04-28T03:51:23.640037+00:00 +2025-06-19,Claude Code,222,74,2026-04-28T03:51:23.640037+00:00 +2025-06-19,Cursor,231,131,2026-04-28T03:51:23.640037+00:00 +2025-06-19,Devin,136,81,2026-04-28T03:51:23.640037+00:00 +2025-06-19,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2025-06-19,Codegen,32,15,2026-04-28T03:51:23.640037+00:00 +2025-06-19,Jules,5,3,2026-04-28T03:51:23.640037+00:00 +2025-06-19,Gru,3,2,2026-04-28T03:51:23.640037+00:00 +2025-06-19,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-06-19,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2025-06-20,Codex,10052,2574,2026-04-28T03:51:23.640037+00:00 +2025-06-20,Copilot,234,161,2026-04-28T03:51:23.640037+00:00 +2025-06-20,Claude Code,170,78,2026-04-28T03:51:23.640037+00:00 +2025-06-20,Cursor,347,195,2026-04-28T03:51:23.640037+00:00 +2025-06-20,Devin,148,73,2026-04-28T03:51:23.640037+00:00 +2025-06-20,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-20,Codegen,25,16,2026-04-28T03:51:23.640037+00:00 +2025-06-20,Jules,4,4,2026-04-28T03:51:23.640037+00:00 +2025-06-20,Gru,5,1,2026-04-28T03:51:23.640037+00:00 +2025-06-20,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-06-20,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2025-06-21,Codex,10818,2270,2026-04-28T03:51:23.640037+00:00 +2025-06-21,Copilot,299,144,2026-04-28T03:51:23.640037+00:00 +2025-06-21,Claude Code,108,53,2026-04-28T03:51:23.640037+00:00 +2025-06-21,Cursor,314,137,2026-04-28T03:51:23.640037+00:00 +2025-06-21,Devin,103,49,2026-04-28T03:51:23.640037+00:00 +2025-06-21,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-21,Codegen,34,13,2026-04-28T03:51:23.640037+00:00 +2025-06-21,Jules,19,19,2026-04-28T03:51:23.640037+00:00 +2025-06-21,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-21,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-06-21,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-22,Codex,10709,2407,2026-04-28T03:51:23.640037+00:00 +2025-06-22,Copilot,241,123,2026-04-28T03:51:23.640037+00:00 +2025-06-22,Claude Code,113,48,2026-04-28T03:51:23.640037+00:00 +2025-06-22,Cursor,238,112,2026-04-28T03:51:23.640037+00:00 +2025-06-22,Devin,101,56,2026-04-28T03:51:23.640037+00:00 +2025-06-22,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-22,Codegen,29,15,2026-04-28T03:51:23.640037+00:00 +2025-06-22,Jules,19,18,2026-04-28T03:51:23.640037+00:00 +2025-06-22,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-22,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-06-22,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-23,Codex,8986,2473,2026-04-28T03:51:23.640037+00:00 +2025-06-23,Copilot,235,142,2026-04-28T03:51:23.640037+00:00 +2025-06-23,Claude Code,186,55,2026-04-28T03:51:23.640037+00:00 +2025-06-23,Cursor,257,144,2026-04-28T03:51:23.640037+00:00 +2025-06-23,Devin,141,76,2026-04-28T03:51:23.640037+00:00 +2025-06-23,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-23,Codegen,26,10,2026-04-28T03:51:23.640037+00:00 +2025-06-23,Jules,23,21,2026-04-28T03:51:23.640037+00:00 +2025-06-23,Gru,2,2,2026-04-28T03:51:23.640037+00:00 +2025-06-23,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-23,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2025-06-24,Codex,8922,2472,2026-04-28T03:51:23.640037+00:00 +2025-06-24,Copilot,302,172,2026-04-28T03:51:23.640037+00:00 +2025-06-24,Claude Code,120,56,2026-04-28T03:51:23.640037+00:00 +2025-06-24,Cursor,262,148,2026-04-28T03:51:23.640037+00:00 +2025-06-24,Devin,96,63,2026-04-28T03:51:23.640037+00:00 +2025-06-24,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-24,Codegen,11,10,2026-04-28T03:51:23.640037+00:00 +2025-06-24,Jules,17,16,2026-04-28T03:51:23.640037+00:00 +2025-06-24,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-24,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-06-24,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-25,Codex,9124,2388,2026-04-28T03:51:23.640037+00:00 +2025-06-25,Copilot,327,192,2026-04-28T03:51:23.640037+00:00 +2025-06-25,Claude Code,91,52,2026-04-28T03:51:23.640037+00:00 +2025-06-25,Cursor,246,127,2026-04-28T03:51:23.640037+00:00 +2025-06-25,Devin,125,69,2026-04-28T03:51:23.640037+00:00 +2025-06-25,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-25,Codegen,2,2,2026-04-28T03:51:23.640037+00:00 +2025-06-25,Jules,14,13,2026-04-28T03:51:23.640037+00:00 +2025-06-25,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-25,OpenHands,2,1,2026-04-28T03:51:23.640037+00:00 +2025-06-25,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-26,Codex,8678,2288,2026-04-28T03:51:23.640037+00:00 +2025-06-26,Copilot,398,250,2026-04-28T03:51:23.640037+00:00 +2025-06-26,Claude Code,83,55,2026-04-28T03:51:23.640037+00:00 +2025-06-26,Cursor,250,128,2026-04-28T03:51:23.640037+00:00 +2025-06-26,Devin,140,62,2026-04-28T03:51:23.640037+00:00 +2025-06-26,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-26,Codegen,11,9,2026-04-28T03:51:23.640037+00:00 +2025-06-26,Jules,18,17,2026-04-28T03:51:23.640037+00:00 +2025-06-26,Gru,7,1,2026-04-28T03:51:23.640037+00:00 +2025-06-26,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-26,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-27,Codex,8696,2223,2026-04-28T03:51:23.640037+00:00 +2025-06-27,Copilot,418,237,2026-04-28T03:51:23.640037+00:00 +2025-06-27,Claude Code,98,50,2026-04-28T03:51:23.640037+00:00 +2025-06-27,Cursor,200,104,2026-04-28T03:51:23.640037+00:00 +2025-06-27,Devin,94,58,2026-04-28T03:51:23.640037+00:00 +2025-06-27,Sweep,4,1,2026-04-28T03:51:23.640037+00:00 +2025-06-27,Codegen,6,5,2026-04-28T03:51:23.640037+00:00 +2025-06-27,Jules,10,9,2026-04-28T03:51:23.640037+00:00 +2025-06-27,Gru,4,1,2026-04-28T03:51:23.640037+00:00 +2025-06-27,OpenHands,3,1,2026-04-28T03:51:23.640037+00:00 +2025-06-27,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-28,Codex,8468,1956,2026-04-28T03:51:23.640037+00:00 +2025-06-28,Copilot,346,198,2026-04-28T03:51:23.640037+00:00 +2025-06-28,Claude Code,106,47,2026-04-28T03:51:23.640037+00:00 +2025-06-28,Cursor,180,90,2026-04-28T03:51:23.640037+00:00 +2025-06-28,Devin,125,50,2026-04-28T03:51:23.640037+00:00 +2025-06-28,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-28,Codegen,18,5,2026-04-28T03:51:23.640037+00:00 +2025-06-28,Jules,18,17,2026-04-28T03:51:23.640037+00:00 +2025-06-28,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-28,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-06-28,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-29,Codex,8897,2004,2026-04-28T03:51:23.640037+00:00 +2025-06-29,Copilot,474,229,2026-04-28T03:51:23.640037+00:00 +2025-06-29,Claude Code,206,38,2026-04-28T03:51:23.640037+00:00 +2025-06-29,Cursor,185,107,2026-04-28T03:51:23.640037+00:00 +2025-06-29,Devin,69,37,2026-04-28T03:51:23.640037+00:00 +2025-06-29,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-29,Codegen,14,8,2026-04-28T03:51:23.640037+00:00 +2025-06-29,Jules,23,21,2026-04-28T03:51:23.640037+00:00 +2025-06-29,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-29,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-06-29,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-30,Codex,8060,2218,2026-04-28T03:51:23.640037+00:00 +2025-06-30,Copilot,520,290,2026-04-28T03:51:23.640037+00:00 +2025-06-30,Claude Code,81,52,2026-04-28T03:51:23.640037+00:00 +2025-06-30,Cursor,502,359,2026-04-28T03:51:23.640037+00:00 +2025-06-30,Devin,79,54,2026-04-28T03:51:23.640037+00:00 +2025-06-30,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-06-30,Codegen,12,9,2026-04-28T03:51:23.640037+00:00 +2025-06-30,Jules,28,22,2026-04-28T03:51:23.640037+00:00 +2025-06-30,Gru,6,1,2026-04-28T03:51:23.640037+00:00 +2025-06-30,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-06-30,Open SWE,4,3,2026-04-28T03:51:23.640037+00:00 +2025-07-01,Codex,7343,2073,2026-04-28T03:51:23.640037+00:00 +2025-07-01,Copilot,639,424,2026-04-28T03:51:23.640037+00:00 +2025-07-01,Claude Code,175,46,2026-04-28T03:51:23.640037+00:00 +2025-07-01,Cursor,1175,784,2026-04-28T03:51:23.640037+00:00 +2025-07-01,Devin,166,51,2026-04-28T03:51:23.640037+00:00 +2025-07-01,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-01,Codegen,10,5,2026-04-28T03:51:23.640037+00:00 +2025-07-01,Jules,23,20,2026-04-28T03:51:23.640037+00:00 +2025-07-01,Gru,2,2,2026-04-28T03:51:23.640037+00:00 +2025-07-01,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-07-01,Open SWE,3,2,2026-04-28T03:51:23.640037+00:00 +2025-07-02,Codex,7514,2097,2026-04-28T03:51:23.640037+00:00 +2025-07-02,Copilot,615,391,2026-04-28T03:51:23.640037+00:00 +2025-07-02,Claude Code,176,64,2026-04-28T03:51:23.640037+00:00 +2025-07-02,Cursor,1126,746,2026-04-28T03:51:23.640037+00:00 +2025-07-02,Devin,99,60,2026-04-28T03:51:23.640037+00:00 +2025-07-02,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-02,Codegen,7,5,2026-04-28T03:51:23.640037+00:00 +2025-07-02,Jules,25,20,2026-04-28T03:51:23.640037+00:00 +2025-07-02,Gru,1,1,2026-04-28T03:51:23.640037+00:00 +2025-07-02,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-02,Open SWE,6,4,2026-04-28T03:51:23.640037+00:00 +2025-07-03,Codex,7468,2064,2026-04-28T03:51:23.640037+00:00 +2025-07-03,Copilot,746,477,2026-04-28T03:51:23.640037+00:00 +2025-07-03,Claude Code,112,59,2026-04-28T03:51:23.640037+00:00 +2025-07-03,Cursor,1173,803,2026-04-28T03:51:23.640037+00:00 +2025-07-03,Devin,132,70,2026-04-28T03:51:23.640037+00:00 +2025-07-03,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-03,Codegen,3,2,2026-04-28T03:51:23.640037+00:00 +2025-07-03,Jules,25,23,2026-04-28T03:51:23.640037+00:00 +2025-07-03,Gru,3,1,2026-04-28T03:51:23.640037+00:00 +2025-07-03,OpenHands,2,1,2026-04-28T03:51:23.640037+00:00 +2025-07-03,Open SWE,2,2,2026-04-28T03:51:23.640037+00:00 +2025-07-04,Codex,7680,2011,2026-04-28T03:51:23.640037+00:00 +2025-07-04,Copilot,820,536,2026-04-28T03:51:23.640037+00:00 +2025-07-04,Claude Code,118,57,2026-04-28T03:51:23.640037+00:00 +2025-07-04,Cursor,1342,886,2026-04-28T03:51:23.640037+00:00 +2025-07-04,Devin,85,45,2026-04-28T03:51:23.640037+00:00 +2025-07-04,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-04,Codegen,5,4,2026-04-28T03:51:23.640037+00:00 +2025-07-04,Jules,29,27,2026-04-28T03:51:23.640037+00:00 +2025-07-04,Gru,1,1,2026-04-28T03:51:23.640037+00:00 +2025-07-04,OpenHands,2,1,2026-04-28T03:51:23.640037+00:00 +2025-07-04,Open SWE,2,1,2026-04-28T03:51:23.640037+00:00 +2025-07-05,Codex,8044,1822,2026-04-28T03:51:23.640037+00:00 +2025-07-05,Copilot,603,385,2026-04-28T03:51:23.640037+00:00 +2025-07-05,Claude Code,88,37,2026-04-28T03:51:23.640037+00:00 +2025-07-05,Cursor,1446,813,2026-04-28T03:51:23.640037+00:00 +2025-07-05,Devin,55,35,2026-04-28T03:51:23.640037+00:00 +2025-07-05,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-05,Codegen,2,2,2026-04-28T03:51:23.640037+00:00 +2025-07-05,Jules,23,22,2026-04-28T03:51:23.640037+00:00 +2025-07-05,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-05,OpenHands,7,2,2026-04-28T03:51:23.640037+00:00 +2025-07-05,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-06,Codex,8163,1834,2026-04-28T03:51:23.640037+00:00 +2025-07-06,Copilot,555,336,2026-04-28T03:51:23.640037+00:00 +2025-07-06,Claude Code,91,40,2026-04-28T03:51:23.640037+00:00 +2025-07-06,Cursor,1299,752,2026-04-28T03:51:23.640037+00:00 +2025-07-06,Devin,69,44,2026-04-28T03:51:23.640037+00:00 +2025-07-06,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-06,Codegen,13,6,2026-04-28T03:51:23.640037+00:00 +2025-07-06,Jules,21,20,2026-04-28T03:51:23.640037+00:00 +2025-07-06,Gru,1,1,2026-04-28T03:51:23.640037+00:00 +2025-07-06,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-06,Open SWE,2,2,2026-04-28T03:51:23.640037+00:00 +2025-07-07,Codex,7676,1970,2026-04-28T03:51:23.640037+00:00 +2025-07-07,Copilot,706,457,2026-04-28T03:51:23.640037+00:00 +2025-07-07,Claude Code,130,54,2026-04-28T03:51:23.640037+00:00 +2025-07-07,Cursor,1058,744,2026-04-28T03:51:23.640037+00:00 +2025-07-07,Devin,194,57,2026-04-28T03:51:23.640037+00:00 +2025-07-07,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-07,Codegen,19,7,2026-04-28T03:51:23.640037+00:00 +2025-07-07,Jules,28,23,2026-04-28T03:51:23.640037+00:00 +2025-07-07,Gru,29,2,2026-04-28T03:51:23.640037+00:00 +2025-07-07,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-07,Open SWE,6,5,2026-04-28T03:51:23.640037+00:00 +2025-07-08,Codex,7255,1989,2026-04-28T03:51:23.640037+00:00 +2025-07-08,Copilot,843,535,2026-04-28T03:51:23.640037+00:00 +2025-07-08,Claude Code,175,70,2026-04-28T03:51:23.640037+00:00 +2025-07-08,Cursor,1082,753,2026-04-28T03:51:23.640037+00:00 +2025-07-08,Devin,166,59,2026-04-28T03:51:23.640037+00:00 +2025-07-08,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-08,Codegen,16,7,2026-04-28T03:51:23.640037+00:00 +2025-07-08,Jules,24,20,2026-04-28T03:51:23.640037+00:00 +2025-07-08,Gru,5,2,2026-04-28T03:51:23.640037+00:00 +2025-07-08,OpenHands,3,2,2026-04-28T03:51:23.640037+00:00 +2025-07-08,Open SWE,5,5,2026-04-28T03:51:23.640037+00:00 +2025-07-09,Codex,6693,1839,2026-04-28T03:51:23.640037+00:00 +2025-07-09,Copilot,791,502,2026-04-28T03:51:23.640037+00:00 +2025-07-09,Claude Code,238,91,2026-04-28T03:51:23.640037+00:00 +2025-07-09,Cursor,1202,789,2026-04-28T03:51:23.640037+00:00 +2025-07-09,Devin,105,59,2026-04-28T03:51:23.640037+00:00 +2025-07-09,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-09,Codegen,22,13,2026-04-28T03:51:23.640037+00:00 +2025-07-09,Jules,27,22,2026-04-28T03:51:23.640037+00:00 +2025-07-09,Gru,4,1,2026-04-28T03:51:23.640037+00:00 +2025-07-09,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-09,Open SWE,7,4,2026-04-28T03:51:23.640037+00:00 +2025-07-10,Codex,6194,1751,2026-04-28T03:51:23.640037+00:00 +2025-07-10,Copilot,811,507,2026-04-28T03:51:23.640037+00:00 +2025-07-10,Claude Code,275,94,2026-04-28T03:51:23.640037+00:00 +2025-07-10,Cursor,1251,797,2026-04-28T03:51:23.640037+00:00 +2025-07-10,Devin,137,75,2026-04-28T03:51:23.640037+00:00 +2025-07-10,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-10,Codegen,17,11,2026-04-28T03:51:23.640037+00:00 +2025-07-10,Jules,12,11,2026-04-28T03:51:23.640037+00:00 +2025-07-10,Gru,8,3,2026-04-28T03:51:23.640037+00:00 +2025-07-10,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-07-10,Open SWE,6,3,2026-04-28T03:51:23.640037+00:00 +2025-07-11,Codex,5713,1685,2026-04-28T03:51:23.640037+00:00 +2025-07-11,Copilot,970,550,2026-04-28T03:51:23.640037+00:00 +2025-07-11,Claude Code,144,48,2026-04-28T03:51:23.640037+00:00 +2025-07-11,Cursor,1284,774,2026-04-28T03:51:23.640037+00:00 +2025-07-11,Devin,101,47,2026-04-28T03:51:23.640037+00:00 +2025-07-11,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-11,Codegen,15,7,2026-04-28T03:51:23.640037+00:00 +2025-07-11,Jules,19,16,2026-04-28T03:51:23.640037+00:00 +2025-07-11,Gru,10,2,2026-04-28T03:51:23.640037+00:00 +2025-07-11,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-11,Open SWE,10,5,2026-04-28T03:51:23.640037+00:00 +2025-07-12,Codex,6364,1575,2026-04-28T03:51:23.640037+00:00 +2025-07-12,Copilot,892,540,2026-04-28T03:51:23.640037+00:00 +2025-07-12,Claude Code,175,59,2026-04-28T03:51:23.640037+00:00 +2025-07-12,Cursor,1246,766,2026-04-28T03:51:23.640037+00:00 +2025-07-12,Devin,50,31,2026-04-28T03:51:23.640037+00:00 +2025-07-12,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-12,Codegen,11,7,2026-04-28T03:51:23.640037+00:00 +2025-07-12,Jules,4,4,2026-04-28T03:51:23.640037+00:00 +2025-07-12,Gru,2,1,2026-04-28T03:51:23.640037+00:00 +2025-07-12,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-12,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-13,Codex,7083,1622,2026-04-28T03:51:23.640037+00:00 +2025-07-13,Copilot,926,450,2026-04-28T03:51:23.640037+00:00 +2025-07-13,Claude Code,225,68,2026-04-28T03:51:23.640037+00:00 +2025-07-13,Cursor,1394,743,2026-04-28T03:51:23.640037+00:00 +2025-07-13,Devin,159,40,2026-04-28T03:51:23.640037+00:00 +2025-07-13,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-13,Codegen,21,11,2026-04-28T03:51:23.640037+00:00 +2025-07-13,Jules,2,2,2026-04-28T03:51:23.640037+00:00 +2025-07-13,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-13,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-07-13,Open SWE,12,1,2026-04-28T03:51:23.640037+00:00 +2025-07-14,Codex,5745,1655,2026-04-28T03:51:23.640037+00:00 +2025-07-14,Copilot,1085,536,2026-04-28T03:51:23.640037+00:00 +2025-07-14,Claude Code,201,67,2026-04-28T03:51:23.640037+00:00 +2025-07-14,Cursor,1062,688,2026-04-28T03:51:23.640037+00:00 +2025-07-14,Devin,100,66,2026-04-28T03:51:23.640037+00:00 +2025-07-14,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-14,Codegen,16,11,2026-04-28T03:51:23.640037+00:00 +2025-07-14,Jules,4,4,2026-04-28T03:51:23.640037+00:00 +2025-07-14,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-14,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-14,Open SWE,5,4,2026-04-28T03:51:23.640037+00:00 +2025-07-15,Codex,5777,1712,2026-04-28T03:51:23.640037+00:00 +2025-07-15,Copilot,1084,598,2026-04-28T03:51:23.640037+00:00 +2025-07-15,Claude Code,173,70,2026-04-28T03:51:23.640037+00:00 +2025-07-15,Cursor,1201,771,2026-04-28T03:51:23.640037+00:00 +2025-07-15,Devin,217,94,2026-04-28T03:51:23.640037+00:00 +2025-07-15,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-15,Codegen,22,9,2026-04-28T03:51:23.640037+00:00 +2025-07-15,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-07-15,Gru,30,1,2026-04-28T03:51:23.640037+00:00 +2025-07-15,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-07-15,Open SWE,13,5,2026-04-28T03:51:23.640037+00:00 +2025-07-16,Codex,6332,1734,2026-04-28T03:51:23.640037+00:00 +2025-07-16,Copilot,1038,583,2026-04-28T03:51:23.640037+00:00 +2025-07-16,Claude Code,103,54,2026-04-28T03:51:23.640037+00:00 +2025-07-16,Cursor,1301,797,2026-04-28T03:51:23.640037+00:00 +2025-07-16,Devin,163,91,2026-04-28T03:51:23.640037+00:00 +2025-07-16,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2025-07-16,Codegen,18,9,2026-04-28T03:51:23.640037+00:00 +2025-07-16,Jules,2,2,2026-04-28T03:51:23.640037+00:00 +2025-07-16,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-16,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-16,Open SWE,3,3,2026-04-28T03:51:23.640037+00:00 +2025-07-17,Codex,6024,1766,2026-04-28T03:51:23.640037+00:00 +2025-07-17,Copilot,979,563,2026-04-28T03:51:23.640037+00:00 +2025-07-17,Claude Code,102,50,2026-04-28T03:51:23.640037+00:00 +2025-07-17,Cursor,1199,797,2026-04-28T03:51:23.640037+00:00 +2025-07-17,Devin,148,86,2026-04-28T03:51:23.640037+00:00 +2025-07-17,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-17,Codegen,10,9,2026-04-28T03:51:23.640037+00:00 +2025-07-17,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-17,Gru,3,1,2026-04-28T03:51:23.640037+00:00 +2025-07-17,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-17,Open SWE,9,8,2026-04-28T03:51:23.640037+00:00 +2025-07-18,Codex,5950,1667,2026-04-28T03:51:23.640037+00:00 +2025-07-18,Copilot,1066,591,2026-04-28T03:51:23.640037+00:00 +2025-07-18,Claude Code,157,58,2026-04-28T03:51:23.640037+00:00 +2025-07-18,Cursor,1134,711,2026-04-28T03:51:23.640037+00:00 +2025-07-18,Devin,130,75,2026-04-28T03:51:23.640037+00:00 +2025-07-18,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-18,Codegen,38,8,2026-04-28T03:51:23.640037+00:00 +2025-07-18,Jules,4,4,2026-04-28T03:51:23.640037+00:00 +2025-07-18,Gru,1,1,2026-04-28T03:51:23.640037+00:00 +2025-07-18,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2025-07-18,Open SWE,13,9,2026-04-28T03:51:23.640037+00:00 +2025-07-19,Codex,6582,1567,2026-04-28T03:51:23.640037+00:00 +2025-07-19,Copilot,1029,514,2026-04-28T03:51:23.640037+00:00 +2025-07-19,Claude Code,71,33,2026-04-28T03:51:23.640037+00:00 +2025-07-19,Cursor,1269,742,2026-04-28T03:51:23.640037+00:00 +2025-07-19,Devin,94,55,2026-04-28T03:51:23.640037+00:00 +2025-07-19,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-19,Codegen,24,12,2026-04-28T03:51:23.640037+00:00 +2025-07-19,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-19,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-19,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-19,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2025-07-20,Codex,6614,1509,2026-04-28T03:51:23.640037+00:00 +2025-07-20,Copilot,990,472,2026-04-28T03:51:23.640037+00:00 +2025-07-20,Claude Code,108,48,2026-04-28T03:51:23.640037+00:00 +2025-07-20,Cursor,1258,672,2026-04-28T03:51:23.640037+00:00 +2025-07-20,Devin,97,46,2026-04-28T03:51:23.640037+00:00 +2025-07-20,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-20,Codegen,8,4,2026-04-28T03:51:23.640037+00:00 +2025-07-20,Jules,2,2,2026-04-28T03:51:23.640037+00:00 +2025-07-20,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-20,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-20,Open SWE,2,2,2026-04-28T03:51:23.640037+00:00 +2025-07-21,Codex,6291,1716,2026-04-28T03:51:23.640037+00:00 +2025-07-21,Copilot,954,547,2026-04-28T03:51:23.640037+00:00 +2025-07-21,Claude Code,106,48,2026-04-28T03:51:23.640037+00:00 +2025-07-21,Cursor,1246,745,2026-04-28T03:51:23.640037+00:00 +2025-07-21,Devin,137,78,2026-04-28T03:51:23.640037+00:00 +2025-07-21,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-21,Codegen,15,10,2026-04-28T03:51:23.640037+00:00 +2025-07-21,Jules,16,2,2026-04-28T03:51:23.640037+00:00 +2025-07-21,Gru,21,1,2026-04-28T03:51:23.640037+00:00 +2025-07-21,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2025-07-21,Open SWE,6,3,2026-04-28T03:51:23.640037+00:00 +2025-07-22,Codex,6382,1696,2026-04-28T03:51:23.640037+00:00 +2025-07-22,Copilot,903,460,2026-04-28T03:51:23.640037+00:00 +2025-07-22,Claude Code,98,42,2026-04-28T03:51:23.640037+00:00 +2025-07-22,Cursor,1462,890,2026-04-28T03:51:23.640037+00:00 +2025-07-22,Devin,137,80,2026-04-28T03:51:23.640037+00:00 +2025-07-22,Sweep,2,1,2026-04-28T03:51:23.640037+00:00 +2025-07-22,Codegen,24,17,2026-04-28T03:51:23.640037+00:00 +2025-07-22,Jules,25,1,2026-04-28T03:51:23.640037+00:00 +2025-07-22,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-22,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-22,Open SWE,6,2,2026-04-28T03:51:23.640037+00:00 +2025-07-23,Codex,6149,1731,2026-04-28T03:51:23.640037+00:00 +2025-07-23,Copilot,1023,579,2026-04-28T03:51:23.640037+00:00 +2025-07-23,Claude Code,102,52,2026-04-28T03:51:23.640037+00:00 +2025-07-23,Cursor,1228,781,2026-04-28T03:51:23.640037+00:00 +2025-07-23,Devin,136,75,2026-04-28T03:51:23.640037+00:00 +2025-07-23,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-23,Codegen,29,11,2026-04-28T03:51:23.640037+00:00 +2025-07-23,Jules,3,2,2026-04-28T03:51:23.640037+00:00 +2025-07-23,Gru,1,1,2026-04-28T03:51:23.640037+00:00 +2025-07-23,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-23,Open SWE,7,2,2026-04-28T03:51:23.640037+00:00 +2025-07-24,Codex,6495,1731,2026-04-28T03:51:23.640037+00:00 +2025-07-24,Copilot,1146,633,2026-04-28T03:51:23.640037+00:00 +2025-07-24,Claude Code,122,60,2026-04-28T03:51:23.640037+00:00 +2025-07-24,Cursor,1273,771,2026-04-28T03:51:23.640037+00:00 +2025-07-24,Devin,243,87,2026-04-28T03:51:23.640037+00:00 +2025-07-24,Sweep,6,1,2026-04-28T03:51:23.640037+00:00 +2025-07-24,Codegen,28,14,2026-04-28T03:51:23.640037+00:00 +2025-07-24,Jules,14,1,2026-04-28T03:51:23.640037+00:00 +2025-07-24,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-24,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-07-24,Open SWE,30,11,2026-04-28T03:51:23.640037+00:00 +2025-07-25,Codex,6794,1719,2026-04-28T03:51:23.640037+00:00 +2025-07-25,Copilot,1162,613,2026-04-28T03:51:23.640037+00:00 +2025-07-25,Claude Code,110,52,2026-04-28T03:51:23.640037+00:00 +2025-07-25,Cursor,1382,852,2026-04-28T03:51:23.640037+00:00 +2025-07-25,Devin,149,77,2026-04-28T03:51:23.640037+00:00 +2025-07-25,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-25,Codegen,23,16,2026-04-28T03:51:23.640037+00:00 +2025-07-25,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-25,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-25,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-25,Open SWE,12,4,2026-04-28T03:51:23.640037+00:00 +2025-07-26,Codex,7059,1594,2026-04-28T03:51:23.640037+00:00 +2025-07-26,Copilot,1149,558,2026-04-28T03:51:23.640037+00:00 +2025-07-26,Claude Code,115,44,2026-04-28T03:51:23.640037+00:00 +2025-07-26,Cursor,1490,837,2026-04-28T03:51:23.640037+00:00 +2025-07-26,Devin,90,53,2026-04-28T03:51:23.640037+00:00 +2025-07-26,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-26,Codegen,22,13,2026-04-28T03:51:23.640037+00:00 +2025-07-26,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-26,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-26,OpenHands,2,1,2026-04-28T03:51:23.640037+00:00 +2025-07-26,Open SWE,7,2,2026-04-28T03:51:23.640037+00:00 +2025-07-27,Codex,7055,1608,2026-04-28T03:51:23.640037+00:00 +2025-07-27,Copilot,1314,560,2026-04-28T03:51:23.640037+00:00 +2025-07-27,Claude Code,91,43,2026-04-28T03:51:23.640037+00:00 +2025-07-27,Cursor,1487,849,2026-04-28T03:51:23.640037+00:00 +2025-07-27,Devin,76,51,2026-04-28T03:51:23.640037+00:00 +2025-07-27,Sweep,4,1,2026-04-28T03:51:23.640037+00:00 +2025-07-27,Codegen,31,18,2026-04-28T03:51:23.640037+00:00 +2025-07-27,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-27,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-27,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-27,Open SWE,7,3,2026-04-28T03:51:23.640037+00:00 +2025-07-28,Codex,6500,1735,2026-04-28T03:51:23.640037+00:00 +2025-07-28,Copilot,1233,634,2026-04-28T03:51:23.640037+00:00 +2025-07-28,Claude Code,84,43,2026-04-28T03:51:23.640037+00:00 +2025-07-28,Cursor,1370,897,2026-04-28T03:51:23.640037+00:00 +2025-07-28,Devin,149,92,2026-04-28T03:51:23.640037+00:00 +2025-07-28,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-28,Codegen,40,14,2026-04-28T03:51:23.640037+00:00 +2025-07-28,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-07-28,Gru,10,1,2026-04-28T03:51:23.640037+00:00 +2025-07-28,OpenHands,3,2,2026-04-28T03:51:23.640037+00:00 +2025-07-28,Open SWE,16,8,2026-04-28T03:51:23.640037+00:00 +2025-07-29,Codex,6396,1758,2026-04-28T03:51:23.640037+00:00 +2025-07-29,Copilot,1428,674,2026-04-28T03:51:23.640037+00:00 +2025-07-29,Claude Code,80,42,2026-04-28T03:51:23.640037+00:00 +2025-07-29,Cursor,1452,929,2026-04-28T03:51:23.640037+00:00 +2025-07-29,Devin,220,97,2026-04-28T03:51:23.640037+00:00 +2025-07-29,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-29,Codegen,42,16,2026-04-28T03:51:23.640037+00:00 +2025-07-29,Jules,2,1,2026-04-28T03:51:23.640037+00:00 +2025-07-29,Gru,79,3,2026-04-28T03:51:23.640037+00:00 +2025-07-29,OpenHands,5,2,2026-04-28T03:51:23.640037+00:00 +2025-07-29,Open SWE,28,13,2026-04-28T03:51:23.640037+00:00 +2025-07-30,Codex,6136,1827,2026-04-28T03:51:23.640037+00:00 +2025-07-30,Copilot,1411,644,2026-04-28T03:51:23.640037+00:00 +2025-07-30,Claude Code,47,33,2026-04-28T03:51:23.640037+00:00 +2025-07-30,Cursor,1612,1001,2026-04-28T03:51:23.640037+00:00 +2025-07-30,Devin,237,91,2026-04-28T03:51:23.640037+00:00 +2025-07-30,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-30,Codegen,21,15,2026-04-28T03:51:23.640037+00:00 +2025-07-30,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-07-30,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-30,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-07-30,Open SWE,11,6,2026-04-28T03:51:23.640037+00:00 +2025-07-31,Codex,5999,1735,2026-04-28T03:51:23.640037+00:00 +2025-07-31,Copilot,1374,680,2026-04-28T03:51:23.640037+00:00 +2025-07-31,Claude Code,118,62,2026-04-28T03:51:23.640037+00:00 +2025-07-31,Cursor,1547,954,2026-04-28T03:51:23.640037+00:00 +2025-07-31,Devin,181,97,2026-04-28T03:51:23.640037+00:00 +2025-07-31,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-31,Codegen,26,13,2026-04-28T03:51:23.640037+00:00 +2025-07-31,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-07-31,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-31,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-07-31,Open SWE,16,5,2026-04-28T03:51:23.640037+00:00 +2025-08-01,Codex,5754,1633,2026-04-28T03:51:23.640037+00:00 +2025-08-01,Copilot,1335,660,2026-04-28T03:51:23.640037+00:00 +2025-08-01,Claude Code,110,46,2026-04-28T03:51:23.640037+00:00 +2025-08-01,Cursor,1527,922,2026-04-28T03:51:23.640037+00:00 +2025-08-01,Devin,134,77,2026-04-28T03:51:23.640037+00:00 +2025-08-01,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-01,Codegen,36,16,2026-04-28T03:51:23.640037+00:00 +2025-08-01,Jules,3,3,2026-04-28T03:51:23.640037+00:00 +2025-08-01,Gru,2,1,2026-04-28T03:51:23.640037+00:00 +2025-08-01,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-01,Open SWE,14,6,2026-04-28T03:51:23.640037+00:00 +2025-08-02,Codex,7150,1583,2026-04-28T03:51:23.640037+00:00 +2025-08-02,Copilot,1185,567,2026-04-28T03:51:23.640037+00:00 +2025-08-02,Claude Code,83,48,2026-04-28T03:51:23.640037+00:00 +2025-08-02,Cursor,1608,866,2026-04-28T03:51:23.640037+00:00 +2025-08-02,Devin,153,81,2026-04-28T03:51:23.640037+00:00 +2025-08-02,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-02,Codegen,18,7,2026-04-28T03:51:23.640037+00:00 +2025-08-02,Jules,2,2,2026-04-28T03:51:23.640037+00:00 +2025-08-02,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-02,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-02,Open SWE,2,2,2026-04-28T03:51:23.640037+00:00 +2025-08-03,Codex,8441,1661,2026-04-28T03:51:23.640037+00:00 +2025-08-03,Copilot,1284,586,2026-04-28T03:51:23.640037+00:00 +2025-08-03,Claude Code,119,52,2026-04-28T03:51:23.640037+00:00 +2025-08-03,Cursor,1782,913,2026-04-28T03:51:23.640037+00:00 +2025-08-03,Devin,170,71,2026-04-28T03:51:23.640037+00:00 +2025-08-03,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-03,Codegen,19,11,2026-04-28T03:51:23.640037+00:00 +2025-08-03,Jules,5,4,2026-04-28T03:51:23.640037+00:00 +2025-08-03,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-03,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-03,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2025-08-04,Codex,6779,1720,2026-04-28T03:51:23.640037+00:00 +2025-08-04,Copilot,1053,593,2026-04-28T03:51:23.640037+00:00 +2025-08-04,Claude Code,131,59,2026-04-28T03:51:23.640037+00:00 +2025-08-04,Cursor,1227,769,2026-04-28T03:51:23.640037+00:00 +2025-08-04,Devin,149,77,2026-04-28T03:51:23.640037+00:00 +2025-08-04,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-04,Codegen,13,9,2026-04-28T03:51:23.640037+00:00 +2025-08-04,Jules,3,3,2026-04-28T03:51:23.640037+00:00 +2025-08-04,Gru,47,1,2026-04-28T03:51:23.640037+00:00 +2025-08-04,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-04,Open SWE,4,3,2026-04-28T03:51:23.640037+00:00 +2025-08-05,Codex,7273,1799,2026-04-28T03:51:23.640037+00:00 +2025-08-05,Copilot,1270,632,2026-04-28T03:51:23.640037+00:00 +2025-08-05,Claude Code,93,52,2026-04-28T03:51:23.640037+00:00 +2025-08-05,Cursor,1589,1016,2026-04-28T03:51:23.640037+00:00 +2025-08-05,Devin,177,85,2026-04-28T03:51:23.640037+00:00 +2025-08-05,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-05,Codegen,58,13,2026-04-28T03:51:23.640037+00:00 +2025-08-05,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-08-05,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-05,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-05,Open SWE,10,3,2026-04-28T03:51:23.640037+00:00 +2025-08-06,Codex,7153,1762,2026-04-28T03:51:23.640037+00:00 +2025-08-06,Copilot,1293,671,2026-04-28T03:51:23.640037+00:00 +2025-08-06,Claude Code,138,54,2026-04-28T03:51:23.640037+00:00 +2025-08-06,Cursor,1587,950,2026-04-28T03:51:23.640037+00:00 +2025-08-06,Devin,162,88,2026-04-28T03:51:23.640037+00:00 +2025-08-06,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-06,Codegen,11,5,2026-04-28T03:51:23.640037+00:00 +2025-08-06,Jules,4,4,2026-04-28T03:51:23.640037+00:00 +2025-08-06,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-06,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-06,Open SWE,28,17,2026-04-28T03:51:23.640037+00:00 +2025-08-07,Codex,7597,1978,2026-04-28T03:51:23.640037+00:00 +2025-08-07,Copilot,1449,729,2026-04-28T03:51:23.640037+00:00 +2025-08-07,Claude Code,128,65,2026-04-28T03:51:23.640037+00:00 +2025-08-07,Cursor,1551,999,2026-04-28T03:51:23.640037+00:00 +2025-08-07,Devin,147,96,2026-04-28T03:51:23.640037+00:00 +2025-08-07,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-07,Codegen,20,12,2026-04-28T03:51:23.640037+00:00 +2025-08-07,Jules,10,10,2026-04-28T03:51:23.640037+00:00 +2025-08-07,Gru,3,2,2026-04-28T03:51:23.640037+00:00 +2025-08-07,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-08-07,Open SWE,97,66,2026-04-28T03:51:23.640037+00:00 +2025-08-08,Codex,8775,2599,2026-04-28T03:51:23.640037+00:00 +2025-08-08,Copilot,1471,746,2026-04-28T03:51:23.640037+00:00 +2025-08-08,Claude Code,108,61,2026-04-28T03:51:23.640037+00:00 +2025-08-08,Cursor,1939,1263,2026-04-28T03:51:23.640037+00:00 +2025-08-08,Devin,152,80,2026-04-28T03:51:23.640037+00:00 +2025-08-08,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-08,Codegen,23,13,2026-04-28T03:51:23.640037+00:00 +2025-08-08,Jules,9,9,2026-04-28T03:51:23.640037+00:00 +2025-08-08,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-08,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-08,Open SWE,99,58,2026-04-28T03:51:23.640037+00:00 +2025-08-09,Codex,9291,2390,2026-04-28T03:51:23.640037+00:00 +2025-08-09,Copilot,1768,705,2026-04-28T03:51:23.640037+00:00 +2025-08-09,Claude Code,104,50,2026-04-28T03:51:23.640037+00:00 +2025-08-09,Cursor,2039,1113,2026-04-28T03:51:23.640037+00:00 +2025-08-09,Devin,100,54,2026-04-28T03:51:23.640037+00:00 +2025-08-09,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-09,Codegen,18,10,2026-04-28T03:51:23.640037+00:00 +2025-08-09,Jules,4,4,2026-04-28T03:51:23.640037+00:00 +2025-08-09,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-09,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-09,Open SWE,119,54,2026-04-28T03:51:23.640037+00:00 +2025-08-10,Codex,8919,2149,2026-04-28T03:51:23.640037+00:00 +2025-08-10,Copilot,1694,705,2026-04-28T03:51:23.640037+00:00 +2025-08-10,Claude Code,106,44,2026-04-28T03:51:23.640037+00:00 +2025-08-10,Cursor,1912,1016,2026-04-28T03:51:23.640037+00:00 +2025-08-10,Devin,248,79,2026-04-28T03:51:23.640037+00:00 +2025-08-10,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-10,Codegen,18,12,2026-04-28T03:51:23.640037+00:00 +2025-08-10,Jules,5,4,2026-04-28T03:51:23.640037+00:00 +2025-08-10,Gru,4,1,2026-04-28T03:51:23.640037+00:00 +2025-08-10,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-10,Open SWE,78,44,2026-04-28T03:51:23.640037+00:00 +2025-08-11,Codex,8264,2238,2026-04-28T03:51:23.640037+00:00 +2025-08-11,Copilot,1323,687,2026-04-28T03:51:23.640037+00:00 +2025-08-11,Claude Code,95,51,2026-04-28T03:51:23.640037+00:00 +2025-08-11,Cursor,1766,952,2026-04-28T03:51:23.640037+00:00 +2025-08-11,Devin,190,90,2026-04-28T03:51:23.640037+00:00 +2025-08-11,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-11,Codegen,27,11,2026-04-28T03:51:23.640037+00:00 +2025-08-11,Jules,3,3,2026-04-28T03:51:23.640037+00:00 +2025-08-11,Gru,2,1,2026-04-28T03:51:23.640037+00:00 +2025-08-11,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-11,Open SWE,49,38,2026-04-28T03:51:23.640037+00:00 +2025-08-12,Codex,8646,2244,2026-04-28T03:51:23.640037+00:00 +2025-08-12,Copilot,1310,706,2026-04-28T03:51:23.640037+00:00 +2025-08-12,Claude Code,98,55,2026-04-28T03:51:23.640037+00:00 +2025-08-12,Cursor,1889,1051,2026-04-28T03:51:23.640037+00:00 +2025-08-12,Devin,154,76,2026-04-28T03:51:23.640037+00:00 +2025-08-12,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-12,Codegen,23,16,2026-04-28T03:51:23.640037+00:00 +2025-08-12,Jules,2,2,2026-04-28T03:51:23.640037+00:00 +2025-08-12,Gru,1,1,2026-04-28T03:51:23.640037+00:00 +2025-08-12,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-12,Open SWE,47,30,2026-04-28T03:51:23.640037+00:00 +2025-08-13,Codex,9305,2230,2026-04-28T03:51:23.640037+00:00 +2025-08-13,Copilot,1357,689,2026-04-28T03:51:23.640037+00:00 +2025-08-13,Claude Code,114,55,2026-04-28T03:51:23.640037+00:00 +2025-08-13,Cursor,1697,993,2026-04-28T03:51:23.640037+00:00 +2025-08-13,Devin,140,79,2026-04-28T03:51:23.640037+00:00 +2025-08-13,Sweep,2,1,2026-04-28T03:51:23.640037+00:00 +2025-08-13,Codegen,49,24,2026-04-28T03:51:23.640037+00:00 +2025-08-13,Jules,11,11,2026-04-28T03:51:23.640037+00:00 +2025-08-13,Gru,1,1,2026-04-28T03:51:23.640037+00:00 +2025-08-13,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-08-13,Open SWE,37,23,2026-04-28T03:51:23.640037+00:00 +2025-08-14,Codex,10080,2230,2026-04-28T03:51:23.640037+00:00 +2025-08-14,Copilot,1406,733,2026-04-28T03:51:23.640037+00:00 +2025-08-14,Claude Code,141,60,2026-04-28T03:51:23.640037+00:00 +2025-08-14,Cursor,1676,976,2026-04-28T03:51:23.640037+00:00 +2025-08-14,Devin,236,74,2026-04-28T03:51:23.640037+00:00 +2025-08-14,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-14,Codegen,18,10,2026-04-28T03:51:23.640037+00:00 +2025-08-14,Jules,4,4,2026-04-28T03:51:23.640037+00:00 +2025-08-14,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-14,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-14,Open SWE,50,27,2026-04-28T03:51:23.640037+00:00 +2025-08-15,Codex,9605,2108,2026-04-28T03:51:23.640037+00:00 +2025-08-15,Copilot,1597,671,2026-04-28T03:51:23.640037+00:00 +2025-08-15,Claude Code,128,52,2026-04-28T03:51:23.640037+00:00 +2025-08-15,Cursor,1535,876,2026-04-28T03:51:23.640037+00:00 +2025-08-15,Devin,133,62,2026-04-28T03:51:23.640037+00:00 +2025-08-15,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2025-08-15,Codegen,31,12,2026-04-28T03:51:23.640037+00:00 +2025-08-15,Jules,6,5,2026-04-28T03:51:23.640037+00:00 +2025-08-15,Gru,1,1,2026-04-28T03:51:23.640037+00:00 +2025-08-15,OpenHands,8,1,2026-04-28T03:51:23.640037+00:00 +2025-08-15,Open SWE,35,23,2026-04-28T03:51:23.640037+00:00 +2025-08-16,Codex,11231,1984,2026-04-28T03:51:23.640037+00:00 +2025-08-16,Copilot,1409,594,2026-04-28T03:51:23.640037+00:00 +2025-08-16,Claude Code,74,48,2026-04-28T03:51:23.640037+00:00 +2025-08-16,Cursor,1527,844,2026-04-28T03:51:23.640037+00:00 +2025-08-16,Devin,139,54,2026-04-28T03:51:23.640037+00:00 +2025-08-16,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-16,Codegen,18,11,2026-04-28T03:51:23.640037+00:00 +2025-08-16,Jules,8,8,2026-04-28T03:51:23.640037+00:00 +2025-08-16,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-16,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-16,Open SWE,27,17,2026-04-28T03:51:23.640037+00:00 +2025-08-17,Codex,10238,1942,2026-04-28T03:51:23.640037+00:00 +2025-08-17,Copilot,1392,641,2026-04-28T03:51:23.640037+00:00 +2025-08-17,Claude Code,88,37,2026-04-28T03:51:23.640037+00:00 +2025-08-17,Cursor,1741,828,2026-04-28T03:51:23.640037+00:00 +2025-08-17,Devin,174,52,2026-04-28T03:51:23.640037+00:00 +2025-08-17,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-17,Codegen,69,16,2026-04-28T03:51:23.640037+00:00 +2025-08-17,Jules,9,9,2026-04-28T03:51:23.640037+00:00 +2025-08-17,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-17,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-17,Open SWE,31,13,2026-04-28T03:51:23.640037+00:00 +2025-08-18,Codex,9077,2174,2026-04-28T03:51:23.640037+00:00 +2025-08-18,Copilot,1408,751,2026-04-28T03:51:23.640037+00:00 +2025-08-18,Claude Code,92,49,2026-04-28T03:51:23.640037+00:00 +2025-08-18,Cursor,1538,874,2026-04-28T03:51:23.640037+00:00 +2025-08-18,Devin,126,76,2026-04-28T03:51:23.640037+00:00 +2025-08-18,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-18,Codegen,23,13,2026-04-28T03:51:23.640037+00:00 +2025-08-18,Jules,3,3,2026-04-28T03:51:23.640037+00:00 +2025-08-18,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-18,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-18,Open SWE,31,20,2026-04-28T03:51:23.640037+00:00 +2025-08-19,Codex,9334,2225,2026-04-28T03:51:23.640037+00:00 +2025-08-19,Copilot,1924,975,2026-04-28T03:51:23.640037+00:00 +2025-08-19,Claude Code,110,56,2026-04-28T03:51:23.640037+00:00 +2025-08-19,Cursor,1750,922,2026-04-28T03:51:23.640037+00:00 +2025-08-19,Devin,198,78,2026-04-28T03:51:23.640037+00:00 +2025-08-19,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-19,Codegen,33,14,2026-04-28T03:51:23.640037+00:00 +2025-08-19,Jules,5,5,2026-04-28T03:51:23.640037+00:00 +2025-08-19,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-19,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2025-08-19,Open SWE,43,20,2026-04-28T03:51:23.640037+00:00 +2025-08-20,Codex,8981,2204,2026-04-28T03:51:23.640037+00:00 +2025-08-20,Copilot,2363,1452,2026-04-28T03:51:23.640037+00:00 +2025-08-20,Claude Code,110,48,2026-04-28T03:51:23.640037+00:00 +2025-08-20,Cursor,994,474,2026-04-28T03:51:23.640037+00:00 +2025-08-20,Devin,150,85,2026-04-28T03:51:23.640037+00:00 +2025-08-20,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-20,Codegen,26,12,2026-04-28T03:51:23.640037+00:00 +2025-08-20,Jules,3,3,2026-04-28T03:51:23.640037+00:00 +2025-08-20,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-20,OpenHands,5,3,2026-04-28T03:51:23.640037+00:00 +2025-08-20,Open SWE,29,14,2026-04-28T03:51:23.640037+00:00 +2025-08-21,Codex,9330,2112,2026-04-28T03:51:23.640037+00:00 +2025-08-21,Copilot,2112,1184,2026-04-28T03:51:23.640037+00:00 +2025-08-21,Claude Code,105,62,2026-04-28T03:51:23.640037+00:00 +2025-08-21,Cursor,1793,933,2026-04-28T03:51:23.640037+00:00 +2025-08-21,Devin,217,69,2026-04-28T03:51:23.640037+00:00 +2025-08-21,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-21,Codegen,24,10,2026-04-28T03:51:23.640037+00:00 +2025-08-21,Jules,4,4,2026-04-28T03:51:23.640037+00:00 +2025-08-21,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-21,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-21,Open SWE,16,9,2026-04-28T03:51:23.640037+00:00 +2025-08-22,Codex,9583,2122,2026-04-28T03:51:23.640037+00:00 +2025-08-22,Copilot,2053,1106,2026-04-28T03:51:23.640037+00:00 +2025-08-22,Claude Code,80,51,2026-04-28T03:51:23.640037+00:00 +2025-08-22,Cursor,1552,859,2026-04-28T03:51:23.640037+00:00 +2025-08-22,Devin,138,80,2026-04-28T03:51:23.640037+00:00 +2025-08-22,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-22,Codegen,18,11,2026-04-28T03:51:23.640037+00:00 +2025-08-22,Jules,8,7,2026-04-28T03:51:23.640037+00:00 +2025-08-22,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-22,OpenHands,3,3,2026-04-28T03:51:23.640037+00:00 +2025-08-22,Open SWE,28,11,2026-04-28T03:51:23.640037+00:00 +2025-08-23,Codex,10523,1941,2026-04-28T03:51:23.640037+00:00 +2025-08-23,Copilot,1879,879,2026-04-28T03:51:23.640037+00:00 +2025-08-23,Claude Code,85,40,2026-04-28T03:51:23.640037+00:00 +2025-08-23,Cursor,1913,845,2026-04-28T03:51:23.640037+00:00 +2025-08-23,Devin,72,40,2026-04-28T03:51:23.640037+00:00 +2025-08-23,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-23,Codegen,13,8,2026-04-28T03:51:23.640037+00:00 +2025-08-23,Jules,5,5,2026-04-28T03:51:23.640037+00:00 +2025-08-23,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-23,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-23,Open SWE,12,9,2026-04-28T03:51:23.640037+00:00 +2025-08-24,Codex,10419,1960,2026-04-28T03:51:23.640037+00:00 +2025-08-24,Copilot,1855,869,2026-04-28T03:51:23.640037+00:00 +2025-08-24,Claude Code,81,43,2026-04-28T03:51:23.640037+00:00 +2025-08-24,Cursor,1607,814,2026-04-28T03:51:23.640037+00:00 +2025-08-24,Devin,80,46,2026-04-28T03:51:23.640037+00:00 +2025-08-24,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-24,Codegen,18,14,2026-04-28T03:51:23.640037+00:00 +2025-08-24,Jules,3,3,2026-04-28T03:51:23.640037+00:00 +2025-08-24,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-24,OpenHands,2,1,2026-04-28T03:51:23.640037+00:00 +2025-08-24,Open SWE,12,7,2026-04-28T03:51:23.640037+00:00 +2025-08-25,Codex,9603,2142,2026-04-28T03:51:23.640037+00:00 +2025-08-25,Copilot,1896,1006,2026-04-28T03:51:23.640037+00:00 +2025-08-25,Claude Code,114,45,2026-04-28T03:51:23.640037+00:00 +2025-08-25,Cursor,1425,784,2026-04-28T03:51:23.640037+00:00 +2025-08-25,Devin,108,64,2026-04-28T03:51:23.640037+00:00 +2025-08-25,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-25,Codegen,5,4,2026-04-28T03:51:23.640037+00:00 +2025-08-25,Jules,5,5,2026-04-28T03:51:23.640037+00:00 +2025-08-25,Gru,169,3,2026-04-28T03:51:23.640037+00:00 +2025-08-25,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-08-25,Open SWE,26,10,2026-04-28T03:51:23.640037+00:00 +2025-08-26,Codex,9899,2147,2026-04-28T03:51:23.640037+00:00 +2025-08-26,Copilot,2026,1078,2026-04-28T03:51:23.640037+00:00 +2025-08-26,Claude Code,113,41,2026-04-28T03:51:23.640037+00:00 +2025-08-26,Cursor,1658,806,2026-04-28T03:51:23.640037+00:00 +2025-08-26,Devin,110,72,2026-04-28T03:51:23.640037+00:00 +2025-08-26,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-26,Codegen,13,8,2026-04-28T03:51:23.640037+00:00 +2025-08-26,Jules,4,4,2026-04-28T03:51:23.640037+00:00 +2025-08-26,Gru,35,2,2026-04-28T03:51:23.640037+00:00 +2025-08-26,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-26,Open SWE,12,10,2026-04-28T03:51:23.640037+00:00 +2025-08-27,Codex,10307,2145,2026-04-28T03:51:23.640037+00:00 +2025-08-27,Copilot,1859,1016,2026-04-28T03:51:23.640037+00:00 +2025-08-27,Claude Code,103,50,2026-04-28T03:51:23.640037+00:00 +2025-08-27,Cursor,1514,801,2026-04-28T03:51:23.640037+00:00 +2025-08-27,Devin,137,80,2026-04-28T03:51:23.640037+00:00 +2025-08-27,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2025-08-27,Codegen,14,8,2026-04-28T03:51:23.640037+00:00 +2025-08-27,Jules,5,5,2026-04-28T03:51:23.640037+00:00 +2025-08-27,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-27,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2025-08-27,Open SWE,18,13,2026-04-28T03:51:23.640037+00:00 +2025-08-28,Codex,8443,1757,2026-04-28T03:51:23.640037+00:00 +2025-08-28,Copilot,1908,1053,2026-04-28T03:51:23.640037+00:00 +2025-08-28,Claude Code,110,43,2026-04-28T03:51:23.640037+00:00 +2025-08-28,Cursor,1375,775,2026-04-28T03:51:23.640037+00:00 +2025-08-28,Devin,303,101,2026-04-28T03:51:23.640037+00:00 +2025-08-28,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-28,Codegen,14,9,2026-04-28T03:51:23.640037+00:00 +2025-08-28,Jules,5,5,2026-04-28T03:51:23.640037+00:00 +2025-08-28,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-28,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-08-28,Open SWE,13,10,2026-04-28T03:51:23.640037+00:00 +2025-08-29,Codex,8748,1829,2026-04-28T03:51:23.640037+00:00 +2025-08-29,Copilot,1962,1004,2026-04-28T03:51:23.640037+00:00 +2025-08-29,Claude Code,94,41,2026-04-28T03:51:23.640037+00:00 +2025-08-29,Cursor,1162,529,2026-04-28T03:51:23.640037+00:00 +2025-08-29,Devin,147,88,2026-04-28T03:51:23.640037+00:00 +2025-08-29,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-29,Codegen,10,8,2026-04-28T03:51:23.640037+00:00 +2025-08-29,Jules,5,4,2026-04-28T03:51:23.640037+00:00 +2025-08-29,Gru,50,1,2026-04-28T03:51:23.640037+00:00 +2025-08-29,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-29,Open SWE,13,7,2026-04-28T03:51:23.640037+00:00 +2025-08-30,Codex,9091,1515,2026-04-28T03:51:23.640037+00:00 +2025-08-30,Copilot,1925,901,2026-04-28T03:51:23.640037+00:00 +2025-08-30,Claude Code,147,30,2026-04-28T03:51:23.640037+00:00 +2025-08-30,Cursor,1064,473,2026-04-28T03:51:23.640037+00:00 +2025-08-30,Devin,96,54,2026-04-28T03:51:23.640037+00:00 +2025-08-30,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-30,Codegen,17,12,2026-04-28T03:51:23.640037+00:00 +2025-08-30,Jules,2,2,2026-04-28T03:51:23.640037+00:00 +2025-08-30,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-30,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-30,Open SWE,13,4,2026-04-28T03:51:23.640037+00:00 +2025-08-31,Codex,9434,1636,2026-04-28T03:51:23.640037+00:00 +2025-08-31,Copilot,2172,978,2026-04-28T03:51:23.640037+00:00 +2025-08-31,Claude Code,93,41,2026-04-28T03:51:23.640037+00:00 +2025-08-31,Cursor,1081,455,2026-04-28T03:51:23.640037+00:00 +2025-08-31,Devin,63,36,2026-04-28T03:51:23.640037+00:00 +2025-08-31,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-31,Codegen,13,8,2026-04-28T03:51:23.640037+00:00 +2025-08-31,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-08-31,Gru,84,2,2026-04-28T03:51:23.640037+00:00 +2025-08-31,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-08-31,Open SWE,11,2,2026-04-28T03:51:23.640037+00:00 +2025-09-01,Codex,8810,1782,2026-04-28T03:51:23.640037+00:00 +2025-09-01,Copilot,2141,1007,2026-04-28T03:51:23.640037+00:00 +2025-09-01,Claude Code,119,43,2026-04-28T03:51:23.640037+00:00 +2025-09-01,Cursor,956,471,2026-04-28T03:51:23.640037+00:00 +2025-09-01,Devin,87,52,2026-04-28T03:51:23.640037+00:00 +2025-09-01,Sweep,453,1,2026-04-28T03:51:23.640037+00:00 +2025-09-01,Codegen,23,10,2026-04-28T03:51:23.640037+00:00 +2025-09-01,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-09-01,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-01,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-01,Open SWE,19,14,2026-04-28T03:51:23.640037+00:00 +2025-09-02,Codex,8519,1798,2026-04-28T03:51:23.640037+00:00 +2025-09-02,Copilot,2135,1147,2026-04-28T03:51:23.640037+00:00 +2025-09-02,Claude Code,114,53,2026-04-28T03:51:23.640037+00:00 +2025-09-02,Cursor,1412,498,2026-04-28T03:51:23.640037+00:00 +2025-09-02,Devin,93,62,2026-04-28T03:51:23.640037+00:00 +2025-09-02,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-02,Codegen,52,34,2026-04-28T03:51:23.640037+00:00 +2025-09-02,Jules,6,6,2026-04-28T03:51:23.640037+00:00 +2025-09-02,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-02,OpenHands,4,3,2026-04-28T03:51:23.640037+00:00 +2025-09-02,Open SWE,17,9,2026-04-28T03:51:23.640037+00:00 +2025-09-03,Codex,8459,1863,2026-04-28T03:51:23.640037+00:00 +2025-09-03,Copilot,1893,1052,2026-04-28T03:51:23.640037+00:00 +2025-09-03,Claude Code,113,37,2026-04-28T03:51:23.640037+00:00 +2025-09-03,Cursor,1178,434,2026-04-28T03:51:23.640037+00:00 +2025-09-03,Devin,127,75,2026-04-28T03:51:23.640037+00:00 +2025-09-03,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-03,Codegen,106,86,2026-04-28T03:51:23.640037+00:00 +2025-09-03,Jules,4,4,2026-04-28T03:51:23.640037+00:00 +2025-09-03,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-03,OpenHands,10,4,2026-04-28T03:51:23.640037+00:00 +2025-09-03,Open SWE,7,4,2026-04-28T03:51:23.640037+00:00 +2025-09-04,Codex,8039,1708,2026-04-28T03:51:23.640037+00:00 +2025-09-04,Copilot,1768,1039,2026-04-28T03:51:23.640037+00:00 +2025-09-04,Claude Code,174,39,2026-04-28T03:51:23.640037+00:00 +2025-09-04,Cursor,1111,423,2026-04-28T03:51:23.640037+00:00 +2025-09-04,Devin,97,72,2026-04-28T03:51:23.640037+00:00 +2025-09-04,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-04,Codegen,80,71,2026-04-28T03:51:23.640037+00:00 +2025-09-04,Jules,3,3,2026-04-28T03:51:23.640037+00:00 +2025-09-04,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-04,OpenHands,3,2,2026-04-28T03:51:23.640037+00:00 +2025-09-04,Open SWE,16,6,2026-04-28T03:51:23.640037+00:00 +2025-09-05,Codex,7948,1712,2026-04-28T03:51:23.640037+00:00 +2025-09-05,Copilot,1858,1006,2026-04-28T03:51:23.640037+00:00 +2025-09-05,Claude Code,78,42,2026-04-28T03:51:23.640037+00:00 +2025-09-05,Cursor,1242,466,2026-04-28T03:51:23.640037+00:00 +2025-09-05,Devin,97,58,2026-04-28T03:51:23.640037+00:00 +2025-09-05,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-05,Codegen,127,111,2026-04-28T03:51:23.640037+00:00 +2025-09-05,Jules,5,4,2026-04-28T03:51:23.640037+00:00 +2025-09-05,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-05,OpenHands,5,2,2026-04-28T03:51:23.640037+00:00 +2025-09-05,Open SWE,3,2,2026-04-28T03:51:23.640037+00:00 +2025-09-06,Codex,8932,1557,2026-04-28T03:51:23.640037+00:00 +2025-09-06,Copilot,1951,940,2026-04-28T03:51:23.640037+00:00 +2025-09-06,Claude Code,93,36,2026-04-28T03:51:23.640037+00:00 +2025-09-06,Cursor,1020,463,2026-04-28T03:51:23.640037+00:00 +2025-09-06,Devin,62,36,2026-04-28T03:51:23.640037+00:00 +2025-09-06,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-06,Codegen,44,35,2026-04-28T03:51:23.640037+00:00 +2025-09-06,Jules,2,2,2026-04-28T03:51:23.640037+00:00 +2025-09-06,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-06,OpenHands,2,1,2026-04-28T03:51:23.640037+00:00 +2025-09-06,Open SWE,13,5,2026-04-28T03:51:23.640037+00:00 +2025-09-07,Codex,8968,1503,2026-04-28T03:51:23.640037+00:00 +2025-09-07,Copilot,1786,867,2026-04-28T03:51:23.640037+00:00 +2025-09-07,Claude Code,67,36,2026-04-28T03:51:23.640037+00:00 +2025-09-07,Cursor,936,400,2026-04-28T03:51:23.640037+00:00 +2025-09-07,Devin,78,32,2026-04-28T03:51:23.640037+00:00 +2025-09-07,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-07,Codegen,53,44,2026-04-28T03:51:23.640037+00:00 +2025-09-07,Jules,3,3,2026-04-28T03:51:23.640037+00:00 +2025-09-07,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-07,OpenHands,3,2,2026-04-28T03:51:23.640037+00:00 +2025-09-07,Open SWE,10,6,2026-04-28T03:51:23.640037+00:00 +2025-09-08,Codex,4917,1261,2026-04-28T03:51:23.640037+00:00 +2025-09-08,Copilot,1092,665,2026-04-28T03:51:23.640037+00:00 +2025-09-08,Claude Code,43,25,2026-04-28T03:51:23.640037+00:00 +2025-09-08,Cursor,780,349,2026-04-28T03:51:23.640037+00:00 +2025-09-08,Devin,59,39,2026-04-28T03:51:23.640037+00:00 +2025-09-08,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-08,Codegen,64,57,2026-04-28T03:51:23.640037+00:00 +2025-09-08,Jules,5,5,2026-04-28T03:51:23.640037+00:00 +2025-09-08,Gru,1,1,2026-04-28T03:51:23.640037+00:00 +2025-09-08,OpenHands,4,3,2026-04-28T03:51:23.640037+00:00 +2025-09-08,Open SWE,4,4,2026-04-28T03:51:23.640037+00:00 +2025-09-09,Codex,7817,1734,2026-04-28T03:51:23.640037+00:00 +2025-09-09,Copilot,2216,1275,2026-04-28T03:51:23.640037+00:00 +2025-09-09,Claude Code,53,31,2026-04-28T03:51:23.640037+00:00 +2025-09-09,Cursor,1160,514,2026-04-28T03:51:23.640037+00:00 +2025-09-09,Devin,134,62,2026-04-28T03:51:23.640037+00:00 +2025-09-09,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-09,Codegen,11,7,2026-04-28T03:51:23.640037+00:00 +2025-09-09,Jules,3,3,2026-04-28T03:51:23.640037+00:00 +2025-09-09,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-09,OpenHands,6,1,2026-04-28T03:51:23.640037+00:00 +2025-09-09,Open SWE,11,8,2026-04-28T03:51:23.640037+00:00 +2025-09-10,Codex,7700,1700,2026-04-28T03:51:23.640037+00:00 +2025-09-10,Copilot,2237,1284,2026-04-28T03:51:23.640037+00:00 +2025-09-10,Claude Code,58,40,2026-04-28T03:51:23.640037+00:00 +2025-09-10,Cursor,1322,439,2026-04-28T03:51:23.640037+00:00 +2025-09-10,Devin,119,83,2026-04-28T03:51:23.640037+00:00 +2025-09-10,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-10,Codegen,8,6,2026-04-28T03:51:23.640037+00:00 +2025-09-10,Jules,3,3,2026-04-28T03:51:23.640037+00:00 +2025-09-10,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-10,OpenHands,3,1,2026-04-28T03:51:23.640037+00:00 +2025-09-10,Open SWE,7,4,2026-04-28T03:51:23.640037+00:00 +2025-09-11,Codex,8215,1630,2026-04-28T03:51:23.640037+00:00 +2025-09-11,Copilot,2194,1252,2026-04-28T03:51:23.640037+00:00 +2025-09-11,Claude Code,70,38,2026-04-28T03:51:23.640037+00:00 +2025-09-11,Cursor,1031,448,2026-04-28T03:51:23.640037+00:00 +2025-09-11,Devin,169,88,2026-04-28T03:51:23.640037+00:00 +2025-09-11,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-11,Codegen,10,7,2026-04-28T03:51:23.640037+00:00 +2025-09-11,Jules,2,2,2026-04-28T03:51:23.640037+00:00 +2025-09-11,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-11,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2025-09-11,Open SWE,7,4,2026-04-28T03:51:23.640037+00:00 +2025-09-12,Codex,7914,1648,2026-04-28T03:51:23.640037+00:00 +2025-09-12,Copilot,2345,1280,2026-04-28T03:51:23.640037+00:00 +2025-09-12,Claude Code,127,38,2026-04-28T03:51:23.640037+00:00 +2025-09-12,Cursor,1217,464,2026-04-28T03:51:23.640037+00:00 +2025-09-12,Devin,87,54,2026-04-28T03:51:23.640037+00:00 +2025-09-12,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-12,Codegen,21,13,2026-04-28T03:51:23.640037+00:00 +2025-09-12,Jules,4,4,2026-04-28T03:51:23.640037+00:00 +2025-09-12,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-12,OpenHands,6,2,2026-04-28T03:51:23.640037+00:00 +2025-09-12,Open SWE,12,7,2026-04-28T03:51:23.640037+00:00 +2025-09-13,Codex,8643,1524,2026-04-28T03:51:23.640037+00:00 +2025-09-13,Copilot,2404,1161,2026-04-28T03:51:23.640037+00:00 +2025-09-13,Claude Code,60,23,2026-04-28T03:51:23.640037+00:00 +2025-09-13,Cursor,1135,423,2026-04-28T03:51:23.640037+00:00 +2025-09-13,Devin,47,35,2026-04-28T03:51:23.640037+00:00 +2025-09-13,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-13,Codegen,15,8,2026-04-28T03:51:23.640037+00:00 +2025-09-13,Jules,8,6,2026-04-28T03:51:23.640037+00:00 +2025-09-13,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-13,OpenHands,3,1,2026-04-28T03:51:23.640037+00:00 +2025-09-13,Open SWE,3,3,2026-04-28T03:51:23.640037+00:00 +2025-09-14,Codex,8667,1546,2026-04-28T03:51:23.640037+00:00 +2025-09-14,Copilot,2397,1153,2026-04-28T03:51:23.640037+00:00 +2025-09-14,Claude Code,72,31,2026-04-28T03:51:23.640037+00:00 +2025-09-14,Cursor,1047,391,2026-04-28T03:51:23.640037+00:00 +2025-09-14,Devin,101,39,2026-04-28T03:51:23.640037+00:00 +2025-09-14,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-14,Codegen,19,14,2026-04-28T03:51:23.640037+00:00 +2025-09-14,Jules,3,3,2026-04-28T03:51:23.640037+00:00 +2025-09-14,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-14,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-14,Open SWE,9,8,2026-04-28T03:51:23.640037+00:00 +2025-09-15,Codex,6881,1713,2026-04-28T03:51:23.640037+00:00 +2025-09-15,Copilot,2107,1226,2026-04-28T03:51:23.640037+00:00 +2025-09-15,Claude Code,94,37,2026-04-28T03:51:23.640037+00:00 +2025-09-15,Cursor,941,396,2026-04-28T03:51:23.640037+00:00 +2025-09-15,Devin,103,68,2026-04-28T03:51:23.640037+00:00 +2025-09-15,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-15,Codegen,14,12,2026-04-28T03:51:23.640037+00:00 +2025-09-15,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-09-15,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-15,OpenHands,4,3,2026-04-28T03:51:23.640037+00:00 +2025-09-15,Open SWE,11,5,2026-04-28T03:51:23.640037+00:00 +2025-09-16,Codex,8028,2167,2026-04-28T03:51:23.640037+00:00 +2025-09-16,Copilot,2309,1289,2026-04-28T03:51:23.640037+00:00 +2025-09-16,Claude Code,80,36,2026-04-28T03:51:23.640037+00:00 +2025-09-16,Cursor,1552,434,2026-04-28T03:51:23.640037+00:00 +2025-09-16,Devin,136,66,2026-04-28T03:51:23.640037+00:00 +2025-09-16,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-16,Codegen,22,13,2026-04-28T03:51:23.640037+00:00 +2025-09-16,Jules,3,3,2026-04-28T03:51:23.640037+00:00 +2025-09-16,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-16,OpenHands,8,3,2026-04-28T03:51:23.640037+00:00 +2025-09-16,Open SWE,22,16,2026-04-28T03:51:23.640037+00:00 +2025-09-17,Codex,7706,2342,2026-04-28T03:51:23.640037+00:00 +2025-09-17,Copilot,2087,1196,2026-04-28T03:51:23.640037+00:00 +2025-09-17,Claude Code,60,36,2026-04-28T03:51:23.640037+00:00 +2025-09-17,Cursor,808,378,2026-04-28T03:51:23.640037+00:00 +2025-09-17,Devin,98,64,2026-04-28T03:51:23.640037+00:00 +2025-09-17,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-17,Codegen,21,14,2026-04-28T03:51:23.640037+00:00 +2025-09-17,Jules,6,6,2026-04-28T03:51:23.640037+00:00 +2025-09-17,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-17,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-17,Open SWE,16,7,2026-04-28T03:51:23.640037+00:00 +2025-09-18,Codex,7728,2278,2026-04-28T03:51:23.640037+00:00 +2025-09-18,Copilot,2174,1212,2026-04-28T03:51:23.640037+00:00 +2025-09-18,Claude Code,47,28,2026-04-28T03:51:23.640037+00:00 +2025-09-18,Cursor,847,406,2026-04-28T03:51:23.640037+00:00 +2025-09-18,Devin,112,69,2026-04-28T03:51:23.640037+00:00 +2025-09-18,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-18,Codegen,23,16,2026-04-28T03:51:23.640037+00:00 +2025-09-18,Jules,2,2,2026-04-28T03:51:23.640037+00:00 +2025-09-18,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-18,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-09-18,Open SWE,13,7,2026-04-28T03:51:23.640037+00:00 +2025-09-19,Codex,8940,2507,2026-04-28T03:51:23.640037+00:00 +2025-09-19,Copilot,2442,1364,2026-04-28T03:51:23.640037+00:00 +2025-09-19,Claude Code,59,32,2026-04-28T03:51:23.640037+00:00 +2025-09-19,Cursor,651,292,2026-04-28T03:51:23.640037+00:00 +2025-09-19,Devin,99,68,2026-04-28T03:51:23.640037+00:00 +2025-09-19,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-19,Codegen,14,14,2026-04-28T03:51:23.640037+00:00 +2025-09-19,Jules,2,2,2026-04-28T03:51:23.640037+00:00 +2025-09-19,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-19,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-09-19,Open SWE,3,3,2026-04-28T03:51:23.640037+00:00 +2025-09-20,Codex,9653,2238,2026-04-28T03:51:23.640037+00:00 +2025-09-20,Copilot,2216,1166,2026-04-28T03:51:23.640037+00:00 +2025-09-20,Claude Code,64,28,2026-04-28T03:51:23.640037+00:00 +2025-09-20,Cursor,575,248,2026-04-28T03:51:23.640037+00:00 +2025-09-20,Devin,72,43,2026-04-28T03:51:23.640037+00:00 +2025-09-20,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-20,Codegen,16,14,2026-04-28T03:51:23.640037+00:00 +2025-09-20,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-20,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-20,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2025-09-20,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2025-09-21,Codex,9575,2286,2026-04-28T03:51:23.640037+00:00 +2025-09-21,Copilot,2317,1150,2026-04-28T03:51:23.640037+00:00 +2025-09-21,Claude Code,61,28,2026-04-28T03:51:23.640037+00:00 +2025-09-21,Cursor,709,275,2026-04-28T03:51:23.640037+00:00 +2025-09-21,Devin,38,25,2026-04-28T03:51:23.640037+00:00 +2025-09-21,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-21,Codegen,31,29,2026-04-28T03:51:23.640037+00:00 +2025-09-21,Jules,2,2,2026-04-28T03:51:23.640037+00:00 +2025-09-21,Gru,53,1,2026-04-28T03:51:23.640037+00:00 +2025-09-21,OpenHands,4,1,2026-04-28T03:51:23.640037+00:00 +2025-09-21,Open SWE,6,4,2026-04-28T03:51:23.640037+00:00 +2025-09-22,Codex,8659,2500,2026-04-28T03:51:23.640037+00:00 +2025-09-22,Copilot,2220,1205,2026-04-28T03:51:23.640037+00:00 +2025-09-22,Claude Code,53,23,2026-04-28T03:51:23.640037+00:00 +2025-09-22,Cursor,781,395,2026-04-28T03:51:23.640037+00:00 +2025-09-22,Devin,188,65,2026-04-28T03:51:23.640037+00:00 +2025-09-22,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-22,Codegen,23,18,2026-04-28T03:51:23.640037+00:00 +2025-09-22,Jules,2,2,2026-04-28T03:51:23.640037+00:00 +2025-09-22,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-22,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2025-09-22,Open SWE,5,3,2026-04-28T03:51:23.640037+00:00 +2025-09-23,Codex,9034,2584,2026-04-28T03:51:23.640037+00:00 +2025-09-23,Copilot,2333,1297,2026-04-28T03:51:23.640037+00:00 +2025-09-23,Claude Code,36,22,2026-04-28T03:51:23.640037+00:00 +2025-09-23,Cursor,1522,744,2026-04-28T03:51:23.640037+00:00 +2025-09-23,Devin,131,77,2026-04-28T03:51:23.640037+00:00 +2025-09-23,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-23,Codegen,25,24,2026-04-28T03:51:23.640037+00:00 +2025-09-23,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-09-23,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-23,OpenHands,4,2,2026-04-28T03:51:23.640037+00:00 +2025-09-23,Open SWE,4,3,2026-04-28T03:51:23.640037+00:00 +2025-09-24,Codex,8462,2494,2026-04-28T03:51:23.640037+00:00 +2025-09-24,Copilot,2270,1316,2026-04-28T03:51:23.640037+00:00 +2025-09-24,Claude Code,37,28,2026-04-28T03:51:23.640037+00:00 +2025-09-24,Cursor,1428,736,2026-04-28T03:51:23.640037+00:00 +2025-09-24,Devin,113,66,2026-04-28T03:51:23.640037+00:00 +2025-09-24,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-24,Codegen,19,15,2026-04-28T03:51:23.640037+00:00 +2025-09-24,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-09-24,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-24,OpenHands,3,1,2026-04-28T03:51:23.640037+00:00 +2025-09-24,Open SWE,2,1,2026-04-28T03:51:23.640037+00:00 +2025-09-25,Codex,8237,2468,2026-04-28T03:51:23.640037+00:00 +2025-09-25,Copilot,2203,1273,2026-04-28T03:51:23.640037+00:00 +2025-09-25,Claude Code,63,37,2026-04-28T03:51:23.640037+00:00 +2025-09-25,Cursor,1346,714,2026-04-28T03:51:23.640037+00:00 +2025-09-25,Devin,120,69,2026-04-28T03:51:23.640037+00:00 +2025-09-25,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2025-09-25,Codegen,16,10,2026-04-28T03:51:23.640037+00:00 +2025-09-25,Jules,3,3,2026-04-28T03:51:23.640037+00:00 +2025-09-25,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-25,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-09-25,Open SWE,2,2,2026-04-28T03:51:23.640037+00:00 +2025-09-26,Codex,9972,2548,2026-04-28T03:51:23.640037+00:00 +2025-09-26,Copilot,2412,1311,2026-04-28T03:51:23.640037+00:00 +2025-09-26,Claude Code,71,31,2026-04-28T03:51:23.640037+00:00 +2025-09-26,Cursor,1623,741,2026-04-28T03:51:23.640037+00:00 +2025-09-26,Devin,90,51,2026-04-28T03:51:23.640037+00:00 +2025-09-26,Sweep,28,1,2026-04-28T03:51:23.640037+00:00 +2025-09-26,Codegen,5,4,2026-04-28T03:51:23.640037+00:00 +2025-09-26,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-09-26,Gru,15,1,2026-04-28T03:51:23.640037+00:00 +2025-09-26,OpenHands,2,1,2026-04-28T03:51:23.640037+00:00 +2025-09-26,Open SWE,3,3,2026-04-28T03:51:23.640037+00:00 +2025-09-27,Codex,10644,2272,2026-04-28T03:51:23.640037+00:00 +2025-09-27,Copilot,2305,1183,2026-04-28T03:51:23.640037+00:00 +2025-09-27,Claude Code,56,26,2026-04-28T03:51:23.640037+00:00 +2025-09-27,Cursor,1695,741,2026-04-28T03:51:23.640037+00:00 +2025-09-27,Devin,62,32,2026-04-28T03:51:23.640037+00:00 +2025-09-27,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-27,Codegen,22,13,2026-04-28T03:51:23.640037+00:00 +2025-09-27,Jules,2,2,2026-04-28T03:51:23.640037+00:00 +2025-09-27,Gru,38,2,2026-04-28T03:51:23.640037+00:00 +2025-09-27,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-27,Open SWE,7,2,2026-04-28T03:51:23.640037+00:00 +2025-09-28,Codex,9975,2268,2026-04-28T03:51:23.640037+00:00 +2025-09-28,Copilot,2281,1167,2026-04-28T03:51:23.640037+00:00 +2025-09-28,Claude Code,30,17,2026-04-28T03:51:23.640037+00:00 +2025-09-28,Cursor,1421,655,2026-04-28T03:51:23.640037+00:00 +2025-09-28,Devin,37,21,2026-04-28T03:51:23.640037+00:00 +2025-09-28,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-28,Codegen,10,6,2026-04-28T03:51:23.640037+00:00 +2025-09-28,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-09-28,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-28,OpenHands,2,1,2026-04-28T03:51:23.640037+00:00 +2025-09-28,Open SWE,22,3,2026-04-28T03:51:23.640037+00:00 +2025-09-29,Codex,8266,2299,2026-04-28T03:51:23.640037+00:00 +2025-09-29,Copilot,2096,1241,2026-04-28T03:51:23.640037+00:00 +2025-09-29,Claude Code,38,20,2026-04-28T03:51:23.640037+00:00 +2025-09-29,Cursor,1342,569,2026-04-28T03:51:23.640037+00:00 +2025-09-29,Devin,95,49,2026-04-28T03:51:23.640037+00:00 +2025-09-29,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-29,Codegen,22,17,2026-04-28T03:51:23.640037+00:00 +2025-09-29,Jules,4,3,2026-04-28T03:51:23.640037+00:00 +2025-09-29,Gru,9,1,2026-04-28T03:51:23.640037+00:00 +2025-09-29,OpenHands,6,2,2026-04-28T03:51:23.640037+00:00 +2025-09-29,Open SWE,12,4,2026-04-28T03:51:23.640037+00:00 +2025-09-30,Codex,8769,2305,2026-04-28T03:51:23.640037+00:00 +2025-09-30,Copilot,2260,1245,2026-04-28T03:51:23.640037+00:00 +2025-09-30,Claude Code,28,17,2026-04-28T03:51:23.640037+00:00 +2025-09-30,Cursor,1460,643,2026-04-28T03:51:23.640037+00:00 +2025-09-30,Devin,104,49,2026-04-28T03:51:23.640037+00:00 +2025-09-30,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-30,Codegen,10,4,2026-04-28T03:51:23.640037+00:00 +2025-09-30,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-30,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-09-30,OpenHands,3,3,2026-04-28T03:51:23.640037+00:00 +2025-09-30,Open SWE,13,6,2026-04-28T03:51:23.640037+00:00 +2025-10-01,Codex,8895,2305,2026-04-28T03:51:23.640037+00:00 +2025-10-01,Copilot,2212,1266,2026-04-28T03:51:23.640037+00:00 +2025-10-01,Claude Code,42,29,2026-04-28T03:51:23.640037+00:00 +2025-10-01,Cursor,1720,632,2026-04-28T03:51:23.640037+00:00 +2025-10-01,Devin,104,46,2026-04-28T03:51:23.640037+00:00 +2025-10-01,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2025-10-01,Codegen,15,10,2026-04-28T03:51:23.640037+00:00 +2025-10-01,Jules,2,2,2026-04-28T03:51:23.640037+00:00 +2025-10-01,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-01,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-10-01,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-02,Codex,9288,2383,2026-04-28T03:51:23.640037+00:00 +2025-10-02,Copilot,2675,1385,2026-04-28T03:51:23.640037+00:00 +2025-10-02,Claude Code,93,38,2026-04-28T03:51:23.640037+00:00 +2025-10-02,Cursor,1690,830,2026-04-28T03:51:23.640037+00:00 +2025-10-02,Devin,100,57,2026-04-28T03:51:23.640037+00:00 +2025-10-02,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-02,Codegen,8,8,2026-04-28T03:51:23.640037+00:00 +2025-10-02,Jules,3,3,2026-04-28T03:51:23.640037+00:00 +2025-10-02,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-02,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-02,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2025-10-03,Codex,9604,2274,2026-04-28T03:51:23.640037+00:00 +2025-10-03,Copilot,2461,1385,2026-04-28T03:51:23.640037+00:00 +2025-10-03,Claude Code,87,40,2026-04-28T03:51:23.640037+00:00 +2025-10-03,Cursor,1757,757,2026-04-28T03:51:23.640037+00:00 +2025-10-03,Devin,102,55,2026-04-28T03:51:23.640037+00:00 +2025-10-03,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-03,Codegen,18,10,2026-04-28T03:51:23.640037+00:00 +2025-10-03,Jules,4,4,2026-04-28T03:51:23.640037+00:00 +2025-10-03,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-03,OpenHands,2,1,2026-04-28T03:51:23.640037+00:00 +2025-10-03,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2025-10-04,Codex,10510,2235,2026-04-28T03:51:23.640037+00:00 +2025-10-04,Copilot,2670,1309,2026-04-28T03:51:23.640037+00:00 +2025-10-04,Claude Code,72,35,2026-04-28T03:51:23.640037+00:00 +2025-10-04,Cursor,2169,803,2026-04-28T03:51:23.640037+00:00 +2025-10-04,Devin,74,32,2026-04-28T03:51:23.640037+00:00 +2025-10-04,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-04,Codegen,17,12,2026-04-28T03:51:23.640037+00:00 +2025-10-04,Jules,4,3,2026-04-28T03:51:23.640037+00:00 +2025-10-04,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-04,OpenHands,10,9,2026-04-28T03:51:23.640037+00:00 +2025-10-04,Open SWE,4,4,2026-04-28T03:51:23.640037+00:00 +2025-10-05,Codex,10730,2208,2026-04-28T03:51:23.640037+00:00 +2025-10-05,Copilot,2581,1250,2026-04-28T03:51:23.640037+00:00 +2025-10-05,Claude Code,43,26,2026-04-28T03:51:23.640037+00:00 +2025-10-05,Cursor,1960,812,2026-04-28T03:51:23.640037+00:00 +2025-10-05,Devin,61,32,2026-04-28T03:51:23.640037+00:00 +2025-10-05,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-05,Codegen,4,3,2026-04-28T03:51:23.640037+00:00 +2025-10-05,Jules,6,5,2026-04-28T03:51:23.640037+00:00 +2025-10-05,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-05,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-05,Open SWE,2,1,2026-04-28T03:51:23.640037+00:00 +2025-10-06,Codex,9010,2476,2026-04-28T03:51:23.640037+00:00 +2025-10-06,Copilot,2340,1276,2026-04-28T03:51:23.640037+00:00 +2025-10-06,Claude Code,71,43,2026-04-28T03:51:23.640037+00:00 +2025-10-06,Cursor,2275,889,2026-04-28T03:51:23.640037+00:00 +2025-10-06,Devin,83,46,2026-04-28T03:51:23.640037+00:00 +2025-10-06,Sweep,41,1,2026-04-28T03:51:23.640037+00:00 +2025-10-06,Codegen,15,10,2026-04-28T03:51:23.640037+00:00 +2025-10-06,Jules,7,5,2026-04-28T03:51:23.640037+00:00 +2025-10-06,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-06,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-06,Open SWE,5,4,2026-04-28T03:51:23.640037+00:00 +2025-10-07,Codex,10009,2786,2026-04-28T03:51:23.640037+00:00 +2025-10-07,Copilot,2578,1418,2026-04-28T03:51:23.640037+00:00 +2025-10-07,Claude Code,90,39,2026-04-28T03:51:23.640037+00:00 +2025-10-07,Cursor,1855,857,2026-04-28T03:51:23.640037+00:00 +2025-10-07,Devin,140,66,2026-04-28T03:51:23.640037+00:00 +2025-10-07,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-07,Codegen,19,10,2026-04-28T03:51:23.640037+00:00 +2025-10-07,Jules,6,5,2026-04-28T03:51:23.640037+00:00 +2025-10-07,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-07,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-07,Open SWE,8,4,2026-04-28T03:51:23.640037+00:00 +2025-10-08,Codex,6692,2087,2026-04-28T03:51:23.640037+00:00 +2025-10-08,Copilot,1837,1039,2026-04-28T03:51:23.640037+00:00 +2025-10-08,Claude Code,57,22,2026-04-28T03:51:23.640037+00:00 +2025-10-08,Cursor,1128,521,2026-04-28T03:51:23.640037+00:00 +2025-10-08,Devin,76,44,2026-04-28T03:51:23.640037+00:00 +2025-10-08,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-08,Codegen,16,6,2026-04-28T03:51:23.640037+00:00 +2025-10-08,Jules,9,4,2026-04-28T03:51:23.640037+00:00 +2025-10-08,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-08,OpenHands,2,1,2026-04-28T03:51:23.640037+00:00 +2025-10-08,Open SWE,4,3,2026-04-28T03:51:23.640037+00:00 +2025-10-09,Codex,44,41,2026-04-28T03:51:23.640037+00:00 +2025-10-09,Copilot,11,11,2026-04-28T03:51:23.640037+00:00 +2025-10-09,Claude Code,1,1,2026-04-28T03:51:23.640037+00:00 +2025-10-09,Cursor,15,10,2026-04-28T03:51:23.640037+00:00 +2025-10-09,Devin,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-09,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-09,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-09,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-09,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-09,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-09,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-10,Codex,50,50,2026-04-28T03:51:23.640037+00:00 +2025-10-10,Copilot,16,16,2026-04-28T03:51:23.640037+00:00 +2025-10-10,Claude Code,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-10,Cursor,16,12,2026-04-28T03:51:23.640037+00:00 +2025-10-10,Devin,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-10,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-10,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-10,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-10,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-10,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-10,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-11,Codex,44,43,2026-04-28T03:51:23.640037+00:00 +2025-10-11,Copilot,17,17,2026-04-28T03:51:23.640037+00:00 +2025-10-11,Claude Code,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-11,Cursor,7,5,2026-04-28T03:51:23.640037+00:00 +2025-10-11,Devin,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-11,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-11,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-11,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-10-11,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-11,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-11,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-12,Codex,46,44,2026-04-28T03:51:23.640037+00:00 +2025-10-12,Copilot,10,10,2026-04-28T03:51:23.640037+00:00 +2025-10-12,Claude Code,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-12,Cursor,12,5,2026-04-28T03:51:23.640037+00:00 +2025-10-12,Devin,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-12,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-12,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-12,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-12,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-12,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-12,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-13,Codex,56,53,2026-04-28T03:51:23.640037+00:00 +2025-10-13,Copilot,13,13,2026-04-28T03:51:23.640037+00:00 +2025-10-13,Claude Code,2,1,2026-04-28T03:51:23.640037+00:00 +2025-10-13,Cursor,14,12,2026-04-28T03:51:23.640037+00:00 +2025-10-13,Devin,2,2,2026-04-28T03:51:23.640037+00:00 +2025-10-13,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-13,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-13,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-13,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-13,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-13,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-14,Codex,1202,565,2026-04-28T03:51:23.640037+00:00 +2025-10-14,Copilot,362,228,2026-04-28T03:51:23.640037+00:00 +2025-10-14,Claude Code,5,3,2026-04-28T03:51:23.640037+00:00 +2025-10-14,Cursor,255,106,2026-04-28T03:51:23.640037+00:00 +2025-10-14,Devin,55,50,2026-04-28T03:51:23.640037+00:00 +2025-10-14,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-14,Codegen,2,2,2026-04-28T03:51:23.640037+00:00 +2025-10-14,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-10-14,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-14,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-10-14,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-15,Codex,10120,2751,2026-04-28T03:51:23.640037+00:00 +2025-10-15,Copilot,1965,1082,2026-04-28T03:51:23.640037+00:00 +2025-10-15,Claude Code,49,27,2026-04-28T03:51:23.640037+00:00 +2025-10-15,Cursor,2210,962,2026-04-28T03:51:23.640037+00:00 +2025-10-15,Devin,113,72,2026-04-28T03:51:23.640037+00:00 +2025-10-15,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-15,Codegen,23,12,2026-04-28T03:51:23.640037+00:00 +2025-10-15,Jules,8,6,2026-04-28T03:51:23.640037+00:00 +2025-10-15,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-15,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-15,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2025-10-16,Codex,9784,2741,2026-04-28T03:51:23.640037+00:00 +2025-10-16,Copilot,136,87,2026-04-28T03:51:23.640037+00:00 +2025-10-16,Claude Code,69,36,2026-04-28T03:51:23.640037+00:00 +2025-10-16,Cursor,1741,903,2026-04-28T03:51:23.640037+00:00 +2025-10-16,Devin,132,83,2026-04-28T03:51:23.640037+00:00 +2025-10-16,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2025-10-16,Codegen,18,12,2026-04-28T03:51:23.640037+00:00 +2025-10-16,Jules,2,2,2026-04-28T03:51:23.640037+00:00 +2025-10-16,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-16,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2025-10-16,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-17,Codex,9828,2556,2026-04-28T03:51:23.640037+00:00 +2025-10-17,Copilot,91,78,2026-04-28T03:51:23.640037+00:00 +2025-10-17,Claude Code,66,32,2026-04-28T03:51:23.640037+00:00 +2025-10-17,Cursor,1598,856,2026-04-28T03:51:23.640037+00:00 +2025-10-17,Devin,122,64,2026-04-28T03:51:23.640037+00:00 +2025-10-17,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-17,Codegen,17,12,2026-04-28T03:51:23.640037+00:00 +2025-10-17,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-17,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-17,OpenHands,2,1,2026-04-28T03:51:23.640037+00:00 +2025-10-17,Open SWE,2,1,2026-04-28T03:51:23.640037+00:00 +2025-10-18,Codex,10450,2274,2026-04-28T03:51:23.640037+00:00 +2025-10-18,Copilot,83,60,2026-04-28T03:51:23.640037+00:00 +2025-10-18,Claude Code,81,35,2026-04-28T03:51:23.640037+00:00 +2025-10-18,Cursor,1563,757,2026-04-28T03:51:23.640037+00:00 +2025-10-18,Devin,135,54,2026-04-28T03:51:23.640037+00:00 +2025-10-18,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-18,Codegen,27,8,2026-04-28T03:51:23.640037+00:00 +2025-10-18,Jules,4,4,2026-04-28T03:51:23.640037+00:00 +2025-10-18,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-18,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-10-18,Open SWE,4,3,2026-04-28T03:51:23.640037+00:00 +2025-10-19,Codex,10898,2448,2026-04-28T03:51:23.640037+00:00 +2025-10-19,Copilot,92,60,2026-04-28T03:51:23.640037+00:00 +2025-10-19,Claude Code,101,30,2026-04-28T03:51:23.640037+00:00 +2025-10-19,Cursor,1614,809,2026-04-28T03:51:23.640037+00:00 +2025-10-19,Devin,90,45,2026-04-28T03:51:23.640037+00:00 +2025-10-19,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-19,Codegen,12,6,2026-04-28T03:51:23.640037+00:00 +2025-10-19,Jules,3,2,2026-04-28T03:51:23.640037+00:00 +2025-10-19,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-19,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2025-10-19,Open SWE,10,3,2026-04-28T03:51:23.640037+00:00 +2025-10-20,Codex,9462,2567,2026-04-28T03:51:23.640037+00:00 +2025-10-20,Copilot,116,72,2026-04-28T03:51:23.640037+00:00 +2025-10-20,Claude Code,782,650,2026-04-28T03:51:23.640037+00:00 +2025-10-20,Cursor,1207,642,2026-04-28T03:51:23.640037+00:00 +2025-10-20,Devin,122,73,2026-04-28T03:51:23.640037+00:00 +2025-10-20,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-20,Codegen,14,8,2026-04-28T03:51:23.640037+00:00 +2025-10-20,Jules,2,2,2026-04-28T03:51:23.640037+00:00 +2025-10-20,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-20,OpenHands,2,1,2026-04-28T03:51:23.640037+00:00 +2025-10-20,Open SWE,8,3,2026-04-28T03:51:23.640037+00:00 +2025-10-21,Codex,9503,2669,2026-04-28T03:51:23.640037+00:00 +2025-10-21,Copilot,226,96,2026-04-28T03:51:23.640037+00:00 +2025-10-21,Claude Code,2812,2160,2026-04-28T03:51:23.640037+00:00 +2025-10-21,Cursor,1628,864,2026-04-28T03:51:23.640037+00:00 +2025-10-21,Devin,285,67,2026-04-28T03:51:23.640037+00:00 +2025-10-21,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-21,Codegen,19,9,2026-04-28T03:51:23.640037+00:00 +2025-10-21,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-21,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-21,OpenHands,3,3,2026-04-28T03:51:23.640037+00:00 +2025-10-21,Open SWE,5,4,2026-04-28T03:51:23.640037+00:00 +2025-10-22,Codex,9808,2705,2026-04-28T03:51:23.640037+00:00 +2025-10-22,Copilot,361,94,2026-04-28T03:51:23.640037+00:00 +2025-10-22,Claude Code,2371,1733,2026-04-28T03:51:23.640037+00:00 +2025-10-22,Cursor,1968,908,2026-04-28T03:51:23.640037+00:00 +2025-10-22,Devin,135,71,2026-04-28T03:51:23.640037+00:00 +2025-10-22,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-22,Codegen,13,5,2026-04-28T03:51:23.640037+00:00 +2025-10-22,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-10-22,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-22,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-22,Open SWE,7,6,2026-04-28T03:51:23.640037+00:00 +2025-10-23,Codex,9670,2699,2026-04-28T03:51:23.640037+00:00 +2025-10-23,Copilot,135,69,2026-04-28T03:51:23.640037+00:00 +2025-10-23,Claude Code,2130,1494,2026-04-28T03:51:23.640037+00:00 +2025-10-23,Cursor,1857,889,2026-04-28T03:51:23.640037+00:00 +2025-10-23,Devin,157,83,2026-04-28T03:51:23.640037+00:00 +2025-10-23,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-23,Codegen,17,12,2026-04-28T03:51:23.640037+00:00 +2025-10-23,Jules,3,3,2026-04-28T03:51:23.640037+00:00 +2025-10-23,Gru,37,1,2026-04-28T03:51:23.640037+00:00 +2025-10-23,OpenHands,3,1,2026-04-28T03:51:23.640037+00:00 +2025-10-23,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2025-10-24,Codex,9281,2464,2026-04-28T03:51:23.640037+00:00 +2025-10-24,Copilot,102,68,2026-04-28T03:51:23.640037+00:00 +2025-10-24,Claude Code,2003,1346,2026-04-28T03:51:23.640037+00:00 +2025-10-24,Cursor,1759,786,2026-04-28T03:51:23.640037+00:00 +2025-10-24,Devin,151,78,2026-04-28T03:51:23.640037+00:00 +2025-10-24,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2025-10-24,Codegen,2,2,2026-04-28T03:51:23.640037+00:00 +2025-10-24,Jules,2,1,2026-04-28T03:51:23.640037+00:00 +2025-10-24,Gru,28,1,2026-04-28T03:51:23.640037+00:00 +2025-10-24,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2025-10-24,Open SWE,2,2,2026-04-28T03:51:23.640037+00:00 +2025-10-25,Codex,11238,2334,2026-04-28T03:51:23.640037+00:00 +2025-10-25,Copilot,340,61,2026-04-28T03:51:23.640037+00:00 +2025-10-25,Claude Code,2217,1378,2026-04-28T03:51:23.640037+00:00 +2025-10-25,Cursor,1041,360,2026-04-28T03:51:23.640037+00:00 +2025-10-25,Devin,121,59,2026-04-28T03:51:23.640037+00:00 +2025-10-25,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-25,Codegen,5,3,2026-04-28T03:51:23.640037+00:00 +2025-10-25,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-25,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-25,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-25,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2025-10-26,Codex,11001,2373,2026-04-28T03:51:23.640037+00:00 +2025-10-26,Copilot,211,87,2026-04-28T03:51:23.640037+00:00 +2025-10-26,Claude Code,2204,1251,2026-04-28T03:51:23.640037+00:00 +2025-10-26,Cursor,797,362,2026-04-28T03:51:23.640037+00:00 +2025-10-26,Devin,115,50,2026-04-28T03:51:23.640037+00:00 +2025-10-26,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-26,Codegen,4,3,2026-04-28T03:51:23.640037+00:00 +2025-10-26,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-26,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-26,OpenHands,4,3,2026-04-28T03:51:23.640037+00:00 +2025-10-26,Open SWE,56,3,2026-04-28T03:51:23.640037+00:00 +2025-10-27,Codex,8713,2508,2026-04-28T03:51:23.640037+00:00 +2025-10-27,Copilot,74,58,2026-04-28T03:51:23.640037+00:00 +2025-10-27,Claude Code,1610,1104,2026-04-28T03:51:23.640037+00:00 +2025-10-27,Cursor,801,362,2026-04-28T03:51:23.640037+00:00 +2025-10-27,Devin,120,64,2026-04-28T03:51:23.640037+00:00 +2025-10-27,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-27,Codegen,17,9,2026-04-28T03:51:23.640037+00:00 +2025-10-27,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-27,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-27,OpenHands,5,1,2026-04-28T03:51:23.640037+00:00 +2025-10-27,Open SWE,5,3,2026-04-28T03:51:23.640037+00:00 +2025-10-28,Codex,8905,2636,2026-04-28T03:51:23.640037+00:00 +2025-10-28,Copilot,529,86,2026-04-28T03:51:23.640037+00:00 +2025-10-28,Claude Code,1534,1088,2026-04-28T03:51:23.640037+00:00 +2025-10-28,Cursor,1344,387,2026-04-28T03:51:23.640037+00:00 +2025-10-28,Devin,140,79,2026-04-28T03:51:23.640037+00:00 +2025-10-28,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-28,Codegen,8,5,2026-04-28T03:51:23.640037+00:00 +2025-10-28,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-28,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-28,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-10-28,Open SWE,4,3,2026-04-28T03:51:23.640037+00:00 +2025-10-29,Codex,9098,2643,2026-04-28T03:51:23.640037+00:00 +2025-10-29,Copilot,311,77,2026-04-28T03:51:23.640037+00:00 +2025-10-29,Claude Code,1918,1213,2026-04-28T03:51:23.640037+00:00 +2025-10-29,Cursor,1225,450,2026-04-28T03:51:23.640037+00:00 +2025-10-29,Devin,91,52,2026-04-28T03:51:23.640037+00:00 +2025-10-29,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-29,Codegen,13,5,2026-04-28T03:51:23.640037+00:00 +2025-10-29,Jules,2,2,2026-04-28T03:51:23.640037+00:00 +2025-10-29,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-29,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2025-10-29,Open SWE,4,1,2026-04-28T03:51:23.640037+00:00 +2025-10-30,Codex,8650,2600,2026-04-28T03:51:23.640037+00:00 +2025-10-30,Copilot,126,93,2026-04-28T03:51:23.640037+00:00 +2025-10-30,Claude Code,2039,1326,2026-04-28T03:51:23.640037+00:00 +2025-10-30,Cursor,1226,546,2026-04-28T03:51:23.640037+00:00 +2025-10-30,Devin,123,65,2026-04-28T03:51:23.640037+00:00 +2025-10-30,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2025-10-30,Codegen,10,4,2026-04-28T03:51:23.640037+00:00 +2025-10-30,Jules,2,2,2026-04-28T03:51:23.640037+00:00 +2025-10-30,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-30,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-30,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2025-10-31,Codex,8027,2419,2026-04-28T03:51:23.640037+00:00 +2025-10-31,Copilot,375,64,2026-04-28T03:51:23.640037+00:00 +2025-10-31,Claude Code,2029,1260,2026-04-28T03:51:23.640037+00:00 +2025-10-31,Cursor,1018,512,2026-04-28T03:51:23.640037+00:00 +2025-10-31,Devin,116,56,2026-04-28T03:51:23.640037+00:00 +2025-10-31,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2025-10-31,Codegen,9,7,2026-04-28T03:51:23.640037+00:00 +2025-10-31,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-31,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-31,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-10-31,Open SWE,4,4,2026-04-28T03:51:23.640037+00:00 +2025-11-01,Codex,9177,2297,2026-04-28T03:51:23.640037+00:00 +2025-11-01,Copilot,107,85,2026-04-28T03:51:23.640037+00:00 +2025-11-01,Claude Code,2090,1245,2026-04-28T03:51:23.640037+00:00 +2025-11-01,Cursor,932,449,2026-04-28T03:51:23.640037+00:00 +2025-11-01,Devin,65,39,2026-04-28T03:51:23.640037+00:00 +2025-11-01,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-01,Codegen,11,6,2026-04-28T03:51:23.640037+00:00 +2025-11-01,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-01,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-01,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-01,Open SWE,3,1,2026-04-28T03:51:23.640037+00:00 +2025-11-02,Codex,7178,2191,2026-04-28T03:51:23.640037+00:00 +2025-11-02,Copilot,399,89,2026-04-28T03:51:23.640037+00:00 +2025-11-02,Claude Code,2338,1321,2026-04-28T03:51:23.640037+00:00 +2025-11-02,Cursor,1048,429,2026-04-28T03:51:23.640037+00:00 +2025-11-02,Devin,108,49,2026-04-28T03:51:23.640037+00:00 +2025-11-02,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-02,Codegen,11,7,2026-04-28T03:51:23.640037+00:00 +2025-11-02,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-11-02,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-02,OpenHands,3,2,2026-04-28T03:51:23.640037+00:00 +2025-11-02,Open SWE,3,3,2026-04-28T03:51:23.640037+00:00 +2025-11-03,Codex,5764,2251,2026-04-28T03:51:23.640037+00:00 +2025-11-03,Copilot,99,87,2026-04-28T03:51:23.640037+00:00 +2025-11-03,Claude Code,2025,1201,2026-04-28T03:51:23.640037+00:00 +2025-11-03,Cursor,876,460,2026-04-28T03:51:23.640037+00:00 +2025-11-03,Devin,118,51,2026-04-28T03:51:23.640037+00:00 +2025-11-03,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-03,Codegen,6,5,2026-04-28T03:51:23.640037+00:00 +2025-11-03,Jules,2,1,2026-04-28T03:51:23.640037+00:00 +2025-11-03,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-03,OpenHands,5,3,2026-04-28T03:51:23.640037+00:00 +2025-11-03,Open SWE,3,1,2026-04-28T03:51:23.640037+00:00 +2025-11-04,Codex,4984,2115,2026-04-28T03:51:23.640037+00:00 +2025-11-04,Copilot,152,93,2026-04-28T03:51:23.640037+00:00 +2025-11-04,Claude Code,3825,2645,2026-04-28T03:51:23.640037+00:00 +2025-11-04,Cursor,1138,528,2026-04-28T03:51:23.640037+00:00 +2025-11-04,Devin,131,61,2026-04-28T03:51:23.640037+00:00 +2025-11-04,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-04,Codegen,14,8,2026-04-28T03:51:23.640037+00:00 +2025-11-04,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-04,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-04,OpenHands,4,3,2026-04-28T03:51:23.640037+00:00 +2025-11-04,Open SWE,4,4,2026-04-28T03:51:23.640037+00:00 +2025-11-05,Codex,4831,2124,2026-04-28T03:51:23.640037+00:00 +2025-11-05,Copilot,141,83,2026-04-28T03:51:23.640037+00:00 +2025-11-05,Claude Code,7618,4722,2026-04-28T03:51:23.640037+00:00 +2025-11-05,Cursor,1085,500,2026-04-28T03:51:23.640037+00:00 +2025-11-05,Devin,195,87,2026-04-28T03:51:23.640037+00:00 +2025-11-05,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-05,Codegen,5,4,2026-04-28T03:51:23.640037+00:00 +2025-11-05,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-11-05,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-05,OpenHands,3,3,2026-04-28T03:51:23.640037+00:00 +2025-11-05,Open SWE,5,2,2026-04-28T03:51:23.640037+00:00 +2025-11-06,Codex,5941,2221,2026-04-28T03:51:23.640037+00:00 +2025-11-06,Copilot,169,72,2026-04-28T03:51:23.640037+00:00 +2025-11-06,Claude Code,6808,3956,2026-04-28T03:51:23.640037+00:00 +2025-11-06,Cursor,1039,484,2026-04-28T03:51:23.640037+00:00 +2025-11-06,Devin,338,71,2026-04-28T03:51:23.640037+00:00 +2025-11-06,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-06,Codegen,10,5,2026-04-28T03:51:23.640037+00:00 +2025-11-06,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-11-06,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-06,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-06,Open SWE,8,2,2026-04-28T03:51:23.640037+00:00 +2025-11-07,Codex,6098,2212,2026-04-28T03:51:23.640037+00:00 +2025-11-07,Copilot,304,65,2026-04-28T03:51:23.640037+00:00 +2025-11-07,Claude Code,6489,3561,2026-04-28T03:51:23.640037+00:00 +2025-11-07,Cursor,972,470,2026-04-28T03:51:23.640037+00:00 +2025-11-07,Devin,130,71,2026-04-28T03:51:23.640037+00:00 +2025-11-07,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-07,Codegen,11,6,2026-04-28T03:51:23.640037+00:00 +2025-11-07,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-11-07,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-07,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-07,Open SWE,19,4,2026-04-28T03:51:23.640037+00:00 +2025-11-08,Codex,6680,2064,2026-04-28T03:51:23.640037+00:00 +2025-11-08,Copilot,107,81,2026-04-28T03:51:23.640037+00:00 +2025-11-08,Claude Code,7986,3957,2026-04-28T03:51:23.640037+00:00 +2025-11-08,Cursor,1078,468,2026-04-28T03:51:23.640037+00:00 +2025-11-08,Devin,87,34,2026-04-28T03:51:23.640037+00:00 +2025-11-08,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-08,Codegen,10,6,2026-04-28T03:51:23.640037+00:00 +2025-11-08,Jules,3,2,2026-04-28T03:51:23.640037+00:00 +2025-11-08,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-08,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-11-08,Open SWE,3,3,2026-04-28T03:51:23.640037+00:00 +2025-11-09,Codex,6946,2103,2026-04-28T03:51:23.640037+00:00 +2025-11-09,Copilot,102,74,2026-04-28T03:51:23.640037+00:00 +2025-11-09,Claude Code,8231,3940,2026-04-28T03:51:23.640037+00:00 +2025-11-09,Cursor,809,387,2026-04-28T03:51:23.640037+00:00 +2025-11-09,Devin,129,51,2026-04-28T03:51:23.640037+00:00 +2025-11-09,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-09,Codegen,9,3,2026-04-28T03:51:23.640037+00:00 +2025-11-09,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-09,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-09,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-09,Open SWE,3,2,2026-04-28T03:51:23.640037+00:00 +2025-11-10,Codex,5888,2141,2026-04-28T03:51:23.640037+00:00 +2025-11-10,Copilot,828,70,2026-04-28T03:51:23.640037+00:00 +2025-11-10,Claude Code,6383,3605,2026-04-28T03:51:23.640037+00:00 +2025-11-10,Cursor,1207,494,2026-04-28T03:51:23.640037+00:00 +2025-11-10,Devin,117,56,2026-04-28T03:51:23.640037+00:00 +2025-11-10,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-10,Codegen,4,4,2026-04-28T03:51:23.640037+00:00 +2025-11-10,Jules,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-10,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-10,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2025-11-10,Open SWE,65,3,2026-04-28T03:51:23.640037+00:00 +2025-11-11,Codex,5602,2087,2026-04-28T03:51:23.640037+00:00 +2025-11-11,Copilot,291,78,2026-04-28T03:51:23.640037+00:00 +2025-11-11,Claude Code,5915,3389,2026-04-28T03:51:23.640037+00:00 +2025-11-11,Cursor,1004,502,2026-04-28T03:51:23.640037+00:00 +2025-11-11,Devin,178,59,2026-04-28T03:51:23.640037+00:00 +2025-11-11,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-11,Codegen,5,4,2026-04-28T03:51:23.640037+00:00 +2025-11-11,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-11-11,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-11,OpenHands,2,1,2026-04-28T03:51:23.640037+00:00 +2025-11-11,Open SWE,4,3,2026-04-28T03:51:23.640037+00:00 +2025-11-12,Codex,6110,2105,2026-04-28T03:51:23.640037+00:00 +2025-11-12,Copilot,135,93,2026-04-28T03:51:23.640037+00:00 +2025-11-12,Claude Code,5964,3523,2026-04-28T03:51:23.640037+00:00 +2025-11-12,Cursor,835,403,2026-04-28T03:51:23.640037+00:00 +2025-11-12,Devin,130,63,2026-04-28T03:51:23.640037+00:00 +2025-11-12,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2025-11-12,Codegen,17,9,2026-04-28T03:51:23.640037+00:00 +2025-11-12,Jules,2,1,2026-04-28T03:51:23.640037+00:00 +2025-11-12,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-12,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-11-12,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-13,Codex,5971,2161,2026-04-28T03:51:23.640037+00:00 +2025-11-13,Copilot,102,77,2026-04-28T03:51:23.640037+00:00 +2025-11-13,Claude Code,7535,4606,2026-04-28T03:51:23.640037+00:00 +2025-11-13,Cursor,848,389,2026-04-28T03:51:23.640037+00:00 +2025-11-13,Devin,160,72,2026-04-28T03:51:23.640037+00:00 +2025-11-13,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-13,Codegen,14,9,2026-04-28T03:51:23.640037+00:00 +2025-11-13,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-11-13,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-13,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2025-11-13,Open SWE,4,2,2026-04-28T03:51:23.640037+00:00 +2025-11-14,Codex,6321,2185,2026-04-28T03:51:23.640037+00:00 +2025-11-14,Copilot,107,65,2026-04-28T03:51:23.640037+00:00 +2025-11-14,Claude Code,8721,4861,2026-04-28T03:51:23.640037+00:00 +2025-11-14,Cursor,820,399,2026-04-28T03:51:23.640037+00:00 +2025-11-14,Devin,145,77,2026-04-28T03:51:23.640037+00:00 +2025-11-14,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-14,Codegen,17,11,2026-04-28T03:51:23.640037+00:00 +2025-11-14,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-11-14,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-14,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-14,Open SWE,4,2,2026-04-28T03:51:23.640037+00:00 +2025-11-15,Codex,6942,2021,2026-04-28T03:51:23.640037+00:00 +2025-11-15,Copilot,96,65,2026-04-28T03:51:23.640037+00:00 +2025-11-15,Claude Code,10877,5253,2026-04-28T03:51:23.640037+00:00 +2025-11-15,Cursor,801,334,2026-04-28T03:51:23.640037+00:00 +2025-11-15,Devin,118,44,2026-04-28T03:51:23.640037+00:00 +2025-11-15,Sweep,5,1,2026-04-28T03:51:23.640037+00:00 +2025-11-15,Codegen,2,2,2026-04-28T03:51:23.640037+00:00 +2025-11-15,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-11-15,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-15,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-15,Open SWE,14,2,2026-04-28T03:51:23.640037+00:00 +2025-11-16,Codex,6852,2056,2026-04-28T03:51:23.640037+00:00 +2025-11-16,Copilot,75,52,2026-04-28T03:51:23.640037+00:00 +2025-11-16,Claude Code,11801,5769,2026-04-28T03:51:23.640037+00:00 +2025-11-16,Cursor,897,351,2026-04-28T03:51:23.640037+00:00 +2025-11-16,Devin,115,39,2026-04-28T03:51:23.640037+00:00 +2025-11-16,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-16,Codegen,10,7,2026-04-28T03:51:23.640037+00:00 +2025-11-16,Jules,6,5,2026-04-28T03:51:23.640037+00:00 +2025-11-16,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-16,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-11-16,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2025-11-17,Codex,6444,2178,2026-04-28T03:51:23.640037+00:00 +2025-11-17,Copilot,107,75,2026-04-28T03:51:23.640037+00:00 +2025-11-17,Claude Code,11564,6042,2026-04-28T03:51:23.640037+00:00 +2025-11-17,Cursor,890,403,2026-04-28T03:51:23.640037+00:00 +2025-11-17,Devin,106,52,2026-04-28T03:51:23.640037+00:00 +2025-11-17,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-17,Codegen,6,4,2026-04-28T03:51:23.640037+00:00 +2025-11-17,Jules,1,1,2026-04-28T03:51:23.640037+00:00 +2025-11-17,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-17,OpenHands,2,1,2026-04-28T03:51:23.640037+00:00 +2025-11-17,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-18,Codex,5639,2062,2026-04-28T03:51:23.640037+00:00 +2025-11-18,Copilot,131,90,2026-04-28T03:51:23.640037+00:00 +2025-11-18,Claude Code,11709,6075,2026-04-28T03:51:23.640037+00:00 +2025-11-18,Cursor,917,382,2026-04-28T03:51:23.640037+00:00 +2025-11-18,Devin,129,68,2026-04-28T03:51:23.640037+00:00 +2025-11-18,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-18,Codegen,19,4,2026-04-28T03:51:23.640037+00:00 +2025-11-18,Jules,7,5,2026-04-28T03:51:23.640037+00:00 +2025-11-18,Gru,27,1,2026-04-28T03:51:23.640037+00:00 +2025-11-18,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-11-18,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2025-11-19,Codex,5621,2043,2026-04-28T03:51:23.640037+00:00 +2025-11-19,Copilot,120,77,2026-04-28T03:51:23.640037+00:00 +2025-11-19,Claude Code,8024,4313,2026-04-28T03:51:23.640037+00:00 +2025-11-19,Cursor,787,355,2026-04-28T03:51:23.640037+00:00 +2025-11-19,Devin,195,60,2026-04-28T03:51:23.640037+00:00 +2025-11-19,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-19,Codegen,14,6,2026-04-28T03:51:23.640037+00:00 +2025-11-19,Jules,5,5,2026-04-28T03:51:23.640037+00:00 +2025-11-19,Gru,1,1,2026-04-28T03:51:23.640037+00:00 +2025-11-19,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2025-11-19,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-20,Codex,6003,2128,2026-04-28T03:51:23.640037+00:00 +2025-11-20,Copilot,178,80,2026-04-28T03:51:23.640037+00:00 +2025-11-20,Claude Code,6265,3309,2026-04-28T03:51:23.640037+00:00 +2025-11-20,Cursor,726,373,2026-04-28T03:51:23.640037+00:00 +2025-11-20,Devin,170,75,2026-04-28T03:51:23.640037+00:00 +2025-11-20,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-20,Codegen,12,5,2026-04-28T03:51:23.640037+00:00 +2025-11-20,Jules,4,4,2026-04-28T03:51:23.640037+00:00 +2025-11-20,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-20,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-11-20,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-21,Codex,6424,2149,2026-04-28T03:51:23.640037+00:00 +2025-11-21,Copilot,84,53,2026-04-28T03:51:23.640037+00:00 +2025-11-21,Claude Code,6110,3223,2026-04-28T03:51:23.640037+00:00 +2025-11-21,Cursor,984,335,2026-04-28T03:51:23.640037+00:00 +2025-11-21,Devin,201,68,2026-04-28T03:51:23.640037+00:00 +2025-11-21,Sweep,3,2,2026-04-28T03:51:23.640037+00:00 +2025-11-21,Codegen,18,6,2026-04-28T03:51:23.640037+00:00 +2025-11-21,Jules,4,3,2026-04-28T03:51:23.640037+00:00 +2025-11-21,Gru,1,1,2026-04-28T03:51:23.640037+00:00 +2025-11-21,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-21,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-22,Codex,7045,2008,2026-04-28T03:51:23.640037+00:00 +2025-11-22,Copilot,96,65,2026-04-28T03:51:23.640037+00:00 +2025-11-22,Claude Code,7371,3499,2026-04-28T03:51:23.640037+00:00 +2025-11-22,Cursor,798,282,2026-04-28T03:51:23.640037+00:00 +2025-11-22,Devin,144,51,2026-04-28T03:51:23.640037+00:00 +2025-11-22,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-22,Codegen,3,3,2026-04-28T03:51:23.640037+00:00 +2025-11-22,Jules,12,5,2026-04-28T03:51:23.640037+00:00 +2025-11-22,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-22,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-22,Open SWE,3,2,2026-04-28T03:51:23.640037+00:00 +2025-11-23,Codex,7430,2109,2026-04-28T03:51:23.640037+00:00 +2025-11-23,Copilot,61,47,2026-04-28T03:51:23.640037+00:00 +2025-11-23,Claude Code,7318,3937,2026-04-28T03:51:23.640037+00:00 +2025-11-23,Cursor,875,304,2026-04-28T03:51:23.640037+00:00 +2025-11-23,Devin,105,43,2026-04-28T03:51:23.640037+00:00 +2025-11-23,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-23,Codegen,2,2,2026-04-28T03:51:23.640037+00:00 +2025-11-23,Jules,18,12,2026-04-28T03:51:23.640037+00:00 +2025-11-23,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-23,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-11-23,Open SWE,4,1,2026-04-28T03:51:23.640037+00:00 +2025-11-24,Codex,6342,2103,2026-04-28T03:51:23.640037+00:00 +2025-11-24,Copilot,135,77,2026-04-28T03:51:23.640037+00:00 +2025-11-24,Claude Code,3539,2094,2026-04-28T03:51:23.640037+00:00 +2025-11-24,Cursor,816,369,2026-04-28T03:51:23.640037+00:00 +2025-11-24,Devin,126,56,2026-04-28T03:51:23.640037+00:00 +2025-11-24,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-24,Codegen,1,1,2026-04-28T03:51:23.640037+00:00 +2025-11-24,Jules,13,12,2026-04-28T03:51:23.640037+00:00 +2025-11-24,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-24,OpenHands,2,1,2026-04-28T03:51:23.640037+00:00 +2025-11-24,Open SWE,2,1,2026-04-28T03:51:23.640037+00:00 +2025-11-25,Codex,6403,2112,2026-04-28T03:51:23.640037+00:00 +2025-11-25,Copilot,132,89,2026-04-28T03:51:23.640037+00:00 +2025-11-25,Claude Code,3700,2140,2026-04-28T03:51:23.640037+00:00 +2025-11-25,Cursor,799,362,2026-04-28T03:51:23.640037+00:00 +2025-11-25,Devin,124,54,2026-04-28T03:51:23.640037+00:00 +2025-11-25,Sweep,12,1,2026-04-28T03:51:23.640037+00:00 +2025-11-25,Codegen,4,3,2026-04-28T03:51:23.640037+00:00 +2025-11-25,Jules,25,23,2026-04-28T03:51:23.640037+00:00 +2025-11-25,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-25,OpenHands,5,3,2026-04-28T03:51:23.640037+00:00 +2025-11-25,Open SWE,16,2,2026-04-28T03:51:23.640037+00:00 +2025-11-26,Codex,6217,2073,2026-04-28T03:51:23.640037+00:00 +2025-11-26,Copilot,130,74,2026-04-28T03:51:23.640037+00:00 +2025-11-26,Claude Code,3950,2159,2026-04-28T03:51:23.640037+00:00 +2025-11-26,Cursor,789,357,2026-04-28T03:51:23.640037+00:00 +2025-11-26,Devin,127,51,2026-04-28T03:51:23.640037+00:00 +2025-11-26,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-26,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-26,Jules,16,15,2026-04-28T03:51:23.640037+00:00 +2025-11-26,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-26,OpenHands,5,3,2026-04-28T03:51:23.640037+00:00 +2025-11-26,Open SWE,3,3,2026-04-28T03:51:23.640037+00:00 +2025-11-27,Codex,5461,1895,2026-04-28T03:51:23.640037+00:00 +2025-11-27,Copilot,148,103,2026-04-28T03:51:23.640037+00:00 +2025-11-27,Claude Code,3388,1808,2026-04-28T03:51:23.640037+00:00 +2025-11-27,Cursor,756,332,2026-04-28T03:51:23.640037+00:00 +2025-11-27,Devin,101,37,2026-04-28T03:51:23.640037+00:00 +2025-11-27,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-27,Codegen,4,4,2026-04-28T03:51:23.640037+00:00 +2025-11-27,Jules,46,34,2026-04-28T03:51:23.640037+00:00 +2025-11-27,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-27,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-27,Open SWE,6,2,2026-04-28T03:51:23.640037+00:00 +2025-11-28,Codex,5169,1743,2026-04-28T03:51:23.640037+00:00 +2025-11-28,Copilot,100,59,2026-04-28T03:51:23.640037+00:00 +2025-11-28,Claude Code,3384,1742,2026-04-28T03:51:23.640037+00:00 +2025-11-28,Cursor,787,320,2026-04-28T03:51:23.640037+00:00 +2025-11-28,Devin,97,36,2026-04-28T03:51:23.640037+00:00 +2025-11-28,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-28,Codegen,6,3,2026-04-28T03:51:23.640037+00:00 +2025-11-28,Jules,56,37,2026-04-28T03:51:23.640037+00:00 +2025-11-28,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-28,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-28,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-29,Codex,5071,1583,2026-04-28T03:51:23.640037+00:00 +2025-11-29,Copilot,77,49,2026-04-28T03:51:23.640037+00:00 +2025-11-29,Claude Code,3703,1805,2026-04-28T03:51:23.640037+00:00 +2025-11-29,Cursor,777,278,2026-04-28T03:51:23.640037+00:00 +2025-11-29,Devin,108,40,2026-04-28T03:51:23.640037+00:00 +2025-11-29,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-29,Codegen,1,1,2026-04-28T03:51:23.640037+00:00 +2025-11-29,Jules,48,31,2026-04-28T03:51:23.640037+00:00 +2025-11-29,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-29,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-11-29,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2025-11-30,Codex,6014,1740,2026-04-28T03:51:23.640037+00:00 +2025-11-30,Copilot,92,62,2026-04-28T03:51:23.640037+00:00 +2025-11-30,Claude Code,3294,1624,2026-04-28T03:51:23.640037+00:00 +2025-11-30,Cursor,701,264,2026-04-28T03:51:23.640037+00:00 +2025-11-30,Devin,85,35,2026-04-28T03:51:23.640037+00:00 +2025-11-30,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-30,Codegen,4,3,2026-04-28T03:51:23.640037+00:00 +2025-11-30,Jules,56,38,2026-04-28T03:51:23.640037+00:00 +2025-11-30,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-30,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-11-30,Open SWE,3,2,2026-04-28T03:51:23.640037+00:00 +2025-12-01,Codex,4909,1805,2026-04-28T03:51:23.640037+00:00 +2025-12-01,Copilot,93,63,2026-04-28T03:51:23.640037+00:00 +2025-12-01,Claude Code,2467,1436,2026-04-28T03:51:23.640037+00:00 +2025-12-01,Cursor,645,306,2026-04-28T03:51:23.640037+00:00 +2025-12-01,Devin,147,62,2026-04-28T03:51:23.640037+00:00 +2025-12-01,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-01,Codegen,6,3,2026-04-28T03:51:23.640037+00:00 +2025-12-01,Jules,44,32,2026-04-28T03:51:23.640037+00:00 +2025-12-01,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-01,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-12-01,Open SWE,3,1,2026-04-28T03:51:23.640037+00:00 +2025-12-02,Codex,5644,1847,2026-04-28T03:51:23.640037+00:00 +2025-12-02,Copilot,124,82,2026-04-28T03:51:23.640037+00:00 +2025-12-02,Claude Code,2687,1613,2026-04-28T03:51:23.640037+00:00 +2025-12-02,Cursor,731,320,2026-04-28T03:51:23.640037+00:00 +2025-12-02,Devin,270,59,2026-04-28T03:51:23.640037+00:00 +2025-12-02,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-02,Codegen,9,7,2026-04-28T03:51:23.640037+00:00 +2025-12-02,Jules,45,37,2026-04-28T03:51:23.640037+00:00 +2025-12-02,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-02,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-12-02,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-03,Codex,5541,1842,2026-04-28T03:51:23.640037+00:00 +2025-12-03,Copilot,106,70,2026-04-28T03:51:23.640037+00:00 +2025-12-03,Claude Code,2970,1691,2026-04-28T03:51:23.640037+00:00 +2025-12-03,Cursor,883,379,2026-04-28T03:51:23.640037+00:00 +2025-12-03,Devin,161,69,2026-04-28T03:51:23.640037+00:00 +2025-12-03,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-03,Codegen,5,4,2026-04-28T03:51:23.640037+00:00 +2025-12-03,Jules,51,38,2026-04-28T03:51:23.640037+00:00 +2025-12-03,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-03,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-12-03,Open SWE,4,1,2026-04-28T03:51:23.640037+00:00 +2025-12-04,Codex,5339,1782,2026-04-28T03:51:23.640037+00:00 +2025-12-04,Copilot,92,64,2026-04-28T03:51:23.640037+00:00 +2025-12-04,Claude Code,2999,1715,2026-04-28T03:51:23.640037+00:00 +2025-12-04,Cursor,909,384,2026-04-28T03:51:23.640037+00:00 +2025-12-04,Devin,152,70,2026-04-28T03:51:23.640037+00:00 +2025-12-04,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-04,Codegen,5,4,2026-04-28T03:51:23.640037+00:00 +2025-12-04,Jules,66,42,2026-04-28T03:51:23.640037+00:00 +2025-12-04,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-04,OpenHands,2,1,2026-04-28T03:51:23.640037+00:00 +2025-12-04,Open SWE,13,2,2026-04-28T03:51:23.640037+00:00 +2025-12-05,Codex,5538,1747,2026-04-28T03:51:23.640037+00:00 +2025-12-05,Copilot,89,69,2026-04-28T03:51:23.640037+00:00 +2025-12-05,Claude Code,2881,1613,2026-04-28T03:51:23.640037+00:00 +2025-12-05,Cursor,850,354,2026-04-28T03:51:23.640037+00:00 +2025-12-05,Devin,146,59,2026-04-28T03:51:23.640037+00:00 +2025-12-05,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-05,Codegen,6,5,2026-04-28T03:51:23.640037+00:00 +2025-12-05,Jules,43,35,2026-04-28T03:51:23.640037+00:00 +2025-12-05,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-05,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-12-05,Open SWE,5,2,2026-04-28T03:51:23.640037+00:00 +2025-12-06,Codex,5651,1622,2026-04-28T03:51:23.640037+00:00 +2025-12-06,Copilot,115,64,2026-04-28T03:51:23.640037+00:00 +2025-12-06,Claude Code,3364,1674,2026-04-28T03:51:23.640037+00:00 +2025-12-06,Cursor,817,307,2026-04-28T03:51:23.640037+00:00 +2025-12-06,Devin,91,40,2026-04-28T03:51:23.640037+00:00 +2025-12-06,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-06,Codegen,1,1,2026-04-28T03:51:23.640037+00:00 +2025-12-06,Jules,45,43,2026-04-28T03:51:23.640037+00:00 +2025-12-06,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-06,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-12-06,Open SWE,2,2,2026-04-28T03:51:23.640037+00:00 +2025-12-07,Codex,5616,1601,2026-04-28T03:51:23.640037+00:00 +2025-12-07,Copilot,584,72,2026-04-28T03:51:23.640037+00:00 +2025-12-07,Claude Code,3340,1587,2026-04-28T03:51:23.640037+00:00 +2025-12-07,Cursor,853,321,2026-04-28T03:51:23.640037+00:00 +2025-12-07,Devin,123,46,2026-04-28T03:51:23.640037+00:00 +2025-12-07,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-07,Codegen,12,7,2026-04-28T03:51:23.640037+00:00 +2025-12-07,Jules,39,35,2026-04-28T03:51:23.640037+00:00 +2025-12-07,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-07,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-07,Open SWE,4,3,2026-04-28T03:51:23.640037+00:00 +2025-12-08,Codex,4858,1685,2026-04-28T03:51:23.640037+00:00 +2025-12-08,Copilot,101,56,2026-04-28T03:51:23.640037+00:00 +2025-12-08,Claude Code,3052,1665,2026-04-28T03:51:23.640037+00:00 +2025-12-08,Cursor,967,409,2026-04-28T03:51:23.640037+00:00 +2025-12-08,Devin,170,71,2026-04-28T03:51:23.640037+00:00 +2025-12-08,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-08,Codegen,44,9,2026-04-28T03:51:23.640037+00:00 +2025-12-08,Jules,25,24,2026-04-28T03:51:23.640037+00:00 +2025-12-08,Gru,1,1,2026-04-28T03:51:23.640037+00:00 +2025-12-08,OpenHands,4,2,2026-04-28T03:51:23.640037+00:00 +2025-12-08,Open SWE,11,5,2026-04-28T03:51:23.640037+00:00 +2025-12-09,Codex,4534,1590,2026-04-28T03:51:23.640037+00:00 +2025-12-09,Copilot,146,90,2026-04-28T03:51:23.640037+00:00 +2025-12-09,Claude Code,2952,1614,2026-04-28T03:51:23.640037+00:00 +2025-12-09,Cursor,857,393,2026-04-28T03:51:23.640037+00:00 +2025-12-09,Devin,161,71,2026-04-28T03:51:23.640037+00:00 +2025-12-09,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-09,Codegen,9,6,2026-04-28T03:51:23.640037+00:00 +2025-12-09,Jules,44,36,2026-04-28T03:51:23.640037+00:00 +2025-12-09,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-09,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-12-09,Open SWE,6,2,2026-04-28T03:51:23.640037+00:00 +2025-12-10,Codex,4973,1633,2026-04-28T03:51:23.640037+00:00 +2025-12-10,Copilot,130,75,2026-04-28T03:51:23.640037+00:00 +2025-12-10,Claude Code,3081,1605,2026-04-28T03:51:23.640037+00:00 +2025-12-10,Cursor,699,361,2026-04-28T03:51:23.640037+00:00 +2025-12-10,Devin,141,59,2026-04-28T03:51:23.640037+00:00 +2025-12-10,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-10,Codegen,4,3,2026-04-28T03:51:23.640037+00:00 +2025-12-10,Jules,31,28,2026-04-28T03:51:23.640037+00:00 +2025-12-10,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-10,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-12-10,Open SWE,2,2,2026-04-28T03:51:23.640037+00:00 +2025-12-11,Codex,4967,1659,2026-04-28T03:51:23.640037+00:00 +2025-12-11,Copilot,177,91,2026-04-28T03:51:23.640037+00:00 +2025-12-11,Claude Code,3166,1539,2026-04-28T03:51:23.640037+00:00 +2025-12-11,Cursor,779,366,2026-04-28T03:51:23.640037+00:00 +2025-12-11,Devin,123,57,2026-04-28T03:51:23.640037+00:00 +2025-12-11,Sweep,3,1,2026-04-28T03:51:23.640037+00:00 +2025-12-11,Codegen,4,3,2026-04-28T03:51:23.640037+00:00 +2025-12-11,Jules,37,34,2026-04-28T03:51:23.640037+00:00 +2025-12-11,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-11,OpenHands,3,3,2026-04-28T03:51:23.640037+00:00 +2025-12-11,Open SWE,3,2,2026-04-28T03:51:23.640037+00:00 +2025-12-12,Codex,4725,1619,2026-04-28T03:51:23.640037+00:00 +2025-12-12,Copilot,215,89,2026-04-28T03:51:23.640037+00:00 +2025-12-12,Claude Code,2757,1491,2026-04-28T03:51:23.640037+00:00 +2025-12-12,Cursor,819,370,2026-04-28T03:51:23.640037+00:00 +2025-12-12,Devin,144,82,2026-04-28T03:51:23.640037+00:00 +2025-12-12,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-12,Codegen,13,7,2026-04-28T03:51:23.640037+00:00 +2025-12-12,Jules,31,27,2026-04-28T03:51:23.640037+00:00 +2025-12-12,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-12,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-12,Open SWE,4,1,2026-04-28T03:51:23.640037+00:00 +2025-12-13,Codex,4929,1544,2026-04-28T03:51:23.640037+00:00 +2025-12-13,Copilot,97,69,2026-04-28T03:51:23.640037+00:00 +2025-12-13,Claude Code,3332,1550,2026-04-28T03:51:23.640037+00:00 +2025-12-13,Cursor,613,259,2026-04-28T03:51:23.640037+00:00 +2025-12-13,Devin,121,50,2026-04-28T03:51:23.640037+00:00 +2025-12-13,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-13,Codegen,13,2,2026-04-28T03:51:23.640037+00:00 +2025-12-13,Jules,32,28,2026-04-28T03:51:23.640037+00:00 +2025-12-13,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-13,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-13,Open SWE,11,3,2026-04-28T03:51:23.640037+00:00 +2025-12-14,Codex,5168,1588,2026-04-28T03:51:23.640037+00:00 +2025-12-14,Copilot,109,63,2026-04-28T03:51:23.640037+00:00 +2025-12-14,Claude Code,3144,1475,2026-04-28T03:51:23.640037+00:00 +2025-12-14,Cursor,713,287,2026-04-28T03:51:23.640037+00:00 +2025-12-14,Devin,111,34,2026-04-28T03:51:23.640037+00:00 +2025-12-14,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-14,Codegen,9,7,2026-04-28T03:51:23.640037+00:00 +2025-12-14,Jules,43,26,2026-04-28T03:51:23.640037+00:00 +2025-12-14,Gru,31,1,2026-04-28T03:51:23.640037+00:00 +2025-12-14,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-14,Open SWE,26,2,2026-04-28T03:51:23.640037+00:00 +2025-12-15,Codex,4238,1604,2026-04-28T03:51:23.640037+00:00 +2025-12-15,Copilot,99,76,2026-04-28T03:51:23.640037+00:00 +2025-12-15,Claude Code,2601,1422,2026-04-28T03:51:23.640037+00:00 +2025-12-15,Cursor,775,340,2026-04-28T03:51:23.640037+00:00 +2025-12-15,Devin,138,63,2026-04-28T03:51:23.640037+00:00 +2025-12-15,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-15,Codegen,11,6,2026-04-28T03:51:23.640037+00:00 +2025-12-15,Jules,34,29,2026-04-28T03:51:23.640037+00:00 +2025-12-15,Gru,1,1,2026-04-28T03:51:23.640037+00:00 +2025-12-15,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-12-15,Open SWE,12,1,2026-04-28T03:51:23.640037+00:00 +2025-12-16,Codex,4685,1650,2026-04-28T03:51:23.640037+00:00 +2025-12-16,Copilot,123,87,2026-04-28T03:51:23.640037+00:00 +2025-12-16,Claude Code,2889,1580,2026-04-28T03:51:23.640037+00:00 +2025-12-16,Cursor,748,389,2026-04-28T03:51:23.640037+00:00 +2025-12-16,Devin,173,80,2026-04-28T03:51:23.640037+00:00 +2025-12-16,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-16,Codegen,6,4,2026-04-28T03:51:23.640037+00:00 +2025-12-16,Jules,30,26,2026-04-28T03:51:23.640037+00:00 +2025-12-16,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-16,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2025-12-16,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-17,Codex,4517,1571,2026-04-28T03:51:23.640037+00:00 +2025-12-17,Copilot,135,87,2026-04-28T03:51:23.640037+00:00 +2025-12-17,Claude Code,3194,1741,2026-04-28T03:51:23.640037+00:00 +2025-12-17,Cursor,747,348,2026-04-28T03:51:23.640037+00:00 +2025-12-17,Devin,225,98,2026-04-28T03:51:23.640037+00:00 +2025-12-17,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-17,Codegen,9,6,2026-04-28T03:51:23.640037+00:00 +2025-12-17,Jules,24,24,2026-04-28T03:51:23.640037+00:00 +2025-12-17,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-17,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-12-17,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-18,Codex,4957,1644,2026-04-28T03:51:23.640037+00:00 +2025-12-18,Copilot,184,71,2026-04-28T03:51:23.640037+00:00 +2025-12-18,Claude Code,3105,1553,2026-04-28T03:51:23.640037+00:00 +2025-12-18,Cursor,780,345,2026-04-28T03:51:23.640037+00:00 +2025-12-18,Devin,214,82,2026-04-28T03:51:23.640037+00:00 +2025-12-18,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-18,Codegen,9,7,2026-04-28T03:51:23.640037+00:00 +2025-12-18,Jules,24,21,2026-04-28T03:51:23.640037+00:00 +2025-12-18,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-18,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-18,Open SWE,13,3,2026-04-28T03:51:23.640037+00:00 +2025-12-19,Codex,5248,1662,2026-04-28T03:51:23.640037+00:00 +2025-12-19,Copilot,408,71,2026-04-28T03:51:23.640037+00:00 +2025-12-19,Claude Code,2808,1466,2026-04-28T03:51:23.640037+00:00 +2025-12-19,Cursor,637,294,2026-04-28T03:51:23.640037+00:00 +2025-12-19,Devin,186,72,2026-04-28T03:51:23.640037+00:00 +2025-12-19,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-19,Codegen,1,1,2026-04-28T03:51:23.640037+00:00 +2025-12-19,Jules,31,27,2026-04-28T03:51:23.640037+00:00 +2025-12-19,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-19,OpenHands,4,4,2026-04-28T03:51:23.640037+00:00 +2025-12-19,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-20,Codex,5683,1510,2026-04-28T03:51:23.640037+00:00 +2025-12-20,Copilot,129,72,2026-04-28T03:51:23.640037+00:00 +2025-12-20,Claude Code,3046,1496,2026-04-28T03:51:23.640037+00:00 +2025-12-20,Cursor,670,261,2026-04-28T03:51:23.640037+00:00 +2025-12-20,Devin,135,36,2026-04-28T03:51:23.640037+00:00 +2025-12-20,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-20,Codegen,9,2,2026-04-28T03:51:23.640037+00:00 +2025-12-20,Jules,35,28,2026-04-28T03:51:23.640037+00:00 +2025-12-20,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-20,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-20,Open SWE,3,2,2026-04-28T03:51:23.640037+00:00 +2025-12-21,Codex,5356,1529,2026-04-28T03:51:23.640037+00:00 +2025-12-21,Copilot,337,72,2026-04-28T03:51:23.640037+00:00 +2025-12-21,Claude Code,3009,1398,2026-04-28T03:51:23.640037+00:00 +2025-12-21,Cursor,674,260,2026-04-28T03:51:23.640037+00:00 +2025-12-21,Devin,102,36,2026-04-28T03:51:23.640037+00:00 +2025-12-21,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-21,Codegen,13,5,2026-04-28T03:51:23.640037+00:00 +2025-12-21,Jules,35,24,2026-04-28T03:51:23.640037+00:00 +2025-12-21,Gru,31,1,2026-04-28T03:51:23.640037+00:00 +2025-12-21,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-21,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2025-12-22,Codex,4825,1633,2026-04-28T03:51:23.640037+00:00 +2025-12-22,Copilot,125,64,2026-04-28T03:51:23.640037+00:00 +2025-12-22,Claude Code,2690,1421,2026-04-28T03:51:23.640037+00:00 +2025-12-22,Cursor,773,306,2026-04-28T03:51:23.640037+00:00 +2025-12-22,Devin,141,64,2026-04-28T03:51:23.640037+00:00 +2025-12-22,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-22,Codegen,10,6,2026-04-28T03:51:23.640037+00:00 +2025-12-22,Jules,34,28,2026-04-28T03:51:23.640037+00:00 +2025-12-22,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-22,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2025-12-22,Open SWE,6,1,2026-04-28T03:51:23.640037+00:00 +2025-12-23,Codex,5288,1636,2026-04-28T03:51:23.640037+00:00 +2025-12-23,Copilot,202,73,2026-04-28T03:51:23.640037+00:00 +2025-12-23,Claude Code,3082,1556,2026-04-28T03:51:23.640037+00:00 +2025-12-23,Cursor,692,328,2026-04-28T03:51:23.640037+00:00 +2025-12-23,Devin,160,57,2026-04-28T03:51:23.640037+00:00 +2025-12-23,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-23,Codegen,4,3,2026-04-28T03:51:23.640037+00:00 +2025-12-23,Jules,44,37,2026-04-28T03:51:23.640037+00:00 +2025-12-23,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-23,OpenHands,3,3,2026-04-28T03:51:23.640037+00:00 +2025-12-23,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-24,Codex,4843,1517,2026-04-28T03:51:23.640037+00:00 +2025-12-24,Copilot,107,62,2026-04-28T03:51:23.640037+00:00 +2025-12-24,Claude Code,3378,1676,2026-04-28T03:51:23.640037+00:00 +2025-12-24,Cursor,849,367,2026-04-28T03:51:23.640037+00:00 +2025-12-24,Devin,131,53,2026-04-28T03:51:23.640037+00:00 +2025-12-24,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-24,Codegen,3,3,2026-04-28T03:51:23.640037+00:00 +2025-12-24,Jules,39,34,2026-04-28T03:51:23.640037+00:00 +2025-12-24,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-24,OpenHands,20,2,2026-04-28T03:51:23.640037+00:00 +2025-12-24,Open SWE,32,3,2026-04-28T03:51:23.640037+00:00 +2025-12-25,Codex,4969,1361,2026-04-28T03:51:23.640037+00:00 +2025-12-25,Copilot,128,49,2026-04-28T03:51:23.640037+00:00 +2025-12-25,Claude Code,3441,1711,2026-04-28T03:51:23.640037+00:00 +2025-12-25,Cursor,826,320,2026-04-28T03:51:23.640037+00:00 +2025-12-25,Devin,119,38,2026-04-28T03:51:23.640037+00:00 +2025-12-25,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-25,Codegen,9,5,2026-04-28T03:51:23.640037+00:00 +2025-12-25,Jules,48,44,2026-04-28T03:51:23.640037+00:00 +2025-12-25,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-25,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2025-12-25,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-26,Codex,5119,1504,2026-04-28T03:51:23.640037+00:00 +2025-12-26,Copilot,112,52,2026-04-28T03:51:23.640037+00:00 +2025-12-26,Claude Code,3883,1978,2026-04-28T03:51:23.640037+00:00 +2025-12-26,Cursor,894,310,2026-04-28T03:51:23.640037+00:00 +2025-12-26,Devin,369,36,2026-04-28T03:51:23.640037+00:00 +2025-12-26,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-26,Codegen,9,3,2026-04-28T03:51:23.640037+00:00 +2025-12-26,Jules,30,27,2026-04-28T03:51:23.640037+00:00 +2025-12-26,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-26,OpenHands,2,1,2026-04-28T03:51:23.640037+00:00 +2025-12-26,Open SWE,4,2,2026-04-28T03:51:23.640037+00:00 +2025-12-27,Codex,5796,1507,2026-04-28T03:51:23.640037+00:00 +2025-12-27,Copilot,136,54,2026-04-28T03:51:23.640037+00:00 +2025-12-27,Claude Code,4326,2005,2026-04-28T03:51:23.640037+00:00 +2025-12-27,Cursor,786,254,2026-04-28T03:51:23.640037+00:00 +2025-12-27,Devin,148,44,2026-04-28T03:51:23.640037+00:00 +2025-12-27,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-27,Codegen,17,10,2026-04-28T03:51:23.640037+00:00 +2025-12-27,Jules,54,28,2026-04-28T03:51:23.640037+00:00 +2025-12-27,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-27,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-27,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2025-12-28,Codex,5777,1558,2026-04-28T03:51:23.640037+00:00 +2025-12-28,Copilot,494,62,2026-04-28T03:51:23.640037+00:00 +2025-12-28,Claude Code,4478,1898,2026-04-28T03:51:23.640037+00:00 +2025-12-28,Cursor,893,298,2026-04-28T03:51:23.640037+00:00 +2025-12-28,Devin,185,34,2026-04-28T03:51:23.640037+00:00 +2025-12-28,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-28,Codegen,8,6,2026-04-28T03:51:23.640037+00:00 +2025-12-28,Jules,44,32,2026-04-28T03:51:23.640037+00:00 +2025-12-28,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-28,OpenHands,4,3,2026-04-28T03:51:23.640037+00:00 +2025-12-28,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-29,Codex,5913,1651,2026-04-28T03:51:23.640037+00:00 +2025-12-29,Copilot,114,69,2026-04-28T03:51:23.640037+00:00 +2025-12-29,Claude Code,4038,1854,2026-04-28T03:51:23.640037+00:00 +2025-12-29,Cursor,748,327,2026-04-28T03:51:23.640037+00:00 +2025-12-29,Devin,318,40,2026-04-28T03:51:23.640037+00:00 +2025-12-29,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-29,Codegen,3,2,2026-04-28T03:51:23.640037+00:00 +2025-12-29,Jules,25,24,2026-04-28T03:51:23.640037+00:00 +2025-12-29,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-29,OpenHands,8,3,2026-04-28T03:51:23.640037+00:00 +2025-12-29,Open SWE,3,2,2026-04-28T03:51:23.640037+00:00 +2025-12-30,Codex,5452,1637,2026-04-28T03:51:23.640037+00:00 +2025-12-30,Copilot,93,62,2026-04-28T03:51:23.640037+00:00 +2025-12-30,Claude Code,4175,2160,2026-04-28T03:51:23.640037+00:00 +2025-12-30,Cursor,759,333,2026-04-28T03:51:23.640037+00:00 +2025-12-30,Devin,132,44,2026-04-28T03:51:23.640037+00:00 +2025-12-30,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-30,Codegen,3,3,2026-04-28T03:51:23.640037+00:00 +2025-12-30,Jules,48,36,2026-04-28T03:51:23.640037+00:00 +2025-12-30,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-30,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2025-12-30,Open SWE,10,3,2026-04-28T03:51:23.640037+00:00 +2025-12-31,Codex,4507,1355,2026-04-28T03:51:23.640037+00:00 +2025-12-31,Copilot,110,52,2026-04-28T03:51:23.640037+00:00 +2025-12-31,Claude Code,3812,1760,2026-04-28T03:51:23.640037+00:00 +2025-12-31,Cursor,683,295,2026-04-28T03:51:23.640037+00:00 +2025-12-31,Devin,121,45,2026-04-28T03:51:23.640037+00:00 +2025-12-31,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-31,Codegen,8,5,2026-04-28T03:51:23.640037+00:00 +2025-12-31,Jules,54,49,2026-04-28T03:51:23.640037+00:00 +2025-12-31,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-31,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2025-12-31,Open SWE,3,2,2026-04-28T03:51:23.640037+00:00 +2026-01-01,Codex,4340,1199,2026-04-28T03:51:23.640037+00:00 +2026-01-01,Copilot,145,44,2026-04-28T03:51:23.640037+00:00 +2026-01-01,Claude Code,3908,1753,2026-04-28T03:51:23.640037+00:00 +2026-01-01,Cursor,667,229,2026-04-28T03:51:23.640037+00:00 +2026-01-01,Devin,98,36,2026-04-28T03:51:23.640037+00:00 +2026-01-01,Sweep,3,1,2026-04-28T03:51:23.640037+00:00 +2026-01-01,Codegen,5,3,2026-04-28T03:51:23.640037+00:00 +2026-01-01,Jules,43,38,2026-04-28T03:51:23.640037+00:00 +2026-01-01,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-01,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2026-01-01,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-02,Codex,5229,1495,2026-04-28T03:51:23.640037+00:00 +2026-01-02,Copilot,91,56,2026-04-28T03:51:23.640037+00:00 +2026-01-02,Claude Code,3727,1818,2026-04-28T03:51:23.640037+00:00 +2026-01-02,Cursor,553,238,2026-04-28T03:51:23.640037+00:00 +2026-01-02,Devin,153,50,2026-04-28T03:51:23.640037+00:00 +2026-01-02,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-02,Codegen,8,4,2026-04-28T03:51:23.640037+00:00 +2026-01-02,Jules,43,41,2026-04-28T03:51:23.640037+00:00 +2026-01-02,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-02,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2026-01-02,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-03,Codex,5295,1492,2026-04-28T03:51:23.640037+00:00 +2026-01-03,Copilot,96,60,2026-04-28T03:51:23.640037+00:00 +2026-01-03,Claude Code,3902,1951,2026-04-28T03:51:23.640037+00:00 +2026-01-03,Cursor,569,242,2026-04-28T03:51:23.640037+00:00 +2026-01-03,Devin,121,47,2026-04-28T03:51:23.640037+00:00 +2026-01-03,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-03,Codegen,5,2,2026-04-28T03:51:23.640037+00:00 +2026-01-03,Jules,47,38,2026-04-28T03:51:23.640037+00:00 +2026-01-03,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-03,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2026-01-03,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-04,Codex,5431,1571,2026-04-28T03:51:23.640037+00:00 +2026-01-04,Copilot,136,70,2026-04-28T03:51:23.640037+00:00 +2026-01-04,Claude Code,4010,2080,2026-04-28T03:51:23.640037+00:00 +2026-01-04,Cursor,652,266,2026-04-28T03:51:23.640037+00:00 +2026-01-04,Devin,148,35,2026-04-28T03:51:23.640037+00:00 +2026-01-04,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-04,Codegen,5,4,2026-04-28T03:51:23.640037+00:00 +2026-01-04,Jules,42,39,2026-04-28T03:51:23.640037+00:00 +2026-01-04,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-04,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-04,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2026-01-05,Codex,4833,1642,2026-04-28T03:51:23.640037+00:00 +2026-01-05,Copilot,120,77,2026-04-28T03:51:23.640037+00:00 +2026-01-05,Claude Code,3547,1948,2026-04-28T03:51:23.640037+00:00 +2026-01-05,Cursor,502,274,2026-04-28T03:51:23.640037+00:00 +2026-01-05,Devin,182,79,2026-04-28T03:51:23.640037+00:00 +2026-01-05,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-05,Codegen,3,3,2026-04-28T03:51:23.640037+00:00 +2026-01-05,Jules,57,47,2026-04-28T03:51:23.640037+00:00 +2026-01-05,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-05,OpenHands,3,2,2026-04-28T03:51:23.640037+00:00 +2026-01-05,Open SWE,2,1,2026-04-28T03:51:23.640037+00:00 +2026-01-06,Codex,5012,1703,2026-04-28T03:51:23.640037+00:00 +2026-01-06,Copilot,177,75,2026-04-28T03:51:23.640037+00:00 +2026-01-06,Claude Code,3359,1910,2026-04-28T03:51:23.640037+00:00 +2026-01-06,Cursor,573,314,2026-04-28T03:51:23.640037+00:00 +2026-01-06,Devin,123,47,2026-04-28T03:51:23.640037+00:00 +2026-01-06,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-06,Codegen,9,7,2026-04-28T03:51:23.640037+00:00 +2026-01-06,Jules,39,38,2026-04-28T03:51:23.640037+00:00 +2026-01-06,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-06,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2026-01-06,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-07,Codex,4999,1667,2026-04-28T03:51:23.640037+00:00 +2026-01-07,Copilot,119,72,2026-04-28T03:51:23.640037+00:00 +2026-01-07,Claude Code,3200,1918,2026-04-28T03:51:23.640037+00:00 +2026-01-07,Cursor,659,321,2026-04-28T03:51:23.640037+00:00 +2026-01-07,Devin,183,86,2026-04-28T03:51:23.640037+00:00 +2026-01-07,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-07,Codegen,10,5,2026-04-28T03:51:23.640037+00:00 +2026-01-07,Jules,47,44,2026-04-28T03:51:23.640037+00:00 +2026-01-07,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-07,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2026-01-07,Open SWE,2,2,2026-04-28T03:51:23.640037+00:00 +2026-01-08,Codex,4762,1685,2026-04-28T03:51:23.640037+00:00 +2026-01-08,Copilot,153,73,2026-04-28T03:51:23.640037+00:00 +2026-01-08,Claude Code,3297,1997,2026-04-28T03:51:23.640037+00:00 +2026-01-08,Cursor,662,315,2026-04-28T03:51:23.640037+00:00 +2026-01-08,Devin,233,91,2026-04-28T03:51:23.640037+00:00 +2026-01-08,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-08,Codegen,5,2,2026-04-28T03:51:23.640037+00:00 +2026-01-08,Jules,65,38,2026-04-28T03:51:23.640037+00:00 +2026-01-08,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-08,OpenHands,4,3,2026-04-28T03:51:23.640037+00:00 +2026-01-08,Open SWE,2,1,2026-04-28T03:51:23.640037+00:00 +2026-01-09,Codex,5246,1704,2026-04-28T03:51:23.640037+00:00 +2026-01-09,Copilot,139,80,2026-04-28T03:51:23.640037+00:00 +2026-01-09,Claude Code,3767,2116,2026-04-28T03:51:23.640037+00:00 +2026-01-09,Cursor,561,262,2026-04-28T03:51:23.640037+00:00 +2026-01-09,Devin,160,65,2026-04-28T03:51:23.640037+00:00 +2026-01-09,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-09,Codegen,1,1,2026-04-28T03:51:23.640037+00:00 +2026-01-09,Jules,68,50,2026-04-28T03:51:23.640037+00:00 +2026-01-09,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-09,OpenHands,4,3,2026-04-28T03:51:23.640037+00:00 +2026-01-09,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2026-01-10,Codex,5447,1536,2026-04-28T03:51:23.640037+00:00 +2026-01-10,Copilot,128,71,2026-04-28T03:51:23.640037+00:00 +2026-01-10,Claude Code,4241,2318,2026-04-28T03:51:23.640037+00:00 +2026-01-10,Cursor,467,219,2026-04-28T03:51:23.640037+00:00 +2026-01-10,Devin,160,50,2026-04-28T03:51:23.640037+00:00 +2026-01-10,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-10,Codegen,1,1,2026-04-28T03:51:23.640037+00:00 +2026-01-10,Jules,109,64,2026-04-28T03:51:23.640037+00:00 +2026-01-10,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-10,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2026-01-10,Open SWE,10,4,2026-04-28T03:51:23.640037+00:00 +2026-01-11,Codex,5695,1586,2026-04-28T03:51:23.640037+00:00 +2026-01-11,Copilot,104,71,2026-04-28T03:51:23.640037+00:00 +2026-01-11,Claude Code,4153,2229,2026-04-28T03:51:23.640037+00:00 +2026-01-11,Cursor,567,259,2026-04-28T03:51:23.640037+00:00 +2026-01-11,Devin,370,42,2026-04-28T03:51:23.640037+00:00 +2026-01-11,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-11,Codegen,5,4,2026-04-28T03:51:23.640037+00:00 +2026-01-11,Jules,87,63,2026-04-28T03:51:23.640037+00:00 +2026-01-11,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-11,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2026-01-11,Open SWE,5,2,2026-04-28T03:51:23.640037+00:00 +2026-01-12,Codex,5014,1711,2026-04-28T03:51:23.640037+00:00 +2026-01-12,Copilot,397,78,2026-04-28T03:51:23.640037+00:00 +2026-01-12,Claude Code,3504,1998,2026-04-28T03:51:23.640037+00:00 +2026-01-12,Cursor,469,274,2026-04-28T03:51:23.640037+00:00 +2026-01-12,Devin,162,56,2026-04-28T03:51:23.640037+00:00 +2026-01-12,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-12,Codegen,14,4,2026-04-28T03:51:23.640037+00:00 +2026-01-12,Jules,74,61,2026-04-28T03:51:23.640037+00:00 +2026-01-12,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-12,OpenHands,3,2,2026-04-28T03:51:23.640037+00:00 +2026-01-12,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2026-01-13,Codex,4874,1723,2026-04-28T03:51:23.640037+00:00 +2026-01-13,Copilot,108,75,2026-04-28T03:51:23.640037+00:00 +2026-01-13,Claude Code,3839,2169,2026-04-28T03:51:23.640037+00:00 +2026-01-13,Cursor,370,237,2026-04-28T03:51:23.640037+00:00 +2026-01-13,Devin,176,64,2026-04-28T03:51:23.640037+00:00 +2026-01-13,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-13,Codegen,5,3,2026-04-28T03:51:23.640037+00:00 +2026-01-13,Jules,49,43,2026-04-28T03:51:23.640037+00:00 +2026-01-13,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-13,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-13,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2026-01-14,Codex,4690,1649,2026-04-28T03:51:23.640037+00:00 +2026-01-14,Copilot,102,62,2026-04-28T03:51:23.640037+00:00 +2026-01-14,Claude Code,3617,2111,2026-04-28T03:51:23.640037+00:00 +2026-01-14,Cursor,456,236,2026-04-28T03:51:23.640037+00:00 +2026-01-14,Devin,159,75,2026-04-28T03:51:23.640037+00:00 +2026-01-14,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-14,Codegen,6,2,2026-04-28T03:51:23.640037+00:00 +2026-01-14,Jules,35,32,2026-04-28T03:51:23.640037+00:00 +2026-01-14,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-14,OpenHands,5,3,2026-04-28T03:51:23.640037+00:00 +2026-01-14,Open SWE,2,1,2026-04-28T03:51:23.640037+00:00 +2026-01-15,Codex,4528,1633,2026-04-28T03:51:23.640037+00:00 +2026-01-15,Copilot,73,54,2026-04-28T03:51:23.640037+00:00 +2026-01-15,Claude Code,3283,2023,2026-04-28T03:51:23.640037+00:00 +2026-01-15,Cursor,373,233,2026-04-28T03:51:23.640037+00:00 +2026-01-15,Devin,170,69,2026-04-28T03:51:23.640037+00:00 +2026-01-15,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-15,Codegen,2,2,2026-04-28T03:51:23.640037+00:00 +2026-01-15,Jules,52,44,2026-04-28T03:51:23.640037+00:00 +2026-01-15,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-15,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2026-01-15,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2026-01-16,Codex,4682,1655,2026-04-28T03:51:23.640037+00:00 +2026-01-16,Copilot,140,79,2026-04-28T03:51:23.640037+00:00 +2026-01-16,Claude Code,4036,2103,2026-04-28T03:51:23.640037+00:00 +2026-01-16,Cursor,424,229,2026-04-28T03:51:23.640037+00:00 +2026-01-16,Devin,164,70,2026-04-28T03:51:23.640037+00:00 +2026-01-16,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-16,Codegen,1,1,2026-04-28T03:51:23.640037+00:00 +2026-01-16,Jules,59,38,2026-04-28T03:51:23.640037+00:00 +2026-01-16,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-16,OpenHands,9,6,2026-04-28T03:51:23.640037+00:00 +2026-01-16,Open SWE,7,3,2026-04-28T03:51:23.640037+00:00 +2026-01-17,Codex,4957,1573,2026-04-28T03:51:23.640037+00:00 +2026-01-17,Copilot,150,71,2026-04-28T03:51:23.640037+00:00 +2026-01-17,Claude Code,3990,2255,2026-04-28T03:51:23.640037+00:00 +2026-01-17,Cursor,461,203,2026-04-28T03:51:23.640037+00:00 +2026-01-17,Devin,102,46,2026-04-28T03:51:23.640037+00:00 +2026-01-17,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-17,Codegen,4,1,2026-04-28T03:51:23.640037+00:00 +2026-01-17,Jules,88,59,2026-04-28T03:51:23.640037+00:00 +2026-01-17,Gru,32,1,2026-04-28T03:51:23.640037+00:00 +2026-01-17,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-17,Open SWE,12,2,2026-04-28T03:51:23.640037+00:00 +2026-01-18,Codex,5756,1654,2026-04-28T03:51:23.640037+00:00 +2026-01-18,Copilot,74,52,2026-04-28T03:51:23.640037+00:00 +2026-01-18,Claude Code,4299,2252,2026-04-28T03:51:23.640037+00:00 +2026-01-18,Cursor,328,186,2026-04-28T03:51:23.640037+00:00 +2026-01-18,Devin,149,60,2026-04-28T03:51:23.640037+00:00 +2026-01-18,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-18,Codegen,2,2,2026-04-28T03:51:23.640037+00:00 +2026-01-18,Jules,79,46,2026-04-28T03:51:23.640037+00:00 +2026-01-18,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-18,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2026-01-18,Open SWE,4,2,2026-04-28T03:51:23.640037+00:00 +2026-01-19,Codex,5060,1723,2026-04-28T03:51:23.640037+00:00 +2026-01-19,Copilot,403,76,2026-04-28T03:51:23.640037+00:00 +2026-01-19,Claude Code,3833,2170,2026-04-28T03:51:23.640037+00:00 +2026-01-19,Cursor,279,195,2026-04-28T03:51:23.640037+00:00 +2026-01-19,Devin,179,70,2026-04-28T03:51:23.640037+00:00 +2026-01-19,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-19,Codegen,6,3,2026-04-28T03:51:23.640037+00:00 +2026-01-19,Jules,76,44,2026-04-28T03:51:23.640037+00:00 +2026-01-19,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-19,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-19,Open SWE,15,3,2026-04-28T03:51:23.640037+00:00 +2026-01-20,Codex,5201,1773,2026-04-28T03:51:23.640037+00:00 +2026-01-20,Copilot,456,82,2026-04-28T03:51:23.640037+00:00 +2026-01-20,Claude Code,3658,2105,2026-04-28T03:51:23.640037+00:00 +2026-01-20,Cursor,375,237,2026-04-28T03:51:23.640037+00:00 +2026-01-20,Devin,564,76,2026-04-28T03:51:23.640037+00:00 +2026-01-20,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-20,Codegen,2,2,2026-04-28T03:51:23.640037+00:00 +2026-01-20,Jules,59,38,2026-04-28T03:51:23.640037+00:00 +2026-01-20,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-20,OpenHands,14,4,2026-04-28T03:51:23.640037+00:00 +2026-01-20,Open SWE,5,2,2026-04-28T03:51:23.640037+00:00 +2026-01-21,Codex,4770,1729,2026-04-28T03:51:23.640037+00:00 +2026-01-21,Copilot,201,66,2026-04-28T03:51:23.640037+00:00 +2026-01-21,Claude Code,3748,2037,2026-04-28T03:51:23.640037+00:00 +2026-01-21,Cursor,390,219,2026-04-28T03:51:23.640037+00:00 +2026-01-21,Devin,370,81,2026-04-28T03:51:23.640037+00:00 +2026-01-21,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-21,Codegen,4,3,2026-04-28T03:51:23.640037+00:00 +2026-01-21,Jules,66,41,2026-04-28T03:51:23.640037+00:00 +2026-01-21,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-21,OpenHands,6,3,2026-04-28T03:51:23.640037+00:00 +2026-01-21,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-22,Codex,4726,1781,2026-04-28T03:51:23.640037+00:00 +2026-01-22,Copilot,109,57,2026-04-28T03:51:23.640037+00:00 +2026-01-22,Claude Code,3568,2077,2026-04-28T03:51:23.640037+00:00 +2026-01-22,Cursor,398,221,2026-04-28T03:51:23.640037+00:00 +2026-01-22,Devin,176,78,2026-04-28T03:51:23.640037+00:00 +2026-01-22,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-22,Codegen,28,5,2026-04-28T03:51:23.640037+00:00 +2026-01-22,Jules,57,37,2026-04-28T03:51:23.640037+00:00 +2026-01-22,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-22,OpenHands,2,1,2026-04-28T03:51:23.640037+00:00 +2026-01-22,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-23,Codex,4717,1671,2026-04-28T03:51:23.640037+00:00 +2026-01-23,Copilot,156,81,2026-04-28T03:51:23.640037+00:00 +2026-01-23,Claude Code,3838,2139,2026-04-28T03:51:23.640037+00:00 +2026-01-23,Cursor,433,242,2026-04-28T03:51:23.640037+00:00 +2026-01-23,Devin,163,78,2026-04-28T03:51:23.640037+00:00 +2026-01-23,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-23,Codegen,8,4,2026-04-28T03:51:23.640037+00:00 +2026-01-23,Jules,44,21,2026-04-28T03:51:23.640037+00:00 +2026-01-23,Gru,30,1,2026-04-28T03:51:23.640037+00:00 +2026-01-23,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-23,Open SWE,12,3,2026-04-28T03:51:23.640037+00:00 +2026-01-24,Codex,4411,1523,2026-04-28T03:51:23.640037+00:00 +2026-01-24,Copilot,93,55,2026-04-28T03:51:23.640037+00:00 +2026-01-24,Claude Code,3823,2152,2026-04-28T03:51:23.640037+00:00 +2026-01-24,Cursor,290,147,2026-04-28T03:51:23.640037+00:00 +2026-01-24,Devin,101,45,2026-04-28T03:51:23.640037+00:00 +2026-01-24,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-24,Codegen,11,3,2026-04-28T03:51:23.640037+00:00 +2026-01-24,Jules,35,18,2026-04-28T03:51:23.640037+00:00 +2026-01-24,Gru,25,1,2026-04-28T03:51:23.640037+00:00 +2026-01-24,OpenHands,3,1,2026-04-28T03:51:23.640037+00:00 +2026-01-24,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2026-01-25,Codex,4929,1625,2026-04-28T03:51:23.640037+00:00 +2026-01-25,Copilot,104,70,2026-04-28T03:51:23.640037+00:00 +2026-01-25,Claude Code,3927,2202,2026-04-28T03:51:23.640037+00:00 +2026-01-25,Cursor,343,195,2026-04-28T03:51:23.640037+00:00 +2026-01-25,Devin,98,47,2026-04-28T03:51:23.640037+00:00 +2026-01-25,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-25,Codegen,7,3,2026-04-28T03:51:23.640037+00:00 +2026-01-25,Jules,44,13,2026-04-28T03:51:23.640037+00:00 +2026-01-25,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-25,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-25,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2026-01-26,Codex,5048,1748,2026-04-28T03:51:23.640037+00:00 +2026-01-26,Copilot,407,71,2026-04-28T03:51:23.640037+00:00 +2026-01-26,Claude Code,3714,2255,2026-04-28T03:51:23.640037+00:00 +2026-01-26,Cursor,436,222,2026-04-28T03:51:23.640037+00:00 +2026-01-26,Devin,335,57,2026-04-28T03:51:23.640037+00:00 +2026-01-26,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-26,Codegen,5,4,2026-04-28T03:51:23.640037+00:00 +2026-01-26,Jules,40,13,2026-04-28T03:51:23.640037+00:00 +2026-01-26,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-26,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2026-01-26,Open SWE,4,2,2026-04-28T03:51:23.640037+00:00 +2026-01-27,Codex,4197,1712,2026-04-28T03:51:23.640037+00:00 +2026-01-27,Copilot,123,78,2026-04-28T03:51:23.640037+00:00 +2026-01-27,Claude Code,3335,2151,2026-04-28T03:51:23.640037+00:00 +2026-01-27,Cursor,386,251,2026-04-28T03:51:23.640037+00:00 +2026-01-27,Devin,159,70,2026-04-28T03:51:23.640037+00:00 +2026-01-27,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2026-01-27,Codegen,17,4,2026-04-28T03:51:23.640037+00:00 +2026-01-27,Jules,54,22,2026-04-28T03:51:23.640037+00:00 +2026-01-27,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-27,OpenHands,11,7,2026-04-28T03:51:23.640037+00:00 +2026-01-27,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-28,Codex,4977,1761,2026-04-28T03:51:23.640037+00:00 +2026-01-28,Copilot,186,83,2026-04-28T03:51:23.640037+00:00 +2026-01-28,Claude Code,3491,2252,2026-04-28T03:51:23.640037+00:00 +2026-01-28,Cursor,375,214,2026-04-28T03:51:23.640037+00:00 +2026-01-28,Devin,167,82,2026-04-28T03:51:23.640037+00:00 +2026-01-28,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-28,Codegen,11,5,2026-04-28T03:51:23.640037+00:00 +2026-01-28,Jules,36,17,2026-04-28T03:51:23.640037+00:00 +2026-01-28,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-28,OpenHands,3,2,2026-04-28T03:51:23.640037+00:00 +2026-01-28,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-29,Codex,4837,1794,2026-04-28T03:51:23.640037+00:00 +2026-01-29,Copilot,163,94,2026-04-28T03:51:23.640037+00:00 +2026-01-29,Claude Code,3358,2072,2026-04-28T03:51:23.640037+00:00 +2026-01-29,Cursor,410,247,2026-04-28T03:51:23.640037+00:00 +2026-01-29,Devin,599,73,2026-04-28T03:51:23.640037+00:00 +2026-01-29,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-29,Codegen,8,6,2026-04-28T03:51:23.640037+00:00 +2026-01-29,Jules,28,19,2026-04-28T03:51:23.640037+00:00 +2026-01-29,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-29,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2026-01-29,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-30,Codex,4680,1659,2026-04-28T03:51:23.640037+00:00 +2026-01-30,Copilot,144,90,2026-04-28T03:51:23.640037+00:00 +2026-01-30,Claude Code,3357,2124,2026-04-28T03:51:23.640037+00:00 +2026-01-30,Cursor,674,201,2026-04-28T03:51:23.640037+00:00 +2026-01-30,Devin,135,66,2026-04-28T03:51:23.640037+00:00 +2026-01-30,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2026-01-30,Codegen,4,2,2026-04-28T03:51:23.640037+00:00 +2026-01-30,Jules,23,20,2026-04-28T03:51:23.640037+00:00 +2026-01-30,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-30,OpenHands,2,1,2026-04-28T03:51:23.640037+00:00 +2026-01-30,Open SWE,11,1,2026-04-28T03:51:23.640037+00:00 +2026-01-31,Codex,4753,1547,2026-04-28T03:51:23.640037+00:00 +2026-01-31,Copilot,145,72,2026-04-28T03:51:23.640037+00:00 +2026-01-31,Claude Code,3755,2231,2026-04-28T03:51:23.640037+00:00 +2026-01-31,Cursor,385,193,2026-04-28T03:51:23.640037+00:00 +2026-01-31,Devin,90,47,2026-04-28T03:51:23.640037+00:00 +2026-01-31,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-31,Codegen,7,3,2026-04-28T03:51:23.640037+00:00 +2026-01-31,Jules,27,19,2026-04-28T03:51:23.640037+00:00 +2026-01-31,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-01-31,OpenHands,3,2,2026-04-28T03:51:23.640037+00:00 +2026-01-31,Open SWE,3,2,2026-04-28T03:51:23.640037+00:00 +2026-02-01,Codex,4514,1586,2026-04-28T03:51:23.640037+00:00 +2026-02-01,Copilot,133,69,2026-04-28T03:51:23.640037+00:00 +2026-02-01,Claude Code,4068,2343,2026-04-28T03:51:23.640037+00:00 +2026-02-01,Cursor,357,200,2026-04-28T03:51:23.640037+00:00 +2026-02-01,Devin,55,40,2026-04-28T03:51:23.640037+00:00 +2026-02-01,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-01,Codegen,5,2,2026-04-28T03:51:23.640037+00:00 +2026-02-01,Jules,30,17,2026-04-28T03:51:23.640037+00:00 +2026-02-01,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-01,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2026-02-01,Open SWE,3,1,2026-04-28T03:51:23.640037+00:00 +2026-02-02,Codex,4976,1971,2026-04-28T03:51:23.640037+00:00 +2026-02-02,Copilot,143,87,2026-04-28T03:51:23.640037+00:00 +2026-02-02,Claude Code,3690,2231,2026-04-28T03:51:23.640037+00:00 +2026-02-02,Cursor,454,221,2026-04-28T03:51:23.640037+00:00 +2026-02-02,Devin,127,52,2026-04-28T03:51:23.640037+00:00 +2026-02-02,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2026-02-02,Codegen,8,4,2026-04-28T03:51:23.640037+00:00 +2026-02-02,Jules,32,23,2026-04-28T03:51:23.640037+00:00 +2026-02-02,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-02,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2026-02-02,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-03,Codex,6798,3143,2026-04-28T03:51:23.640037+00:00 +2026-02-03,Copilot,504,108,2026-04-28T03:51:23.640037+00:00 +2026-02-03,Claude Code,3602,2199,2026-04-28T03:51:23.640037+00:00 +2026-02-03,Cursor,423,244,2026-04-28T03:51:23.640037+00:00 +2026-02-03,Devin,389,80,2026-04-28T03:51:23.640037+00:00 +2026-02-03,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-03,Codegen,8,4,2026-04-28T03:51:23.640037+00:00 +2026-02-03,Jules,28,16,2026-04-28T03:51:23.640037+00:00 +2026-02-03,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-03,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2026-02-03,Open SWE,3,1,2026-04-28T03:51:23.640037+00:00 +2026-02-04,Codex,7072,3070,2026-04-28T03:51:23.640037+00:00 +2026-02-04,Copilot,200,79,2026-04-28T03:51:23.640037+00:00 +2026-02-04,Claude Code,3655,2239,2026-04-28T03:51:23.640037+00:00 +2026-02-04,Cursor,463,200,2026-04-28T03:51:23.640037+00:00 +2026-02-04,Devin,197,76,2026-04-28T03:51:23.640037+00:00 +2026-02-04,Sweep,3,2,2026-04-28T03:51:23.640037+00:00 +2026-02-04,Codegen,3,2,2026-04-28T03:51:23.640037+00:00 +2026-02-04,Jules,27,16,2026-04-28T03:51:23.640037+00:00 +2026-02-04,Gru,2,1,2026-04-28T03:51:23.640037+00:00 +2026-02-04,OpenHands,18,4,2026-04-28T03:51:23.640037+00:00 +2026-02-04,Open SWE,10,1,2026-04-28T03:51:23.640037+00:00 +2026-02-05,Codex,6982,3006,2026-04-28T03:51:23.640037+00:00 +2026-02-05,Copilot,454,103,2026-04-28T03:51:23.640037+00:00 +2026-02-05,Claude Code,3542,2287,2026-04-28T03:51:23.640037+00:00 +2026-02-05,Cursor,372,213,2026-04-28T03:51:23.640037+00:00 +2026-02-05,Devin,137,62,2026-04-28T03:51:23.640037+00:00 +2026-02-05,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-05,Codegen,8,4,2026-04-28T03:51:23.640037+00:00 +2026-02-05,Jules,25,16,2026-04-28T03:51:23.640037+00:00 +2026-02-05,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-05,OpenHands,4,3,2026-04-28T03:51:23.640037+00:00 +2026-02-05,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-06,Codex,7858,3405,2026-04-28T03:51:23.640037+00:00 +2026-02-06,Copilot,210,110,2026-04-28T03:51:23.640037+00:00 +2026-02-06,Claude Code,4654,2842,2026-04-28T03:51:23.640037+00:00 +2026-02-06,Cursor,371,229,2026-04-28T03:51:23.640037+00:00 +2026-02-06,Devin,122,63,2026-04-28T03:51:23.640037+00:00 +2026-02-06,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-06,Codegen,3,2,2026-04-28T03:51:23.640037+00:00 +2026-02-06,Jules,28,20,2026-04-28T03:51:23.640037+00:00 +2026-02-06,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-06,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2026-02-06,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2026-02-07,Codex,8245,3192,2026-04-28T03:51:23.640037+00:00 +2026-02-07,Copilot,152,110,2026-04-28T03:51:23.640037+00:00 +2026-02-07,Claude Code,4974,2947,2026-04-28T03:51:23.640037+00:00 +2026-02-07,Cursor,284,175,2026-04-28T03:51:23.640037+00:00 +2026-02-07,Devin,107,38,2026-04-28T03:51:23.640037+00:00 +2026-02-07,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-07,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-07,Jules,26,16,2026-04-28T03:51:23.640037+00:00 +2026-02-07,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-07,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-07,Open SWE,3,1,2026-04-28T03:51:23.640037+00:00 +2026-02-08,Codex,8776,3223,2026-04-28T03:51:23.640037+00:00 +2026-02-08,Copilot,171,121,2026-04-28T03:51:23.640037+00:00 +2026-02-08,Claude Code,4779,2829,2026-04-28T03:51:23.640037+00:00 +2026-02-08,Cursor,357,190,2026-04-28T03:51:23.640037+00:00 +2026-02-08,Devin,101,44,2026-04-28T03:51:23.640037+00:00 +2026-02-08,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2026-02-08,Codegen,2,2,2026-04-28T03:51:23.640037+00:00 +2026-02-08,Jules,26,17,2026-04-28T03:51:23.640037+00:00 +2026-02-08,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-08,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2026-02-08,Open SWE,2,1,2026-04-28T03:51:23.640037+00:00 +2026-02-09,Codex,7475,3105,2026-04-28T03:51:23.640037+00:00 +2026-02-09,Copilot,128,89,2026-04-28T03:51:23.640037+00:00 +2026-02-09,Claude Code,3970,2482,2026-04-28T03:51:23.640037+00:00 +2026-02-09,Cursor,447,260,2026-04-28T03:51:23.640037+00:00 +2026-02-09,Devin,161,59,2026-04-28T03:51:23.640037+00:00 +2026-02-09,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-09,Codegen,4,2,2026-04-28T03:51:23.640037+00:00 +2026-02-09,Jules,16,14,2026-04-28T03:51:23.640037+00:00 +2026-02-09,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-09,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2026-02-09,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2026-02-10,Codex,7721,3284,2026-04-28T03:51:23.640037+00:00 +2026-02-10,Copilot,182,101,2026-04-28T03:51:23.640037+00:00 +2026-02-10,Claude Code,3743,2473,2026-04-28T03:51:23.640037+00:00 +2026-02-10,Cursor,370,213,2026-04-28T03:51:23.640037+00:00 +2026-02-10,Devin,151,71,2026-04-28T03:51:23.640037+00:00 +2026-02-10,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-10,Codegen,3,2,2026-04-28T03:51:23.640037+00:00 +2026-02-10,Jules,26,21,2026-04-28T03:51:23.640037+00:00 +2026-02-10,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-10,OpenHands,4,3,2026-04-28T03:51:23.640037+00:00 +2026-02-10,Open SWE,3,2,2026-04-28T03:51:23.640037+00:00 +2026-02-11,Codex,8323,3520,2026-04-28T03:51:23.640037+00:00 +2026-02-11,Copilot,309,122,2026-04-28T03:51:23.640037+00:00 +2026-02-11,Claude Code,4162,2615,2026-04-28T03:51:23.640037+00:00 +2026-02-11,Cursor,391,236,2026-04-28T03:51:23.640037+00:00 +2026-02-11,Devin,200,90,2026-04-28T03:51:23.640037+00:00 +2026-02-11,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-11,Codegen,5,4,2026-04-28T03:51:23.640037+00:00 +2026-02-11,Jules,23,20,2026-04-28T03:51:23.640037+00:00 +2026-02-11,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-11,OpenHands,7,4,2026-04-28T03:51:23.640037+00:00 +2026-02-11,Open SWE,4,1,2026-04-28T03:51:23.640037+00:00 +2026-02-12,Codex,8933,3621,2026-04-28T03:51:23.640037+00:00 +2026-02-12,Copilot,234,116,2026-04-28T03:51:23.640037+00:00 +2026-02-12,Claude Code,4403,2749,2026-04-28T03:51:23.640037+00:00 +2026-02-12,Cursor,429,241,2026-04-28T03:51:23.640037+00:00 +2026-02-12,Devin,200,91,2026-04-28T03:51:23.640037+00:00 +2026-02-12,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-12,Codegen,10,6,2026-04-28T03:51:23.640037+00:00 +2026-02-12,Jules,19,14,2026-04-28T03:51:23.640037+00:00 +2026-02-12,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-12,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2026-02-12,Open SWE,35,8,2026-04-28T03:51:23.640037+00:00 +2026-02-13,Codex,9268,3679,2026-04-28T03:51:23.640037+00:00 +2026-02-13,Copilot,166,72,2026-04-28T03:51:23.640037+00:00 +2026-02-13,Claude Code,4217,2653,2026-04-28T03:51:23.640037+00:00 +2026-02-13,Cursor,354,210,2026-04-28T03:51:23.640037+00:00 +2026-02-13,Devin,161,74,2026-04-28T03:51:23.640037+00:00 +2026-02-13,Sweep,2,1,2026-04-28T03:51:23.640037+00:00 +2026-02-13,Codegen,4,3,2026-04-28T03:51:23.640037+00:00 +2026-02-13,Jules,20,17,2026-04-28T03:51:23.640037+00:00 +2026-02-13,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-13,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2026-02-13,Open SWE,11,2,2026-04-28T03:51:23.640037+00:00 +2026-02-14,Codex,10128,3424,2026-04-28T03:51:23.640037+00:00 +2026-02-14,Copilot,160,116,2026-04-28T03:51:23.640037+00:00 +2026-02-14,Claude Code,4898,2927,2026-04-28T03:51:23.640037+00:00 +2026-02-14,Cursor,429,207,2026-04-28T03:51:23.640037+00:00 +2026-02-14,Devin,171,62,2026-04-28T03:51:23.640037+00:00 +2026-02-14,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-14,Codegen,7,3,2026-04-28T03:51:23.640037+00:00 +2026-02-14,Jules,21,17,2026-04-28T03:51:23.640037+00:00 +2026-02-14,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-14,OpenHands,5,3,2026-04-28T03:51:23.640037+00:00 +2026-02-14,Open SWE,7,2,2026-04-28T03:51:23.640037+00:00 +2026-02-15,Codex,10121,3306,2026-04-28T03:51:23.640037+00:00 +2026-02-15,Copilot,436,93,2026-04-28T03:51:23.640037+00:00 +2026-02-15,Claude Code,5190,2912,2026-04-28T03:51:23.640037+00:00 +2026-02-15,Cursor,379,220,2026-04-28T03:51:23.640037+00:00 +2026-02-15,Devin,173,64,2026-04-28T03:51:23.640037+00:00 +2026-02-15,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-15,Codegen,1,1,2026-04-28T03:51:23.640037+00:00 +2026-02-15,Jules,47,33,2026-04-28T03:51:23.640037+00:00 +2026-02-15,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-15,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2026-02-15,Open SWE,2,2,2026-04-28T03:51:23.640037+00:00 +2026-02-16,Codex,9348,3409,2026-04-28T03:51:23.640037+00:00 +2026-02-16,Copilot,614,104,2026-04-28T03:51:23.640037+00:00 +2026-02-16,Claude Code,4716,2842,2026-04-28T03:51:23.640037+00:00 +2026-02-16,Cursor,381,227,2026-04-28T03:51:23.640037+00:00 +2026-02-16,Devin,241,94,2026-04-28T03:51:23.640037+00:00 +2026-02-16,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2026-02-16,Codegen,32,3,2026-04-28T03:51:23.640037+00:00 +2026-02-16,Jules,24,20,2026-04-28T03:51:23.640037+00:00 +2026-02-16,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-16,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2026-02-16,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-17,Codex,9614,3687,2026-04-28T03:51:23.640037+00:00 +2026-02-17,Copilot,283,100,2026-04-28T03:51:23.640037+00:00 +2026-02-17,Claude Code,4623,2859,2026-04-28T03:51:23.640037+00:00 +2026-02-17,Cursor,444,243,2026-04-28T03:51:23.640037+00:00 +2026-02-17,Devin,251,101,2026-04-28T03:51:23.640037+00:00 +2026-02-17,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-17,Codegen,2,2,2026-04-28T03:51:23.640037+00:00 +2026-02-17,Jules,21,13,2026-04-28T03:51:23.640037+00:00 +2026-02-17,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-17,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2026-02-17,Open SWE,4,2,2026-04-28T03:51:23.640037+00:00 +2026-02-18,Codex,9544,3653,2026-04-28T03:51:23.640037+00:00 +2026-02-18,Copilot,536,104,2026-04-28T03:51:23.640037+00:00 +2026-02-18,Claude Code,4486,2864,2026-04-28T03:51:23.640037+00:00 +2026-02-18,Cursor,435,246,2026-04-28T03:51:23.640037+00:00 +2026-02-18,Devin,257,107,2026-04-28T03:51:23.640037+00:00 +2026-02-18,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-18,Codegen,4,2,2026-04-28T03:51:23.640037+00:00 +2026-02-18,Jules,22,19,2026-04-28T03:51:23.640037+00:00 +2026-02-18,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-18,OpenHands,6,5,2026-04-28T03:51:23.640037+00:00 +2026-02-18,Open SWE,4,2,2026-04-28T03:51:23.640037+00:00 +2026-02-19,Codex,9260,3528,2026-04-28T03:51:23.640037+00:00 +2026-02-19,Copilot,153,79,2026-04-28T03:51:23.640037+00:00 +2026-02-19,Claude Code,4648,2903,2026-04-28T03:51:23.640037+00:00 +2026-02-19,Cursor,496,254,2026-04-28T03:51:23.640037+00:00 +2026-02-19,Devin,435,89,2026-04-28T03:51:23.640037+00:00 +2026-02-19,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-19,Codegen,1,1,2026-04-28T03:51:23.640037+00:00 +2026-02-19,Jules,24,22,2026-04-28T03:51:23.640037+00:00 +2026-02-19,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-19,OpenHands,4,2,2026-04-28T03:51:23.640037+00:00 +2026-02-19,Open SWE,7,2,2026-04-28T03:51:23.640037+00:00 +2026-02-20,Codex,9626,3652,2026-04-28T03:51:23.640037+00:00 +2026-02-20,Copilot,169,90,2026-04-28T03:51:23.640037+00:00 +2026-02-20,Claude Code,5083,3041,2026-04-28T03:51:23.640037+00:00 +2026-02-20,Cursor,464,251,2026-04-28T03:51:23.640037+00:00 +2026-02-20,Devin,825,113,2026-04-28T03:51:23.640037+00:00 +2026-02-20,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-20,Codegen,2,2,2026-04-28T03:51:23.640037+00:00 +2026-02-20,Jules,25,21,2026-04-28T03:51:23.640037+00:00 +2026-02-20,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-20,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2026-02-20,Open SWE,6,1,2026-04-28T03:51:23.640037+00:00 +2026-02-21,Codex,9919,3519,2026-04-28T03:51:23.640037+00:00 +2026-02-21,Copilot,156,98,2026-04-28T03:51:23.640037+00:00 +2026-02-21,Claude Code,5486,3296,2026-04-28T03:51:23.640037+00:00 +2026-02-21,Cursor,435,223,2026-04-28T03:51:23.640037+00:00 +2026-02-21,Devin,127,54,2026-04-28T03:51:23.640037+00:00 +2026-02-21,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-21,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-21,Jules,32,25,2026-04-28T03:51:23.640037+00:00 +2026-02-21,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-21,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-21,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2026-02-22,Codex,9904,3421,2026-04-28T03:51:23.640037+00:00 +2026-02-22,Copilot,198,98,2026-04-28T03:51:23.640037+00:00 +2026-02-22,Claude Code,5360,3186,2026-04-28T03:51:23.640037+00:00 +2026-02-22,Cursor,423,191,2026-04-28T03:51:23.640037+00:00 +2026-02-22,Devin,214,58,2026-04-28T03:51:23.640037+00:00 +2026-02-22,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-22,Codegen,1,1,2026-04-28T03:51:23.640037+00:00 +2026-02-22,Jules,26,22,2026-04-28T03:51:23.640037+00:00 +2026-02-22,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-22,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2026-02-22,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2026-02-23,Codex,9594,3706,2026-04-28T03:51:23.640037+00:00 +2026-02-23,Copilot,309,120,2026-04-28T03:51:23.640037+00:00 +2026-02-23,Claude Code,4592,2912,2026-04-28T03:51:23.640037+00:00 +2026-02-23,Cursor,1756,245,2026-04-28T03:51:23.640037+00:00 +2026-02-23,Devin,234,78,2026-04-28T03:51:23.640037+00:00 +2026-02-23,Sweep,3,2,2026-04-28T03:51:23.640037+00:00 +2026-02-23,Codegen,15,6,2026-04-28T03:51:23.640037+00:00 +2026-02-23,Jules,17,15,2026-04-28T03:51:23.640037+00:00 +2026-02-23,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-23,OpenHands,7,3,2026-04-28T03:51:23.640037+00:00 +2026-02-23,Open SWE,7,1,2026-04-28T03:51:23.640037+00:00 +2026-02-24,Codex,9335,3702,2026-04-28T03:51:23.640037+00:00 +2026-02-24,Copilot,231,140,2026-04-28T03:51:23.640037+00:00 +2026-02-24,Claude Code,4940,3079,2026-04-28T03:51:23.640037+00:00 +2026-02-24,Cursor,673,502,2026-04-28T03:51:23.640037+00:00 +2026-02-24,Devin,195,90,2026-04-28T03:51:23.640037+00:00 +2026-02-24,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2026-02-24,Codegen,12,5,2026-04-28T03:51:23.640037+00:00 +2026-02-24,Jules,37,21,2026-04-28T03:51:23.640037+00:00 +2026-02-24,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-24,OpenHands,5,5,2026-04-28T03:51:23.640037+00:00 +2026-02-24,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2026-02-25,Codex,8926,3680,2026-04-28T03:51:23.640037+00:00 +2026-02-25,Copilot,229,104,2026-04-28T03:51:23.640037+00:00 +2026-02-25,Claude Code,4965,3181,2026-04-28T03:51:23.640037+00:00 +2026-02-25,Cursor,1138,931,2026-04-28T03:51:23.640037+00:00 +2026-02-25,Devin,248,110,2026-04-28T03:51:23.640037+00:00 +2026-02-25,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-25,Codegen,3,3,2026-04-28T03:51:23.640037+00:00 +2026-02-25,Jules,39,26,2026-04-28T03:51:23.640037+00:00 +2026-02-25,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-25,OpenHands,5,5,2026-04-28T03:51:23.640037+00:00 +2026-02-25,Open SWE,3,1,2026-04-28T03:51:23.640037+00:00 +2026-02-26,Codex,9752,3832,2026-04-28T03:51:23.640037+00:00 +2026-02-26,Copilot,201,106,2026-04-28T03:51:23.640037+00:00 +2026-02-26,Claude Code,4857,3176,2026-04-28T03:51:23.640037+00:00 +2026-02-26,Cursor,804,647,2026-04-28T03:51:23.640037+00:00 +2026-02-26,Devin,278,110,2026-04-28T03:51:23.640037+00:00 +2026-02-26,Sweep,2,2,2026-04-28T03:51:23.640037+00:00 +2026-02-26,Codegen,4,2,2026-04-28T03:51:23.640037+00:00 +2026-02-26,Jules,25,17,2026-04-28T03:51:23.640037+00:00 +2026-02-26,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-26,OpenHands,7,6,2026-04-28T03:51:23.640037+00:00 +2026-02-26,Open SWE,4,1,2026-04-28T03:51:23.640037+00:00 +2026-02-27,Codex,11452,4010,2026-04-28T03:51:23.640037+00:00 +2026-02-27,Copilot,251,111,2026-04-28T03:51:23.640037+00:00 +2026-02-27,Claude Code,5593,3439,2026-04-28T03:51:23.640037+00:00 +2026-02-27,Cursor,602,427,2026-04-28T03:51:23.640037+00:00 +2026-02-27,Devin,437,78,2026-04-28T03:51:23.640037+00:00 +2026-02-27,Sweep,2,2,2026-04-28T03:51:23.640037+00:00 +2026-02-27,Codegen,8,3,2026-04-28T03:51:23.640037+00:00 +2026-02-27,Jules,24,16,2026-04-28T03:51:23.640037+00:00 +2026-02-27,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-27,OpenHands,6,6,2026-04-28T03:51:23.640037+00:00 +2026-02-27,Open SWE,4,3,2026-04-28T03:51:23.640037+00:00 +2026-02-28,Codex,9222,3496,2026-04-28T03:51:23.640037+00:00 +2026-02-28,Copilot,132,81,2026-04-28T03:51:23.640037+00:00 +2026-02-28,Claude Code,6012,3440,2026-04-28T03:51:23.640037+00:00 +2026-02-28,Cursor,521,350,2026-04-28T03:51:23.640037+00:00 +2026-02-28,Devin,182,70,2026-04-28T03:51:23.640037+00:00 +2026-02-28,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-28,Codegen,2,2,2026-04-28T03:51:23.640037+00:00 +2026-02-28,Jules,41,29,2026-04-28T03:51:23.640037+00:00 +2026-02-28,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-02-28,OpenHands,3,1,2026-04-28T03:51:23.640037+00:00 +2026-02-28,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2026-03-01,Codex,9319,3304,2026-04-28T03:51:23.640037+00:00 +2026-03-01,Copilot,226,109,2026-04-28T03:51:23.640037+00:00 +2026-03-01,Claude Code,6157,3448,2026-04-28T03:51:23.640037+00:00 +2026-03-01,Cursor,478,320,2026-04-28T03:51:23.640037+00:00 +2026-03-01,Devin,179,79,2026-04-28T03:51:23.640037+00:00 +2026-03-01,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2026-03-01,Codegen,6,4,2026-04-28T03:51:23.640037+00:00 +2026-03-01,Jules,47,34,2026-04-28T03:51:23.640037+00:00 +2026-03-01,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-01,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-01,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2026-03-02,Codex,9636,3715,2026-04-28T03:51:23.640037+00:00 +2026-03-02,Copilot,556,104,2026-04-28T03:51:23.640037+00:00 +2026-03-02,Claude Code,4508,2855,2026-04-28T03:51:23.640037+00:00 +2026-03-02,Cursor,634,410,2026-04-28T03:51:23.640037+00:00 +2026-03-02,Devin,256,113,2026-04-28T03:51:23.640037+00:00 +2026-03-02,Sweep,3,3,2026-04-28T03:51:23.640037+00:00 +2026-03-02,Codegen,2,2,2026-04-28T03:51:23.640037+00:00 +2026-03-02,Jules,44,29,2026-04-28T03:51:23.640037+00:00 +2026-03-02,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-02,OpenHands,14,3,2026-04-28T03:51:23.640037+00:00 +2026-03-02,Open SWE,3,1,2026-04-28T03:51:23.640037+00:00 +2026-03-03,Codex,10192,3887,2026-04-28T03:51:23.640037+00:00 +2026-03-03,Copilot,207,111,2026-04-28T03:51:23.640037+00:00 +2026-03-03,Claude Code,4602,2992,2026-04-28T03:51:23.640037+00:00 +2026-03-03,Cursor,551,333,2026-04-28T03:51:23.640037+00:00 +2026-03-03,Devin,268,129,2026-04-28T03:51:23.640037+00:00 +2026-03-03,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2026-03-03,Codegen,5,3,2026-04-28T03:51:23.640037+00:00 +2026-03-03,Jules,80,35,2026-04-28T03:51:23.640037+00:00 +2026-03-03,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-03,OpenHands,5,2,2026-04-28T03:51:23.640037+00:00 +2026-03-03,Open SWE,5,3,2026-04-28T03:51:23.640037+00:00 +2026-03-04,Codex,9827,3724,2026-04-28T03:51:23.640037+00:00 +2026-03-04,Copilot,177,108,2026-04-28T03:51:23.640037+00:00 +2026-03-04,Claude Code,5366,3413,2026-04-28T03:51:23.640037+00:00 +2026-03-04,Cursor,607,356,2026-04-28T03:51:23.640037+00:00 +2026-03-04,Devin,282,129,2026-04-28T03:51:23.640037+00:00 +2026-03-04,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-04,Codegen,4,3,2026-04-28T03:51:23.640037+00:00 +2026-03-04,Jules,32,31,2026-04-28T03:51:23.640037+00:00 +2026-03-04,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-04,OpenHands,6,4,2026-04-28T03:51:23.640037+00:00 +2026-03-04,Open SWE,15,3,2026-04-28T03:51:23.640037+00:00 +2026-03-05,Codex,9454,3657,2026-04-28T03:51:23.640037+00:00 +2026-03-05,Copilot,748,114,2026-04-28T03:51:23.640037+00:00 +2026-03-05,Claude Code,5442,3463,2026-04-28T03:51:23.640037+00:00 +2026-03-05,Cursor,815,401,2026-04-28T03:51:23.640037+00:00 +2026-03-05,Devin,591,147,2026-04-28T03:51:23.640037+00:00 +2026-03-05,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-05,Codegen,12,5,2026-04-28T03:51:23.640037+00:00 +2026-03-05,Jules,41,35,2026-04-28T03:51:23.640037+00:00 +2026-03-05,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-05,OpenHands,5,4,2026-04-28T03:51:23.640037+00:00 +2026-03-05,Open SWE,12,7,2026-04-28T03:51:23.640037+00:00 +2026-03-06,Codex,9534,3888,2026-04-28T03:51:23.640037+00:00 +2026-03-06,Copilot,291,108,2026-04-28T03:51:23.640037+00:00 +2026-03-06,Claude Code,5591,3487,2026-04-28T03:51:23.640037+00:00 +2026-03-06,Cursor,960,502,2026-04-28T03:51:23.640037+00:00 +2026-03-06,Devin,279,110,2026-04-28T03:51:23.640037+00:00 +2026-03-06,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2026-03-06,Codegen,7,4,2026-04-28T03:51:23.640037+00:00 +2026-03-06,Jules,34,30,2026-04-28T03:51:23.640037+00:00 +2026-03-06,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-06,OpenHands,6,5,2026-04-28T03:51:23.640037+00:00 +2026-03-06,Open SWE,6,3,2026-04-28T03:51:23.640037+00:00 +2026-03-07,Codex,9412,3434,2026-04-28T03:51:23.640037+00:00 +2026-03-07,Copilot,227,110,2026-04-28T03:51:23.640037+00:00 +2026-03-07,Claude Code,6160,3713,2026-04-28T03:51:23.640037+00:00 +2026-03-07,Cursor,605,327,2026-04-28T03:51:23.640037+00:00 +2026-03-07,Devin,240,88,2026-04-28T03:51:23.640037+00:00 +2026-03-07,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-07,Codegen,1,1,2026-04-28T03:51:23.640037+00:00 +2026-03-07,Jules,37,30,2026-04-28T03:51:23.640037+00:00 +2026-03-07,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-07,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-07,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-08,Codex,9310,3433,2026-04-28T03:51:23.640037+00:00 +2026-03-08,Copilot,343,121,2026-04-28T03:51:23.640037+00:00 +2026-03-08,Claude Code,6185,3709,2026-04-28T03:51:23.640037+00:00 +2026-03-08,Cursor,1146,320,2026-04-28T03:51:23.640037+00:00 +2026-03-08,Devin,234,103,2026-04-28T03:51:23.640037+00:00 +2026-03-08,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2026-03-08,Codegen,1,1,2026-04-28T03:51:23.640037+00:00 +2026-03-08,Jules,26,24,2026-04-28T03:51:23.640037+00:00 +2026-03-08,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-08,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2026-03-08,Open SWE,5,2,2026-04-28T03:51:23.640037+00:00 +2026-03-09,Codex,8978,3772,2026-04-28T03:51:23.640037+00:00 +2026-03-09,Copilot,228,128,2026-04-28T03:51:23.640037+00:00 +2026-03-09,Claude Code,5907,3692,2026-04-28T03:51:23.640037+00:00 +2026-03-09,Cursor,809,420,2026-04-28T03:51:23.640037+00:00 +2026-03-09,Devin,304,153,2026-04-28T03:51:23.640037+00:00 +2026-03-09,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2026-03-09,Codegen,1,1,2026-04-28T03:51:23.640037+00:00 +2026-03-09,Jules,34,31,2026-04-28T03:51:23.640037+00:00 +2026-03-09,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-09,OpenHands,3,3,2026-04-28T03:51:23.640037+00:00 +2026-03-09,Open SWE,10,4,2026-04-28T03:51:23.640037+00:00 +2026-03-10,Codex,9892,4005,2026-04-28T03:51:23.640037+00:00 +2026-03-10,Copilot,230,153,2026-04-28T03:51:23.640037+00:00 +2026-03-10,Claude Code,5759,3648,2026-04-28T03:51:23.640037+00:00 +2026-03-10,Cursor,755,399,2026-04-28T03:51:23.640037+00:00 +2026-03-10,Devin,284,132,2026-04-28T03:51:23.640037+00:00 +2026-03-10,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2026-03-10,Codegen,2,2,2026-04-28T03:51:23.640037+00:00 +2026-03-10,Jules,44,33,2026-04-28T03:51:23.640037+00:00 +2026-03-10,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-10,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2026-03-10,Open SWE,11,5,2026-04-28T03:51:23.640037+00:00 +2026-03-11,Codex,9639,3932,2026-04-28T03:51:23.640037+00:00 +2026-03-11,Copilot,776,226,2026-04-28T03:51:23.640037+00:00 +2026-03-11,Claude Code,5986,3771,2026-04-28T03:51:23.640037+00:00 +2026-03-11,Cursor,767,386,2026-04-28T03:51:23.640037+00:00 +2026-03-11,Devin,290,139,2026-04-28T03:51:23.640037+00:00 +2026-03-11,Sweep,2,1,2026-04-28T03:51:23.640037+00:00 +2026-03-11,Codegen,10,6,2026-04-28T03:51:23.640037+00:00 +2026-03-11,Jules,36,29,2026-04-28T03:51:23.640037+00:00 +2026-03-11,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-11,OpenHands,20,2,2026-04-28T03:51:23.640037+00:00 +2026-03-11,Open SWE,12,4,2026-04-28T03:51:23.640037+00:00 +2026-03-12,Codex,9399,3941,2026-04-28T03:51:23.640037+00:00 +2026-03-12,Copilot,301,134,2026-04-28T03:51:23.640037+00:00 +2026-03-12,Claude Code,5813,3592,2026-04-28T03:51:23.640037+00:00 +2026-03-12,Cursor,648,344,2026-04-28T03:51:23.640037+00:00 +2026-03-12,Devin,270,142,2026-04-28T03:51:23.640037+00:00 +2026-03-12,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2026-03-12,Codegen,70,6,2026-04-28T03:51:23.640037+00:00 +2026-03-12,Jules,57,52,2026-04-28T03:51:23.640037+00:00 +2026-03-12,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-12,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2026-03-12,Open SWE,19,4,2026-04-28T03:51:23.640037+00:00 +2026-03-13,Codex,11027,3675,2026-04-28T03:51:23.640037+00:00 +2026-03-13,Copilot,301,150,2026-04-28T03:51:23.640037+00:00 +2026-03-13,Claude Code,5888,3752,2026-04-28T03:51:23.640037+00:00 +2026-03-13,Cursor,722,368,2026-04-28T03:51:23.640037+00:00 +2026-03-13,Devin,260,121,2026-04-28T03:51:23.640037+00:00 +2026-03-13,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-13,Codegen,112,6,2026-04-28T03:51:23.640037+00:00 +2026-03-13,Jules,109,83,2026-04-28T03:51:23.640037+00:00 +2026-03-13,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-13,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2026-03-13,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2026-03-14,Codex,9015,3260,2026-04-28T03:51:23.640037+00:00 +2026-03-14,Copilot,241,133,2026-04-28T03:51:23.640037+00:00 +2026-03-14,Claude Code,6417,3869,2026-04-28T03:51:23.640037+00:00 +2026-03-14,Cursor,577,278,2026-04-28T03:51:23.640037+00:00 +2026-03-14,Devin,178,94,2026-04-28T03:51:23.640037+00:00 +2026-03-14,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2026-03-14,Codegen,24,2,2026-04-28T03:51:23.640037+00:00 +2026-03-14,Jules,40,32,2026-04-28T03:51:23.640037+00:00 +2026-03-14,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-14,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-14,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-15,Codex,8066,3172,2026-04-28T03:51:23.640037+00:00 +2026-03-15,Copilot,821,139,2026-04-28T03:51:23.640037+00:00 +2026-03-15,Claude Code,7310,4278,2026-04-28T03:51:23.640037+00:00 +2026-03-15,Cursor,583,332,2026-04-28T03:51:23.640037+00:00 +2026-03-15,Devin,195,94,2026-04-28T03:51:23.640037+00:00 +2026-03-15,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-15,Codegen,5,4,2026-04-28T03:51:23.640037+00:00 +2026-03-15,Jules,45,35,2026-04-28T03:51:23.640037+00:00 +2026-03-15,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-15,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-15,Open SWE,6,2,2026-04-28T03:51:23.640037+00:00 +2026-03-16,Codex,8453,3417,2026-04-28T03:51:23.640037+00:00 +2026-03-16,Copilot,152,106,2026-04-28T03:51:23.640037+00:00 +2026-03-16,Claude Code,6883,4236,2026-04-28T03:51:23.640037+00:00 +2026-03-16,Cursor,783,441,2026-04-28T03:51:23.640037+00:00 +2026-03-16,Devin,266,124,2026-04-28T03:51:23.640037+00:00 +2026-03-16,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2026-03-16,Codegen,1,1,2026-04-28T03:51:23.640037+00:00 +2026-03-16,Jules,32,28,2026-04-28T03:51:23.640037+00:00 +2026-03-16,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-16,OpenHands,3,2,2026-04-28T03:51:23.640037+00:00 +2026-03-16,Open SWE,6,2,2026-04-28T03:51:23.640037+00:00 +2026-03-17,Codex,8122,3500,2026-04-28T03:51:23.640037+00:00 +2026-03-17,Copilot,183,119,2026-04-28T03:51:23.640037+00:00 +2026-03-17,Claude Code,6287,4057,2026-04-28T03:51:23.640037+00:00 +2026-03-17,Cursor,803,409,2026-04-28T03:51:23.640037+00:00 +2026-03-17,Devin,253,133,2026-04-28T03:51:23.640037+00:00 +2026-03-17,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2026-03-17,Codegen,2,2,2026-04-28T03:51:23.640037+00:00 +2026-03-17,Jules,45,31,2026-04-28T03:51:23.640037+00:00 +2026-03-17,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-17,OpenHands,5,3,2026-04-28T03:51:23.640037+00:00 +2026-03-17,Open SWE,7,4,2026-04-28T03:51:23.640037+00:00 +2026-03-18,Codex,8234,3269,2026-04-28T03:51:23.640037+00:00 +2026-03-18,Copilot,388,139,2026-04-28T03:51:23.640037+00:00 +2026-03-18,Claude Code,6632,4178,2026-04-28T03:51:23.640037+00:00 +2026-03-18,Cursor,681,376,2026-04-28T03:51:23.640037+00:00 +2026-03-18,Devin,308,155,2026-04-28T03:51:23.640037+00:00 +2026-03-18,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2026-03-18,Codegen,5,1,2026-04-28T03:51:23.640037+00:00 +2026-03-18,Jules,21,15,2026-04-28T03:51:23.640037+00:00 +2026-03-18,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-18,OpenHands,4,3,2026-04-28T03:51:23.640037+00:00 +2026-03-18,Open SWE,14,6,2026-04-28T03:51:23.640037+00:00 +2026-03-19,Codex,8407,3238,2026-04-28T03:51:23.640037+00:00 +2026-03-19,Copilot,209,130,2026-04-28T03:51:23.640037+00:00 +2026-03-19,Claude Code,6215,3946,2026-04-28T03:51:23.640037+00:00 +2026-03-19,Cursor,695,375,2026-04-28T03:51:23.640037+00:00 +2026-03-19,Devin,290,138,2026-04-28T03:51:23.640037+00:00 +2026-03-19,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2026-03-19,Codegen,9,2,2026-04-28T03:51:23.640037+00:00 +2026-03-19,Jules,35,29,2026-04-28T03:51:23.640037+00:00 +2026-03-19,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-19,OpenHands,8,5,2026-04-28T03:51:23.640037+00:00 +2026-03-19,Open SWE,5,3,2026-04-28T03:51:23.640037+00:00 +2026-03-20,Codex,8569,2971,2026-04-28T03:51:23.640037+00:00 +2026-03-20,Copilot,203,114,2026-04-28T03:51:23.640037+00:00 +2026-03-20,Claude Code,6260,3992,2026-04-28T03:51:23.640037+00:00 +2026-03-20,Cursor,767,391,2026-04-28T03:51:23.640037+00:00 +2026-03-20,Devin,292,123,2026-04-28T03:51:23.640037+00:00 +2026-03-20,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-20,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-20,Jules,31,26,2026-04-28T03:51:23.640037+00:00 +2026-03-20,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-20,OpenHands,5,3,2026-04-28T03:51:23.640037+00:00 +2026-03-20,Open SWE,5,3,2026-04-28T03:51:23.640037+00:00 +2026-03-21,Codex,7641,2771,2026-04-28T03:51:23.640037+00:00 +2026-03-21,Copilot,459,107,2026-04-28T03:51:23.640037+00:00 +2026-03-21,Claude Code,7166,4255,2026-04-28T03:51:23.640037+00:00 +2026-03-21,Cursor,561,275,2026-04-28T03:51:23.640037+00:00 +2026-03-21,Devin,235,98,2026-04-28T03:51:23.640037+00:00 +2026-03-21,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2026-03-21,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-21,Jules,32,23,2026-04-28T03:51:23.640037+00:00 +2026-03-21,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-21,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2026-03-21,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2026-03-22,Codex,8074,2799,2026-04-28T03:51:23.640037+00:00 +2026-03-22,Copilot,244,124,2026-04-28T03:51:23.640037+00:00 +2026-03-22,Claude Code,7272,4367,2026-04-28T03:51:23.640037+00:00 +2026-03-22,Cursor,538,292,2026-04-28T03:51:23.640037+00:00 +2026-03-22,Devin,502,124,2026-04-28T03:51:23.640037+00:00 +2026-03-22,Sweep,2,1,2026-04-28T03:51:23.640037+00:00 +2026-03-22,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-22,Jules,24,19,2026-04-28T03:51:23.640037+00:00 +2026-03-22,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-22,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-22,Open SWE,7,2,2026-04-28T03:51:23.640037+00:00 +2026-03-23,Codex,8947,3191,2026-04-28T03:51:23.640037+00:00 +2026-03-23,Copilot,690,126,2026-04-28T03:51:23.640037+00:00 +2026-03-23,Claude Code,6806,4277,2026-04-28T03:51:23.640037+00:00 +2026-03-23,Cursor,691,440,2026-04-28T03:51:23.640037+00:00 +2026-03-23,Devin,595,144,2026-04-28T03:51:23.640037+00:00 +2026-03-23,Sweep,4,3,2026-04-28T03:51:23.640037+00:00 +2026-03-23,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-23,Jules,39,36,2026-04-28T03:51:23.640037+00:00 +2026-03-23,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-23,OpenHands,13,2,2026-04-28T03:51:23.640037+00:00 +2026-03-23,Open SWE,2,2,2026-04-28T03:51:23.640037+00:00 +2026-03-24,Codex,9232,3391,2026-04-28T03:51:23.640037+00:00 +2026-03-24,Copilot,223,138,2026-04-28T03:51:23.640037+00:00 +2026-03-24,Claude Code,7054,4343,2026-04-28T03:51:23.640037+00:00 +2026-03-24,Cursor,1015,352,2026-04-28T03:51:23.640037+00:00 +2026-03-24,Devin,311,151,2026-04-28T03:51:23.640037+00:00 +2026-03-24,Sweep,8,3,2026-04-28T03:51:23.640037+00:00 +2026-03-24,Codegen,2,1,2026-04-28T03:51:23.640037+00:00 +2026-03-24,Jules,37,30,2026-04-28T03:51:23.640037+00:00 +2026-03-24,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-24,OpenHands,4,3,2026-04-28T03:51:23.640037+00:00 +2026-03-24,Open SWE,12,6,2026-04-28T03:51:23.640037+00:00 +2026-03-25,Codex,8958,3373,2026-04-28T03:51:23.640037+00:00 +2026-03-25,Copilot,908,162,2026-04-28T03:51:23.640037+00:00 +2026-03-25,Claude Code,6613,4202,2026-04-28T03:51:23.640037+00:00 +2026-03-25,Cursor,893,378,2026-04-28T03:51:23.640037+00:00 +2026-03-25,Devin,475,186,2026-04-28T03:51:23.640037+00:00 +2026-03-25,Sweep,4,4,2026-04-28T03:51:23.640037+00:00 +2026-03-25,Codegen,1,1,2026-04-28T03:51:23.640037+00:00 +2026-03-25,Jules,35,32,2026-04-28T03:51:23.640037+00:00 +2026-03-25,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-25,OpenHands,9,9,2026-04-28T03:51:23.640037+00:00 +2026-03-25,Open SWE,11,7,2026-04-28T03:51:23.640037+00:00 +2026-03-26,Codex,8196,3314,2026-04-28T03:51:23.640037+00:00 +2026-03-26,Copilot,203,132,2026-04-28T03:51:23.640037+00:00 +2026-03-26,Claude Code,6484,4080,2026-04-28T03:51:23.640037+00:00 +2026-03-26,Cursor,780,374,2026-04-28T03:51:23.640037+00:00 +2026-03-26,Devin,296,130,2026-04-28T03:51:23.640037+00:00 +2026-03-26,Sweep,3,2,2026-04-28T03:51:23.640037+00:00 +2026-03-26,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-26,Jules,21,17,2026-04-28T03:51:23.640037+00:00 +2026-03-26,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-26,OpenHands,6,5,2026-04-28T03:51:23.640037+00:00 +2026-03-26,Open SWE,17,6,2026-04-28T03:51:23.640037+00:00 +2026-03-27,Codex,8326,3403,2026-04-28T03:51:23.640037+00:00 +2026-03-27,Copilot,415,111,2026-04-28T03:51:23.640037+00:00 +2026-03-27,Claude Code,6468,4093,2026-04-28T03:51:23.640037+00:00 +2026-03-27,Cursor,725,347,2026-04-28T03:51:23.640037+00:00 +2026-03-27,Devin,239,114,2026-04-28T03:51:23.640037+00:00 +2026-03-27,Sweep,3,2,2026-04-28T03:51:23.640037+00:00 +2026-03-27,Codegen,1,1,2026-04-28T03:51:23.640037+00:00 +2026-03-27,Jules,22,21,2026-04-28T03:51:23.640037+00:00 +2026-03-27,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-27,OpenHands,4,4,2026-04-28T03:51:23.640037+00:00 +2026-03-27,Open SWE,3,3,2026-04-28T03:51:23.640037+00:00 +2026-03-28,Codex,7722,3017,2026-04-28T03:51:23.640037+00:00 +2026-03-28,Copilot,265,131,2026-04-28T03:51:23.640037+00:00 +2026-03-28,Claude Code,6921,4285,2026-04-28T03:51:23.640037+00:00 +2026-03-28,Cursor,602,290,2026-04-28T03:51:23.640037+00:00 +2026-03-28,Devin,182,102,2026-04-28T03:51:23.640037+00:00 +2026-03-28,Sweep,3,3,2026-04-28T03:51:23.640037+00:00 +2026-03-28,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-28,Jules,25,22,2026-04-28T03:51:23.640037+00:00 +2026-03-28,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-28,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2026-03-28,Open SWE,3,3,2026-04-28T03:51:23.640037+00:00 +2026-03-29,Codex,8235,3055,2026-04-28T03:51:23.640037+00:00 +2026-03-29,Copilot,243,99,2026-04-28T03:51:23.640037+00:00 +2026-03-29,Claude Code,6230,3907,2026-04-28T03:51:23.640037+00:00 +2026-03-29,Cursor,512,273,2026-04-28T03:51:23.640037+00:00 +2026-03-29,Devin,206,91,2026-04-28T03:51:23.640037+00:00 +2026-03-29,Sweep,3,2,2026-04-28T03:51:23.640037+00:00 +2026-03-29,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-29,Jules,28,23,2026-04-28T03:51:23.640037+00:00 +2026-03-29,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-29,OpenHands,2,1,2026-04-28T03:51:23.640037+00:00 +2026-03-29,Open SWE,5,2,2026-04-28T03:51:23.640037+00:00 +2026-03-30,Codex,8759,3521,2026-04-28T03:51:23.640037+00:00 +2026-03-30,Copilot,307,133,2026-04-28T03:51:23.640037+00:00 +2026-03-30,Claude Code,5963,3983,2026-04-28T03:51:23.640037+00:00 +2026-03-30,Cursor,654,394,2026-04-28T03:51:23.640037+00:00 +2026-03-30,Devin,285,136,2026-04-28T03:51:23.640037+00:00 +2026-03-30,Sweep,2,1,2026-04-28T03:51:23.640037+00:00 +2026-03-30,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-30,Jules,35,29,2026-04-28T03:51:23.640037+00:00 +2026-03-30,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-30,OpenHands,3,3,2026-04-28T03:51:23.640037+00:00 +2026-03-30,Open SWE,9,6,2026-04-28T03:51:23.640037+00:00 +2026-03-31,Codex,8441,3435,2026-04-28T03:51:23.640037+00:00 +2026-03-31,Copilot,338,154,2026-04-28T03:51:23.640037+00:00 +2026-03-31,Claude Code,6005,3898,2026-04-28T03:51:23.640037+00:00 +2026-03-31,Cursor,635,358,2026-04-28T03:51:23.640037+00:00 +2026-03-31,Devin,308,144,2026-04-28T03:51:23.640037+00:00 +2026-03-31,Sweep,2,2,2026-04-28T03:51:23.640037+00:00 +2026-03-31,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-31,Jules,30,22,2026-04-28T03:51:23.640037+00:00 +2026-03-31,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-03-31,OpenHands,7,5,2026-04-28T03:51:23.640037+00:00 +2026-03-31,Open SWE,17,6,2026-04-28T03:51:23.640037+00:00 +2026-04-01,Codex,7924,3356,2026-04-28T03:51:23.640037+00:00 +2026-04-01,Copilot,226,131,2026-04-28T03:51:23.640037+00:00 +2026-04-01,Claude Code,5669,3799,2026-04-28T03:51:23.640037+00:00 +2026-04-01,Cursor,628,339,2026-04-28T03:51:23.640037+00:00 +2026-04-01,Devin,897,192,2026-04-28T03:51:23.640037+00:00 +2026-04-01,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2026-04-01,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-01,Jules,16,16,2026-04-28T03:51:23.640037+00:00 +2026-04-01,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-01,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2026-04-01,Open SWE,5,3,2026-04-28T03:51:23.640037+00:00 +2026-04-02,Codex,8216,3294,2026-04-28T03:51:23.640037+00:00 +2026-04-02,Copilot,157,106,2026-04-28T03:51:23.640037+00:00 +2026-04-02,Claude Code,5395,3600,2026-04-28T03:51:23.640037+00:00 +2026-04-02,Cursor,615,339,2026-04-28T03:51:23.640037+00:00 +2026-04-02,Devin,367,168,2026-04-28T03:51:23.640037+00:00 +2026-04-02,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2026-04-02,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-02,Jules,12,10,2026-04-28T03:51:23.640037+00:00 +2026-04-02,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-02,OpenHands,7,4,2026-04-28T03:51:23.640037+00:00 +2026-04-02,Open SWE,6,2,2026-04-28T03:51:23.640037+00:00 +2026-04-03,Codex,8006,3259,2026-04-28T03:51:23.640037+00:00 +2026-04-03,Copilot,199,103,2026-04-28T03:51:23.640037+00:00 +2026-04-03,Claude Code,5601,3750,2026-04-28T03:51:23.640037+00:00 +2026-04-03,Cursor,545,344,2026-04-28T03:51:23.640037+00:00 +2026-04-03,Devin,483,145,2026-04-28T03:51:23.640037+00:00 +2026-04-03,Sweep,3,3,2026-04-28T03:51:23.640037+00:00 +2026-04-03,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-03,Jules,29,27,2026-04-28T03:51:23.640037+00:00 +2026-04-03,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-03,OpenHands,8,5,2026-04-28T03:51:23.640037+00:00 +2026-04-03,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-04,Codex,7647,2865,2026-04-28T03:51:23.640037+00:00 +2026-04-04,Copilot,259,110,2026-04-28T03:51:23.640037+00:00 +2026-04-04,Claude Code,6037,3916,2026-04-28T03:51:23.640037+00:00 +2026-04-04,Cursor,645,371,2026-04-28T03:51:23.640037+00:00 +2026-04-04,Devin,169,97,2026-04-28T03:51:23.640037+00:00 +2026-04-04,Sweep,2,2,2026-04-28T03:51:23.640037+00:00 +2026-04-04,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-04,Jules,26,18,2026-04-28T03:51:23.640037+00:00 +2026-04-04,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-04,OpenHands,16,2,2026-04-28T03:51:23.640037+00:00 +2026-04-04,Open SWE,2,1,2026-04-28T03:51:23.640037+00:00 +2026-04-05,Codex,7492,2760,2026-04-28T03:51:23.640037+00:00 +2026-04-05,Copilot,187,102,2026-04-28T03:51:23.640037+00:00 +2026-04-05,Claude Code,5887,3789,2026-04-28T03:51:23.640037+00:00 +2026-04-05,Cursor,520,294,2026-04-28T03:51:23.640037+00:00 +2026-04-05,Devin,171,95,2026-04-28T03:51:23.640037+00:00 +2026-04-05,Sweep,2,2,2026-04-28T03:51:23.640037+00:00 +2026-04-05,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-05,Jules,16,15,2026-04-28T03:51:23.640037+00:00 +2026-04-05,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-05,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-05,Open SWE,9,3,2026-04-28T03:51:23.640037+00:00 +2026-04-06,Codex,7035,2938,2026-04-28T03:51:23.640037+00:00 +2026-04-06,Copilot,277,94,2026-04-28T03:51:23.640037+00:00 +2026-04-06,Claude Code,5697,3749,2026-04-28T03:51:23.640037+00:00 +2026-04-06,Cursor,565,363,2026-04-28T03:51:23.640037+00:00 +2026-04-06,Devin,273,135,2026-04-28T03:51:23.640037+00:00 +2026-04-06,Sweep,2,2,2026-04-28T03:51:23.640037+00:00 +2026-04-06,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-06,Jules,17,14,2026-04-28T03:51:23.640037+00:00 +2026-04-06,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-06,OpenHands,5,4,2026-04-28T03:51:23.640037+00:00 +2026-04-06,Open SWE,3,3,2026-04-28T03:51:23.640037+00:00 +2026-04-07,Codex,6898,3158,2026-04-28T03:51:23.640037+00:00 +2026-04-07,Copilot,159,101,2026-04-28T03:51:23.640037+00:00 +2026-04-07,Claude Code,5580,3777,2026-04-28T03:51:23.640037+00:00 +2026-04-07,Cursor,864,561,2026-04-28T03:51:23.640037+00:00 +2026-04-07,Devin,449,161,2026-04-28T03:51:23.640037+00:00 +2026-04-07,Sweep,2,2,2026-04-28T03:51:23.640037+00:00 +2026-04-07,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-07,Jules,12,12,2026-04-28T03:51:23.640037+00:00 +2026-04-07,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-07,OpenHands,5,5,2026-04-28T03:51:23.640037+00:00 +2026-04-07,Open SWE,4,2,2026-04-28T03:51:23.640037+00:00 +2026-04-08,Codex,7724,3372,2026-04-28T03:51:23.640037+00:00 +2026-04-08,Copilot,638,130,2026-04-28T03:51:23.640037+00:00 +2026-04-08,Claude Code,5333,3644,2026-04-28T03:51:23.640037+00:00 +2026-04-08,Cursor,773,417,2026-04-28T03:51:23.640037+00:00 +2026-04-08,Devin,310,149,2026-04-28T03:51:23.640037+00:00 +2026-04-08,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-08,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-08,Jules,22,20,2026-04-28T03:51:23.640037+00:00 +2026-04-08,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-08,OpenHands,3,3,2026-04-28T03:51:23.640037+00:00 +2026-04-08,Open SWE,5,5,2026-04-28T03:51:23.640037+00:00 +2026-04-09,Codex,7746,3382,2026-04-28T03:51:23.640037+00:00 +2026-04-09,Copilot,233,110,2026-04-28T03:51:23.640037+00:00 +2026-04-09,Claude Code,5570,3767,2026-04-28T03:51:23.640037+00:00 +2026-04-09,Cursor,963,452,2026-04-28T03:51:23.640037+00:00 +2026-04-09,Devin,327,180,2026-04-28T03:51:23.640037+00:00 +2026-04-09,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2026-04-09,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-09,Jules,17,16,2026-04-28T03:51:23.640037+00:00 +2026-04-09,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-09,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2026-04-09,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2026-04-10,Codex,7390,3231,2026-04-28T03:51:23.640037+00:00 +2026-04-10,Copilot,235,115,2026-04-28T03:51:23.640037+00:00 +2026-04-10,Claude Code,5786,3797,2026-04-28T03:51:23.640037+00:00 +2026-04-10,Cursor,908,443,2026-04-28T03:51:23.640037+00:00 +2026-04-10,Devin,265,150,2026-04-28T03:51:23.640037+00:00 +2026-04-10,Sweep,2,2,2026-04-28T03:51:23.640037+00:00 +2026-04-10,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-10,Jules,11,10,2026-04-28T03:51:23.640037+00:00 +2026-04-10,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-10,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2026-04-10,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2026-04-11,Codex,7018,2841,2026-04-28T03:51:23.640037+00:00 +2026-04-11,Copilot,202,107,2026-04-28T03:51:23.640037+00:00 +2026-04-11,Claude Code,5607,3605,2026-04-28T03:51:23.640037+00:00 +2026-04-11,Cursor,605,364,2026-04-28T03:51:23.640037+00:00 +2026-04-11,Devin,576,124,2026-04-28T03:51:23.640037+00:00 +2026-04-11,Sweep,4,2,2026-04-28T03:51:23.640037+00:00 +2026-04-11,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-11,Jules,8,7,2026-04-28T03:51:23.640037+00:00 +2026-04-11,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-11,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-11,Open SWE,3,2,2026-04-28T03:51:23.640037+00:00 +2026-04-12,Codex,6401,2746,2026-04-28T03:51:23.640037+00:00 +2026-04-12,Copilot,153,99,2026-04-28T03:51:23.640037+00:00 +2026-04-12,Claude Code,5483,3585,2026-04-28T03:51:23.640037+00:00 +2026-04-12,Cursor,550,334,2026-04-28T03:51:23.640037+00:00 +2026-04-12,Devin,269,126,2026-04-28T03:51:23.640037+00:00 +2026-04-12,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-12,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-12,Jules,15,15,2026-04-28T03:51:23.640037+00:00 +2026-04-12,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-12,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-12,Open SWE,7,2,2026-04-28T03:51:23.640037+00:00 +2026-04-13,Codex,7063,3247,2026-04-28T03:51:23.640037+00:00 +2026-04-13,Copilot,252,122,2026-04-28T03:51:23.640037+00:00 +2026-04-13,Claude Code,5648,3689,2026-04-28T03:51:23.640037+00:00 +2026-04-13,Cursor,747,466,2026-04-28T03:51:23.640037+00:00 +2026-04-13,Devin,318,168,2026-04-28T03:51:23.640037+00:00 +2026-04-13,Sweep,3,2,2026-04-28T03:51:23.640037+00:00 +2026-04-13,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-13,Jules,24,17,2026-04-28T03:51:23.640037+00:00 +2026-04-13,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-13,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2026-04-13,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2026-04-14,Codex,7477,3285,2026-04-28T03:51:23.640037+00:00 +2026-04-14,Copilot,549,146,2026-04-28T03:51:23.640037+00:00 +2026-04-14,Claude Code,6374,3986,2026-04-28T03:51:23.640037+00:00 +2026-04-14,Cursor,824,475,2026-04-28T03:51:23.640037+00:00 +2026-04-14,Devin,577,205,2026-04-28T03:51:23.640037+00:00 +2026-04-14,Sweep,2,1,2026-04-28T03:51:23.640037+00:00 +2026-04-14,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-14,Jules,51,16,2026-04-28T03:51:23.640037+00:00 +2026-04-14,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-14,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2026-04-14,Open SWE,2,2,2026-04-28T03:51:23.640037+00:00 +2026-04-15,Codex,7841,3320,2026-04-28T03:51:23.640037+00:00 +2026-04-15,Copilot,292,142,2026-04-28T03:51:23.640037+00:00 +2026-04-15,Claude Code,6394,4175,2026-04-28T03:51:23.640037+00:00 +2026-04-15,Cursor,711,422,2026-04-28T03:51:23.640037+00:00 +2026-04-15,Devin,539,288,2026-04-28T03:51:23.640037+00:00 +2026-04-15,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-15,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-15,Jules,24,18,2026-04-28T03:51:23.640037+00:00 +2026-04-15,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-15,OpenHands,16,4,2026-04-28T03:51:23.640037+00:00 +2026-04-15,Open SWE,4,2,2026-04-28T03:51:23.640037+00:00 +2026-04-16,Codex,7253,3294,2026-04-28T03:51:23.640037+00:00 +2026-04-16,Copilot,261,137,2026-04-28T03:51:23.640037+00:00 +2026-04-16,Claude Code,7478,4903,2026-04-28T03:51:23.640037+00:00 +2026-04-16,Cursor,886,428,2026-04-28T03:51:23.640037+00:00 +2026-04-16,Devin,591,302,2026-04-28T03:51:23.640037+00:00 +2026-04-16,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-16,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-16,Jules,22,14,2026-04-28T03:51:23.640037+00:00 +2026-04-16,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-16,OpenHands,8,6,2026-04-28T03:51:23.640037+00:00 +2026-04-16,Open SWE,10,4,2026-04-28T03:51:23.640037+00:00 +2026-04-17,Codex,7075,3200,2026-04-28T03:51:23.640037+00:00 +2026-04-17,Copilot,695,120,2026-04-28T03:51:23.640037+00:00 +2026-04-17,Claude Code,7880,4954,2026-04-28T03:51:23.640037+00:00 +2026-04-17,Cursor,652,374,2026-04-28T03:51:23.640037+00:00 +2026-04-17,Devin,487,245,2026-04-28T03:51:23.640037+00:00 +2026-04-17,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-17,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-17,Jules,28,14,2026-04-28T03:51:23.640037+00:00 +2026-04-17,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-17,OpenHands,3,2,2026-04-28T03:51:23.640037+00:00 +2026-04-17,Open SWE,2,2,2026-04-28T03:51:23.640037+00:00 +2026-04-18,Codex,6746,2775,2026-04-28T03:51:23.640037+00:00 +2026-04-18,Copilot,188,110,2026-04-28T03:51:23.640037+00:00 +2026-04-18,Claude Code,7641,4491,2026-04-28T03:51:23.640037+00:00 +2026-04-18,Cursor,726,410,2026-04-28T03:51:23.640037+00:00 +2026-04-18,Devin,413,156,2026-04-28T03:51:23.640037+00:00 +2026-04-18,Sweep,2,2,2026-04-28T03:51:23.640037+00:00 +2026-04-18,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-18,Jules,27,17,2026-04-28T03:51:23.640037+00:00 +2026-04-18,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-18,OpenHands,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-18,Open SWE,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-19,Codex,6716,2849,2026-04-28T03:51:23.640037+00:00 +2026-04-19,Copilot,176,100,2026-04-28T03:51:23.640037+00:00 +2026-04-19,Claude Code,7687,4514,2026-04-28T03:51:23.640037+00:00 +2026-04-19,Cursor,656,346,2026-04-28T03:51:23.640037+00:00 +2026-04-19,Devin,565,207,2026-04-28T03:51:23.640037+00:00 +2026-04-19,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2026-04-19,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-19,Jules,56,21,2026-04-28T03:51:23.640037+00:00 +2026-04-19,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-19,OpenHands,5,3,2026-04-28T03:51:23.640037+00:00 +2026-04-19,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2026-04-20,Codex,7708,3336,2026-04-28T03:51:23.640037+00:00 +2026-04-20,Copilot,193,126,2026-04-28T03:51:23.640037+00:00 +2026-04-20,Claude Code,7582,4551,2026-04-28T03:51:23.640037+00:00 +2026-04-20,Cursor,774,398,2026-04-28T03:51:23.640037+00:00 +2026-04-20,Devin,537,217,2026-04-28T03:51:23.640037+00:00 +2026-04-20,Sweep,4,2,2026-04-28T03:51:23.640037+00:00 +2026-04-20,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-20,Jules,49,15,2026-04-28T03:51:23.640037+00:00 +2026-04-20,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-20,OpenHands,2,1,2026-04-28T03:51:23.640037+00:00 +2026-04-20,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2026-04-21,Codex,7980,3495,2026-04-28T03:51:23.640037+00:00 +2026-04-21,Copilot,357,146,2026-04-28T03:51:23.640037+00:00 +2026-04-21,Claude Code,7479,4586,2026-04-28T03:51:23.640037+00:00 +2026-04-21,Cursor,863,436,2026-04-28T03:51:23.640037+00:00 +2026-04-21,Devin,653,268,2026-04-28T03:51:23.640037+00:00 +2026-04-21,Sweep,6,3,2026-04-28T03:51:23.640037+00:00 +2026-04-21,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-21,Jules,28,16,2026-04-28T03:51:23.640037+00:00 +2026-04-21,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-21,OpenHands,2,2,2026-04-28T03:51:23.640037+00:00 +2026-04-21,Open SWE,3,2,2026-04-28T03:51:23.640037+00:00 +2026-04-22,Codex,8645,3557,2026-04-28T03:51:23.640037+00:00 +2026-04-22,Copilot,169,137,2026-04-28T03:51:23.640037+00:00 +2026-04-22,Claude Code,7225,4494,2026-04-28T03:51:23.640037+00:00 +2026-04-22,Cursor,796,419,2026-04-28T03:51:23.640037+00:00 +2026-04-22,Devin,807,311,2026-04-28T03:51:23.640037+00:00 +2026-04-22,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-22,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-22,Jules,22,14,2026-04-28T03:51:23.640037+00:00 +2026-04-22,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-22,OpenHands,6,4,2026-04-28T03:51:23.640037+00:00 +2026-04-22,Open SWE,7,4,2026-04-28T03:51:23.640037+00:00 +2026-04-23,Codex,9062,3728,2026-04-28T03:51:23.640037+00:00 +2026-04-23,Copilot,363,122,2026-04-28T03:51:23.640037+00:00 +2026-04-23,Claude Code,7128,4499,2026-04-28T03:51:23.640037+00:00 +2026-04-23,Cursor,863,440,2026-04-28T03:51:23.640037+00:00 +2026-04-23,Devin,779,366,2026-04-28T03:51:23.640037+00:00 +2026-04-23,Sweep,1,1,2026-04-28T03:51:23.640037+00:00 +2026-04-23,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-23,Jules,33,19,2026-04-28T03:51:23.640037+00:00 +2026-04-23,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-23,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2026-04-23,Open SWE,12,4,2026-04-28T03:51:23.640037+00:00 +2026-04-24,Codex,9250,3831,2026-04-28T03:51:23.640037+00:00 +2026-04-24,Copilot,242,107,2026-04-28T03:51:23.640037+00:00 +2026-04-24,Claude Code,7853,4712,2026-04-28T03:51:23.640037+00:00 +2026-04-24,Cursor,1009,447,2026-04-28T03:51:23.640037+00:00 +2026-04-24,Devin,812,386,2026-04-28T03:51:23.640037+00:00 +2026-04-24,Sweep,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-24,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-24,Jules,42,21,2026-04-28T03:51:23.640037+00:00 +2026-04-24,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-24,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2026-04-24,Open SWE,4,4,2026-04-28T03:51:23.640037+00:00 +2026-04-25,Codex,7900,3363,2026-04-28T03:51:23.640037+00:00 +2026-04-25,Copilot,245,108,2026-04-28T03:51:23.640037+00:00 +2026-04-25,Claude Code,7077,4177,2026-04-28T03:51:23.640037+00:00 +2026-04-25,Cursor,728,340,2026-04-28T03:51:23.640037+00:00 +2026-04-25,Devin,897,425,2026-04-28T03:51:23.640037+00:00 +2026-04-25,Sweep,4,2,2026-04-28T03:51:23.640037+00:00 +2026-04-25,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-25,Jules,22,11,2026-04-28T03:51:23.640037+00:00 +2026-04-25,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-25,OpenHands,9,3,2026-04-28T03:51:23.640037+00:00 +2026-04-25,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2026-04-26,Codex,8379,3471,2026-04-28T03:51:23.640037+00:00 +2026-04-26,Copilot,162,67,2026-04-28T03:51:23.640037+00:00 +2026-04-26,Claude Code,7450,4220,2026-04-28T03:51:23.640037+00:00 +2026-04-26,Cursor,778,399,2026-04-28T03:51:23.640037+00:00 +2026-04-26,Devin,1193,492,2026-04-28T03:51:23.640037+00:00 +2026-04-26,Sweep,3,2,2026-04-28T03:51:23.640037+00:00 +2026-04-26,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-26,Jules,22,11,2026-04-28T03:51:23.640037+00:00 +2026-04-26,Gru,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-26,OpenHands,1,1,2026-04-28T03:51:23.640037+00:00 +2026-04-26,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2026-04-27,Codex,8481,3814,2026-04-28T03:51:23.640037+00:00 +2026-04-27,Copilot,233,108,2026-04-28T03:51:23.640037+00:00 +2026-04-27,Claude Code,7425,4430,2026-04-28T03:51:23.640037+00:00 +2026-04-27,Cursor,916,501,2026-04-28T03:51:23.640037+00:00 +2026-04-27,Devin,1207,563,2026-04-28T03:51:23.640037+00:00 +2026-04-27,Sweep,2,2,2026-04-28T03:51:23.640037+00:00 +2026-04-27,Codegen,0,0,2026-04-28T03:51:23.640037+00:00 +2026-04-27,Jules,21,11,2026-04-28T03:51:23.640037+00:00 +2026-04-27,Gru,3,1,2026-04-28T03:51:23.640037+00:00 +2026-04-27,OpenHands,3,2,2026-04-28T03:51:23.640037+00:00 +2026-04-27,Open SWE,1,1,2026-04-28T03:51:23.640037+00:00 +2026-04-28,Codex,9462,4182,2026-05-11T21:58:41.330018+00:00 +2026-04-28,Copilot,590,117,2026-05-11T21:58:41.330018+00:00 +2026-04-28,Claude Code,7170,4156,2026-05-11T21:58:41.330018+00:00 +2026-04-28,Cursor,1090,490,2026-05-11T21:58:41.330018+00:00 +2026-04-28,Devin,1018,495,2026-05-11T21:58:41.330018+00:00 +2026-04-28,Sweep,0,0,2026-05-11T21:58:41.330018+00:00 +2026-04-28,Codegen,0,0,2026-05-11T21:58:41.330018+00:00 +2026-04-28,Jules,21,13,2026-05-11T21:58:41.330018+00:00 +2026-04-28,Gru,0,0,2026-05-11T21:58:41.330018+00:00 +2026-04-28,OpenHands,3,1,2026-05-11T21:58:41.330018+00:00 +2026-04-28,Open SWE,1,1,2026-05-11T21:58:41.330018+00:00 +2026-04-29,Codex,9842,4063,2026-05-11T21:58:41.330018+00:00 +2026-04-29,Copilot,325,112,2026-05-11T21:58:41.330018+00:00 +2026-04-29,Claude Code,7919,4462,2026-05-11T21:58:41.330018+00:00 +2026-04-29,Cursor,1030,480,2026-05-11T21:58:41.330018+00:00 +2026-04-29,Devin,1004,460,2026-05-11T21:58:41.330018+00:00 +2026-04-29,Sweep,0,0,2026-05-11T21:58:41.330018+00:00 +2026-04-29,Codegen,0,0,2026-05-11T21:58:41.330018+00:00 +2026-04-29,Jules,21,11,2026-05-11T21:58:41.330018+00:00 +2026-04-29,Gru,0,0,2026-05-11T21:58:41.330018+00:00 +2026-04-29,OpenHands,12,5,2026-05-11T21:58:41.330018+00:00 +2026-04-29,Open SWE,17,6,2026-05-11T21:58:41.330018+00:00 +2026-04-30,Codex,5668,2823,2026-05-11T21:58:41.330018+00:00 +2026-04-30,Copilot,217,61,2026-05-11T21:58:41.330018+00:00 +2026-04-30,Claude Code,4317,2847,2026-05-11T21:58:41.330018+00:00 +2026-04-30,Cursor,658,380,2026-05-11T21:58:41.330018+00:00 +2026-04-30,Devin,623,332,2026-05-11T21:58:41.330018+00:00 +2026-04-30,Sweep,2,2,2026-05-11T21:58:41.330018+00:00 +2026-04-30,Codegen,0,0,2026-05-11T21:58:41.330018+00:00 +2026-04-30,Jules,22,17,2026-05-11T21:58:41.330018+00:00 +2026-04-30,Gru,0,0,2026-05-11T21:58:41.330018+00:00 +2026-04-30,OpenHands,3,3,2026-05-11T21:58:41.330018+00:00 +2026-04-30,Open SWE,0,0,2026-05-11T21:58:41.330018+00:00 +2026-05-01,Codex,8548,3369,2026-05-11T21:58:41.330018+00:00 +2026-05-01,Copilot,572,93,2026-05-11T21:58:41.330018+00:00 +2026-05-01,Claude Code,7027,4126,2026-05-11T21:58:41.330018+00:00 +2026-05-01,Cursor,1024,461,2026-05-11T21:58:41.330018+00:00 +2026-05-01,Devin,923,364,2026-05-11T21:58:41.330018+00:00 +2026-05-01,Sweep,3,3,2026-05-11T21:58:41.330018+00:00 +2026-05-01,Codegen,0,0,2026-05-11T21:58:41.330018+00:00 +2026-05-01,Jules,34,10,2026-05-11T21:58:41.330018+00:00 +2026-05-01,Gru,0,0,2026-05-11T21:58:41.330018+00:00 +2026-05-01,OpenHands,1,1,2026-05-11T21:58:41.330018+00:00 +2026-05-01,Open SWE,2,2,2026-05-11T21:58:41.330018+00:00 +2026-05-02,Codex,8928,3366,2026-05-11T21:58:41.330018+00:00 +2026-05-02,Copilot,190,77,2026-05-11T21:58:41.330018+00:00 +2026-05-02,Claude Code,7703,4245,2026-05-11T21:58:41.330018+00:00 +2026-05-02,Cursor,998,468,2026-05-11T21:58:41.330018+00:00 +2026-05-02,Devin,761,319,2026-05-11T21:58:41.330018+00:00 +2026-05-02,Sweep,3,3,2026-05-11T21:58:41.330018+00:00 +2026-05-02,Codegen,0,0,2026-05-11T21:58:41.330018+00:00 +2026-05-02,Jules,37,17,2026-05-11T21:58:41.330018+00:00 +2026-05-02,Gru,0,0,2026-05-11T21:58:41.330018+00:00 +2026-05-02,OpenHands,1,1,2026-05-11T21:58:41.330018+00:00 +2026-05-02,Open SWE,0,0,2026-05-11T21:58:41.330018+00:00 +2026-05-03,Codex,8863,3333,2026-05-11T21:58:41.330018+00:00 +2026-05-03,Copilot,685,85,2026-05-11T21:58:41.330018+00:00 +2026-05-03,Claude Code,7994,4223,2026-05-11T21:58:41.330018+00:00 +2026-05-03,Cursor,1219,462,2026-05-11T21:58:41.330018+00:00 +2026-05-03,Devin,1335,405,2026-05-11T21:58:41.330018+00:00 +2026-05-03,Sweep,1,1,2026-05-11T21:58:41.330018+00:00 +2026-05-03,Codegen,0,0,2026-05-11T21:58:41.330018+00:00 +2026-05-03,Jules,20,15,2026-05-11T21:58:41.330018+00:00 +2026-05-03,Gru,0,0,2026-05-11T21:58:41.330018+00:00 +2026-05-03,OpenHands,0,0,2026-05-11T21:58:41.330018+00:00 +2026-05-03,Open SWE,8,1,2026-05-11T21:58:41.330018+00:00 +2026-05-04,Codex,8743,3673,2026-05-11T21:58:41.330018+00:00 +2026-05-04,Copilot,166,87,2026-05-11T21:58:41.330018+00:00 +2026-05-04,Claude Code,7669,4480,2026-05-11T21:58:41.330018+00:00 +2026-05-04,Cursor,1014,486,2026-05-11T21:58:41.330018+00:00 +2026-05-04,Devin,1083,468,2026-05-11T21:58:41.330018+00:00 +2026-05-04,Sweep,2,2,2026-05-11T21:58:41.330018+00:00 +2026-05-04,Codegen,0,0,2026-05-11T21:58:41.330018+00:00 +2026-05-04,Jules,21,9,2026-05-11T21:58:41.330018+00:00 +2026-05-04,Gru,0,0,2026-05-11T21:58:41.330018+00:00 +2026-05-04,OpenHands,3,2,2026-05-11T21:58:41.330018+00:00 +2026-05-04,Open SWE,5,3,2026-05-11T21:58:41.330018+00:00 +2026-05-05,Codex,11359,4010,2026-05-11T21:58:41.330018+00:00 +2026-05-05,Copilot,240,106,2026-05-11T21:58:41.330018+00:00 +2026-05-05,Claude Code,7317,4408,2026-05-11T21:58:41.330018+00:00 +2026-05-05,Cursor,1056,522,2026-05-11T21:58:41.330018+00:00 +2026-05-05,Devin,1044,459,2026-05-11T21:58:41.330018+00:00 +2026-05-05,Sweep,3,2,2026-05-11T21:58:41.330018+00:00 +2026-05-05,Codegen,1,1,2026-05-11T21:58:41.330018+00:00 +2026-05-05,Jules,18,13,2026-05-11T21:58:41.330018+00:00 +2026-05-05,Gru,0,0,2026-05-11T21:58:41.330018+00:00 +2026-05-05,OpenHands,2,2,2026-05-11T21:58:41.330018+00:00 +2026-05-05,Open SWE,16,4,2026-05-11T21:58:41.330018+00:00 +2026-05-06,Codex,9823,4184,2026-05-11T21:58:41.330018+00:00 +2026-05-06,Copilot,153,114,2026-05-11T21:58:41.330018+00:00 +2026-05-06,Claude Code,8652,4972,2026-05-11T21:58:41.330018+00:00 +2026-05-06,Cursor,1205,561,2026-05-11T21:58:41.330018+00:00 +2026-05-06,Devin,912,387,2026-05-11T21:58:41.330018+00:00 +2026-05-06,Sweep,6,4,2026-05-11T21:58:41.330018+00:00 +2026-05-06,Codegen,0,0,2026-05-11T21:58:41.330018+00:00 +2026-05-06,Jules,27,17,2026-05-11T21:58:41.330018+00:00 +2026-05-06,Gru,0,0,2026-05-11T21:58:41.330018+00:00 +2026-05-06,OpenHands,2,2,2026-05-11T21:58:41.330018+00:00 +2026-05-06,Open SWE,5,2,2026-05-11T21:58:41.330018+00:00 +2026-05-07,Codex,9417,4151,2026-05-11T21:58:41.330018+00:00 +2026-05-07,Copilot,498,120,2026-05-11T21:58:41.330018+00:00 +2026-05-07,Claude Code,9321,5285,2026-05-11T21:58:41.330018+00:00 +2026-05-07,Cursor,1162,522,2026-05-11T21:58:41.330018+00:00 +2026-05-07,Devin,781,353,2026-05-11T21:58:41.330018+00:00 +2026-05-07,Sweep,2,2,2026-05-11T21:58:41.330018+00:00 +2026-05-07,Codegen,0,0,2026-05-11T21:58:41.330018+00:00 +2026-05-07,Jules,21,10,2026-05-11T21:58:41.330018+00:00 +2026-05-07,Gru,0,0,2026-05-11T21:58:41.330018+00:00 +2026-05-07,OpenHands,2,2,2026-05-11T21:58:41.330018+00:00 +2026-05-07,Open SWE,5,5,2026-05-11T21:58:41.330018+00:00 +2026-05-08,Codex,8778,3749,2026-05-11T21:58:41.330018+00:00 +2026-05-08,Copilot,338,116,2026-05-11T21:58:41.330018+00:00 +2026-05-08,Claude Code,9208,5117,2026-05-11T21:58:41.330018+00:00 +2026-05-08,Cursor,1010,479,2026-05-11T21:58:41.330018+00:00 +2026-05-08,Devin,846,414,2026-05-11T21:58:41.330018+00:00 +2026-05-08,Sweep,1,1,2026-05-11T21:58:41.330018+00:00 +2026-05-08,Codegen,0,0,2026-05-11T21:58:41.330018+00:00 +2026-05-08,Jules,35,11,2026-05-11T21:58:41.330018+00:00 +2026-05-08,Gru,0,0,2026-05-11T21:58:41.330018+00:00 +2026-05-08,OpenHands,1,1,2026-05-11T21:58:41.330018+00:00 +2026-05-08,Open SWE,7,3,2026-05-11T21:58:41.330018+00:00 +2026-05-09,Codex,8909,3492,2026-05-11T21:58:41.330018+00:00 +2026-05-09,Copilot,126,82,2026-05-11T21:58:41.330018+00:00 +2026-05-09,Claude Code,9177,4933,2026-05-11T21:58:41.330018+00:00 +2026-05-09,Cursor,1261,606,2026-05-11T21:58:41.330018+00:00 +2026-05-09,Devin,985,319,2026-05-11T21:58:41.330018+00:00 +2026-05-09,Sweep,0,0,2026-05-11T21:58:41.330018+00:00 +2026-05-09,Codegen,0,0,2026-05-11T21:58:41.330018+00:00 +2026-05-09,Jules,36,24,2026-05-11T21:58:41.330018+00:00 +2026-05-09,Gru,0,0,2026-05-11T21:58:41.330018+00:00 +2026-05-09,OpenHands,4,3,2026-05-11T21:58:41.330018+00:00 +2026-05-09,Open SWE,0,0,2026-05-11T21:58:41.330018+00:00 +2026-05-10,Codex,8553,3308,2026-05-11T21:58:41.330018+00:00 +2026-05-10,Copilot,1158,86,2026-05-11T21:58:41.330018+00:00 +2026-05-10,Claude Code,9056,4727,2026-05-11T21:58:41.330018+00:00 +2026-05-10,Cursor,1157,563,2026-05-11T21:58:41.330018+00:00 +2026-05-10,Devin,1082,363,2026-05-11T21:58:41.330018+00:00 +2026-05-10,Sweep,5,4,2026-05-11T21:58:41.330018+00:00 +2026-05-10,Codegen,0,0,2026-05-11T21:58:41.330018+00:00 +2026-05-10,Jules,42,21,2026-05-11T21:58:41.330018+00:00 +2026-05-10,Gru,0,0,2026-05-11T21:58:41.330018+00:00 +2026-05-10,OpenHands,1,1,2026-05-11T21:58:41.330018+00:00 +2026-05-10,Open SWE,2,2,2026-05-11T21:58:41.330018+00:00 diff --git a/anomaly_analysis.py b/anomaly_analysis.py new file mode 100644 index 0000000..30b246b --- /dev/null +++ b/anomaly_analysis.py @@ -0,0 +1,136 @@ +#!/usr/bin/env python3 +"""Detect signature anomalies across all tools in daily_ai_commits.csv. + +Can be used two ways: + + from anomaly_analysis import scan_anomalies + anomalies = scan_anomalies("daily_ai_commits.csv") + +or as a CLI: + + python3 anomaly_analysis.py +""" + +import csv +from collections import defaultdict +from dataclasses import dataclass +from datetime import datetime +from pathlib import Path + + +@dataclass(frozen=True) +class Anomaly: + tool: str + date: str # YYYY-MM-DD + type: str # "DROP" | "SPIKE" | "QUIET" + prev_avg: float + curr_avg: float + ratio: float + + +def _rolling_avg(vals, window=7): + result = [] + for i in range(len(vals)): + if i < window - 1: + result.append(None) + else: + result.append(sum(vals[i - window + 1:i + 1]) / window) + return result + + +def scan_anomalies(csv_path) -> list[Anomaly]: + """Scan `csv_path` for signature anomalies. + + Detects: + - DROP: 7d rolling avg fell >50% vs 7 days prior (floor prev_avg >= 10) + - SPIKE: 7d rolling avg rose >3x vs 7 days prior (floor curr_avg > 10) + - QUIET: peak 7d avg > 50/day but recent 14d avg < 5/day + + Returns [] if the CSV does not exist. + """ + path = Path(csv_path) + if not path.exists(): + return [] + + data = defaultdict(dict) + with open(path) as f: + for row in csv.DictReader(f): + if row.get("view", "all") != "all" or row.get("commits", "") == "": + continue + data[row["tool"]][row["date"]] = int(row["commits"]) + + raw: list[Anomaly] = [] + + for tool in sorted(data.keys()): + dates = sorted(data[tool].keys()) + vals = [data[tool][d] for d in dates] + if len(vals) < 21: + continue + + ravg = _rolling_avg(vals) + + for i in range(14, len(ravg)): + if ravg[i] is None or ravg[i - 7] is None or ravg[i - 7] < 10: + continue + ratio = ravg[i] / ravg[i - 7] + if ratio < 0.5: + raw.append(Anomaly(tool, dates[i], "DROP", ravg[i - 7], ravg[i], ratio)) + elif ratio > 3.0 and ravg[i] > 10: + raw.append(Anomaly(tool, dates[i], "SPIKE", ravg[i - 7], ravg[i], ratio)) + + # Deduplicate: keep most extreme per tool per 14-day bucket + seen: dict = {} + for a in raw: + dt = datetime.strptime(a.date, "%Y-%m-%d") + key = (a.tool, dt.year, dt.month, dt.day // 14) + if key not in seen or abs(a.ratio - 1) > abs(seen[key].ratio - 1): + seen[key] = a + + # "Went quiet" check + quiet: list[Anomaly] = [] + for tool in sorted(data.keys()): + dates = sorted(data[tool].keys()) + vals = [data[tool][d] for d in dates] + ravg = _rolling_avg(vals) + peak = max((v for v in ravg if v is not None), default=0) + peak_idx = next((i for i, v in enumerate(ravg) if v == peak), 0) + recent = [v for v in ravg[-14:] if v is not None] + recent_avg = sum(recent) / len(recent) if recent else 0 + if peak > 50 and recent_avg < 5: + quiet.append(Anomaly( + tool=tool, + date=dates[peak_idx] if peak_idx < len(dates) else "", + type="QUIET", + prev_avg=peak, + curr_avg=recent_avg, + ratio=recent_avg / peak if peak else 0, + )) + + return sorted(list(seen.values()) + quiet, key=lambda a: (a.tool, a.date)) + + +def _print_cli(csv_path="daily_ai_commits.csv"): + anomalies = scan_anomalies(csv_path) + + print("=" * 80) + print("ANOMALY SCAN: All Tools") + print("Looking for >50% weekly drops or >3x spikes in 7-day rolling avg") + print("=" * 80) + + drops_and_spikes = [a for a in anomalies if a.type in ("DROP", "SPIKE")] + for a in drops_and_spikes: + change = (f"{a.ratio:.2f}x" if a.type == "SPIKE" + else f"{a.ratio:.2f}x ({(1 - a.ratio) * 100:.0f}% drop)") + print(f" {a.tool:<28} {a.date} {a.type:>5} " + f"7d avg: {a.prev_avg:>8.1f} -> {a.curr_avg:>8.1f} {change}") + + print("\n" + "=" * 80) + print("TOOLS THAT WENT QUIET (peak 7d avg >50/day, recent <5/day)") + print("=" * 80) + for a in (x for x in anomalies if x.type == "QUIET"): + print(f" {a.tool:<28} peak={a.prev_avg:.0f}/day near {a.date}, " + f"recent={a.curr_avg:.1f}/day") + + +if __name__ == "__main__": + _print_cli() diff --git a/bot_donors_daily.csv b/bot_donors_daily.csv new file mode 100644 index 0000000..8ac21ba --- /dev/null +++ b/bot_donors_daily.csv @@ -0,0 +1,2599 @@ +date,donor,commits,incomplete,fetched_at +2025-02-01,Dependabot,26253,False,2026-04-20T20:37:10.518371+00:00 +2025-02-01,Renovate,8595,False,2026-04-20T20:37:14.931487+00:00 +2025-02-01,pre-commit-ci,62,False,2026-04-20T20:37:19.609499+00:00 +2025-02-01,semantic-release-bot,493,False,2026-04-20T20:37:23.988961+00:00 +2025-02-01,allcontributors,41,False,2026-04-20T20:37:28.448218+00:00 +2025-02-01,github-actions,77210,False,2026-04-20T20:37:32.955733+00:00 +2025-02-02,Dependabot,4784,False,2026-04-20T20:37:37.401518+00:00 +2025-02-02,Renovate,7849,False,2026-04-20T20:37:41.799717+00:00 +2025-02-02,pre-commit-ci,106,False,2026-04-20T20:37:46.281360+00:00 +2025-02-02,semantic-release-bot,547,False,2026-04-20T20:37:50.948016+00:00 +2025-02-02,allcontributors,170,False,2026-04-20T20:37:55.379547+00:00 +2025-02-02,github-actions,75947,False,2026-04-20T20:37:59.954185+00:00 +2025-02-03,Dependabot,32586,False,2026-04-20T20:38:04.467705+00:00 +2025-02-03,Renovate,62655,False,2026-04-20T20:38:09.082972+00:00 +2025-02-03,pre-commit-ci,1623,False,2026-04-20T20:38:13.572045+00:00 +2025-02-03,semantic-release-bot,949,False,2026-04-20T20:38:18.004867+00:00 +2025-02-03,allcontributors,53,False,2026-04-20T20:38:22.436253+00:00 +2025-02-03,github-actions,83950,False,2026-04-20T20:38:26.887190+00:00 +2025-02-04,Dependabot,16586,False,2026-04-20T20:38:31.644295+00:00 +2025-02-04,Renovate,14238,False,2026-04-20T20:38:36.131013+00:00 +2025-02-04,pre-commit-ci,1011,False,2026-04-20T20:38:40.618855+00:00 +2025-02-04,semantic-release-bot,843,False,2026-04-20T20:38:45.069410+00:00 +2025-02-04,allcontributors,166,False,2026-04-20T20:38:49.518402+00:00 +2025-02-04,github-actions,80098,False,2026-04-20T20:38:54.071813+00:00 +2025-02-05,Dependabot,17500,False,2026-04-20T20:38:58.528713+00:00 +2025-02-05,Renovate,14611,False,2026-04-20T20:39:03.033307+00:00 +2025-02-05,pre-commit-ci,215,False,2026-04-20T20:39:07.684706+00:00 +2025-02-05,semantic-release-bot,761,False,2026-04-20T20:39:12.078350+00:00 +2025-02-05,allcontributors,107,False,2026-04-20T20:39:16.596310+00:00 +2025-02-05,github-actions,80502,False,2026-04-20T20:39:21.056481+00:00 +2025-02-06,Dependabot,12394,False,2026-04-20T20:39:25.607078+00:00 +2025-02-06,Renovate,12053,False,2026-04-20T20:39:30.070232+00:00 +2025-02-06,pre-commit-ci,178,False,2026-04-20T20:39:34.509850+00:00 +2025-02-06,semantic-release-bot,1092,False,2026-04-20T20:39:38.965857+00:00 +2025-02-06,allcontributors,53,False,2026-04-20T20:39:43.413035+00:00 +2025-02-06,github-actions,80957,False,2026-04-20T20:39:47.882730+00:00 +2025-02-07,Dependabot,10553,False,2026-04-20T20:39:52.366677+00:00 +2025-02-07,Renovate,14471,False,2026-04-20T20:39:56.836390+00:00 +2025-02-07,pre-commit-ci,148,False,2026-04-20T20:40:01.490447+00:00 +2025-02-07,semantic-release-bot,862,False,2026-04-20T20:40:06.174253+00:00 +2025-02-07,allcontributors,42,False,2026-04-20T20:40:10.724039+00:00 +2025-02-07,github-actions,81372,False,2026-04-20T20:40:15.195245+00:00 +2025-02-08,Dependabot,3694,False,2026-04-20T20:40:19.745693+00:00 +2025-02-08,Renovate,10063,False,2026-04-20T20:40:24.174243+00:00 +2025-02-08,pre-commit-ci,63,False,2026-04-20T20:40:28.693965+00:00 +2025-02-08,semantic-release-bot,766,False,2026-04-20T20:40:33.060355+00:00 +2025-02-08,allcontributors,21,False,2026-04-20T20:40:37.631710+00:00 +2025-02-08,github-actions,78862,False,2026-04-20T20:40:42.065976+00:00 +2025-02-09,Dependabot,3425,False,2026-04-20T20:40:46.539726+00:00 +2025-02-09,Renovate,10493,False,2026-04-20T20:40:51.083839+00:00 +2025-02-09,pre-commit-ci,65,False,2026-04-20T20:40:55.518208+00:00 +2025-02-09,semantic-release-bot,569,False,2026-04-20T20:41:00.014695+00:00 +2025-02-09,allcontributors,20,False,2026-04-20T20:41:04.483379+00:00 +2025-02-09,github-actions,80282,False,2026-04-20T20:41:08.943622+00:00 +2025-02-10,Dependabot,36409,False,2026-04-20T20:41:13.421650+00:00 +2025-02-10,Renovate,85565,False,2026-04-20T20:41:18.052289+00:00 +2025-02-10,pre-commit-ci,1007,False,2026-04-20T20:41:22.899561+00:00 +2025-02-10,semantic-release-bot,866,False,2026-04-20T20:41:27.350109+00:00 +2025-02-10,allcontributors,42,False,2026-04-20T20:41:31.727198+00:00 +2025-02-10,github-actions,84529,False,2026-04-20T20:41:36.172548+00:00 +2025-02-11,Dependabot,28647,False,2026-04-20T20:41:40.744787+00:00 +2025-02-11,Renovate,34264,False,2026-04-20T20:41:45.212199+00:00 +2025-02-11,pre-commit-ci,469,False,2026-04-20T20:41:49.742331+00:00 +2025-02-11,semantic-release-bot,944,False,2026-04-20T20:41:54.176291+00:00 +2025-02-11,allcontributors,33,False,2026-04-20T20:41:58.604932+00:00 +2025-02-11,github-actions,84872,False,2026-04-20T20:42:03.084063+00:00 +2025-02-12,Dependabot,16431,False,2026-04-20T20:42:07.546434+00:00 +2025-02-12,Renovate,16104,False,2026-04-20T20:42:12.026520+00:00 +2025-02-12,pre-commit-ci,182,False,2026-04-20T20:42:16.455003+00:00 +2025-02-12,semantic-release-bot,900,False,2026-04-20T20:42:20.990854+00:00 +2025-02-12,allcontributors,110,False,2026-04-20T20:42:25.480761+00:00 +2025-02-12,github-actions,88546,False,2026-04-20T20:42:29.985531+00:00 +2025-02-13,Dependabot,12135,False,2026-04-20T20:42:34.511620+00:00 +2025-02-13,Renovate,15760,False,2026-04-20T20:42:39.016250+00:00 +2025-02-13,pre-commit-ci,191,False,2026-04-20T20:42:43.503154+00:00 +2025-02-13,semantic-release-bot,995,False,2026-04-20T20:42:48.090056+00:00 +2025-02-13,allcontributors,40,False,2026-04-20T20:42:52.574334+00:00 +2025-02-13,github-actions,87691,False,2026-04-20T20:42:56.993978+00:00 +2025-02-14,Dependabot,13006,False,2026-04-20T20:43:01.417746+00:00 +2025-02-14,Renovate,15628,False,2026-04-20T20:43:05.927820+00:00 +2025-02-14,pre-commit-ci,108,False,2026-04-20T20:43:10.407605+00:00 +2025-02-14,semantic-release-bot,685,False,2026-04-20T20:43:14.830520+00:00 +2025-02-14,allcontributors,25,False,2026-04-20T20:43:19.267532+00:00 +2025-02-14,github-actions,85793,False,2026-04-20T20:43:23.705059+00:00 +2025-02-15,Dependabot,7767,False,2026-04-20T20:43:28.125840+00:00 +2025-02-15,Renovate,10811,False,2026-04-20T20:43:32.580918+00:00 +2025-02-15,pre-commit-ci,64,False,2026-04-20T20:43:36.984949+00:00 +2025-02-15,semantic-release-bot,700,False,2026-04-20T20:43:41.527574+00:00 +2025-02-15,allcontributors,25,False,2026-04-20T20:43:46.011092+00:00 +2025-02-15,github-actions,83788,False,2026-04-20T20:43:50.474935+00:00 +2025-02-16,Dependabot,4249,False,2026-04-20T20:43:54.850203+00:00 +2025-02-16,Renovate,8252,False,2026-04-20T20:43:59.393763+00:00 +2025-02-16,pre-commit-ci,66,False,2026-04-20T20:44:03.840444+00:00 +2025-02-16,semantic-release-bot,953,False,2026-04-20T20:44:08.238599+00:00 +2025-02-16,allcontributors,33,False,2026-04-20T20:44:12.673911+00:00 +2025-02-16,github-actions,82967,False,2026-04-20T20:44:17.106885+00:00 +2025-02-17,Dependabot,34832,False,2026-04-20T20:44:21.577380+00:00 +2025-02-17,Renovate,108415,False,2026-04-20T20:44:26.210311+00:00 +2025-02-17,pre-commit-ci,778,False,2026-04-20T20:44:30.768973+00:00 +2025-02-17,semantic-release-bot,1123,False,2026-04-20T20:44:35.154213+00:00 +2025-02-17,allcontributors,75,False,2026-04-20T20:44:39.548995+00:00 +2025-02-17,github-actions,89374,False,2026-04-20T20:44:44.104107+00:00 +2025-02-18,Dependabot,20825,False,2026-04-20T20:44:48.676272+00:00 +2025-02-18,Renovate,14059,False,2026-04-20T20:44:53.251071+00:00 +2025-02-18,pre-commit-ci,288,False,2026-04-20T20:44:57.696520+00:00 +2025-02-18,semantic-release-bot,1030,False,2026-04-20T20:45:02.451333+00:00 +2025-02-18,allcontributors,37,False,2026-04-20T20:45:06.933043+00:00 +2025-02-18,github-actions,87261,False,2026-04-20T20:45:11.357873+00:00 +2025-02-19,Dependabot,11617,False,2026-04-20T20:45:15.895162+00:00 +2025-02-19,Renovate,14403,False,2026-04-20T20:45:20.431972+00:00 +2025-02-19,pre-commit-ci,169,False,2026-04-20T20:45:24.935047+00:00 +2025-02-19,semantic-release-bot,602,False,2026-04-20T20:45:29.398266+00:00 +2025-02-19,allcontributors,19,False,2026-04-20T20:45:33.818375+00:00 +2025-02-19,github-actions,89896,False,2026-04-20T20:45:38.290502+00:00 +2025-02-20,Dependabot,16420,False,2026-04-20T20:45:42.770104+00:00 +2025-02-20,Renovate,13144,False,2026-04-20T20:45:47.271467+00:00 +2025-02-20,pre-commit-ci,162,False,2026-04-20T20:45:51.825820+00:00 +2025-02-20,semantic-release-bot,958,False,2026-04-20T20:45:56.254123+00:00 +2025-02-20,allcontributors,187,False,2026-04-20T20:46:00.722646+00:00 +2025-02-20,github-actions,90146,False,2026-04-20T20:46:05.299416+00:00 +2025-02-21,Dependabot,13025,False,2026-04-20T20:46:09.805186+00:00 +2025-02-21,Renovate,14772,False,2026-04-20T20:46:14.493341+00:00 +2025-02-21,pre-commit-ci,137,False,2026-04-20T20:46:19.167258+00:00 +2025-02-21,semantic-release-bot,738,False,2026-04-20T20:46:23.673748+00:00 +2025-02-21,allcontributors,30,False,2026-04-20T20:46:28.136702+00:00 +2025-02-21,github-actions,90281,False,2026-04-20T20:46:32.591946+00:00 +2025-02-22,Dependabot,6325,False,2026-04-20T20:46:37.103578+00:00 +2025-02-22,Renovate,17279,False,2026-04-20T20:46:41.590812+00:00 +2025-02-22,pre-commit-ci,70,False,2026-04-20T20:46:46.033416+00:00 +2025-02-22,semantic-release-bot,626,False,2026-04-20T20:46:50.487882+00:00 +2025-02-22,allcontributors,32,False,2026-04-20T20:46:54.873213+00:00 +2025-02-22,github-actions,93598,False,2026-04-20T20:46:59.454484+00:00 +2025-02-23,Dependabot,4298,False,2026-04-20T20:47:04.024639+00:00 +2025-02-23,Renovate,8732,False,2026-04-20T20:47:08.549093+00:00 +2025-02-23,pre-commit-ci,38,False,2026-04-20T20:47:12.975348+00:00 +2025-02-23,semantic-release-bot,595,False,2026-04-20T20:47:17.636883+00:00 +2025-02-23,allcontributors,11,False,2026-04-20T20:47:22.140998+00:00 +2025-02-23,github-actions,89577,False,2026-04-20T20:47:26.606657+00:00 +2025-02-24,Dependabot,38218,False,2026-04-20T20:47:31.153464+00:00 +2025-02-24,Renovate,78587,False,2026-04-20T20:47:35.680540+00:00 +2025-02-24,pre-commit-ci,1081,False,2026-04-20T20:47:40.274166+00:00 +2025-02-24,semantic-release-bot,746,False,2026-04-20T20:47:44.698766+00:00 +2025-02-24,allcontributors,60,False,2026-04-20T20:47:49.196792+00:00 +2025-02-24,github-actions,93479,False,2026-04-20T20:47:53.602653+00:00 +2025-02-25,Dependabot,27110,False,2026-04-20T20:47:58.078051+00:00 +2025-02-25,Renovate,16329,False,2026-04-20T20:48:02.554148+00:00 +2025-02-25,pre-commit-ci,348,False,2026-04-20T20:48:07.008874+00:00 +2025-02-25,semantic-release-bot,941,False,2026-04-20T20:48:11.435946+00:00 +2025-02-25,allcontributors,46,False,2026-04-20T20:48:15.853067+00:00 +2025-02-25,github-actions,101548,False,2026-04-20T20:48:20.274084+00:00 +2025-02-26,Dependabot,12442,False,2026-04-20T20:48:24.728203+00:00 +2025-02-26,Renovate,13871,False,2026-04-20T20:48:29.523707+00:00 +2025-02-26,pre-commit-ci,131,False,2026-04-20T20:48:34.023925+00:00 +2025-02-26,semantic-release-bot,614,False,2026-04-20T20:48:38.429931+00:00 +2025-02-26,allcontributors,37,False,2026-04-20T20:48:42.864795+00:00 +2025-02-26,github-actions,94890,False,2026-04-20T20:48:47.323026+00:00 +2025-02-27,Dependabot,15667,False,2026-04-20T20:48:52.050430+00:00 +2025-02-27,Renovate,14016,False,2026-04-20T20:48:56.657552+00:00 +2025-02-27,pre-commit-ci,126,False,2026-04-20T20:49:01.203000+00:00 +2025-02-27,semantic-release-bot,879,False,2026-04-20T20:49:05.767107+00:00 +2025-02-27,allcontributors,76,False,2026-04-20T20:49:10.209641+00:00 +2025-02-27,github-actions,89288,False,2026-04-20T20:49:14.710645+00:00 +2025-02-28,Dependabot,12491,False,2026-04-20T20:49:19.183183+00:00 +2025-02-28,Renovate,13605,False,2026-04-20T20:49:23.668981+00:00 +2025-02-28,pre-commit-ci,104,False,2026-04-20T20:49:28.488203+00:00 +2025-02-28,semantic-release-bot,611,False,2026-04-20T20:49:32.873753+00:00 +2025-02-28,allcontributors,41,False,2026-04-20T20:49:37.273612+00:00 +2025-02-28,github-actions,88956,False,2026-04-20T20:49:41.726373+00:00 +2025-03-01,Dependabot,22951,False,2026-04-20T20:49:46.218258+00:00 +2025-03-01,Renovate,17964,False,2026-04-20T20:49:50.730174+00:00 +2025-03-01,pre-commit-ci,23,False,2026-04-20T20:49:55.158722+00:00 +2025-03-01,semantic-release-bot,271,False,2026-04-20T20:49:59.555275+00:00 +2025-03-01,allcontributors,32,False,2026-04-20T20:50:03.968190+00:00 +2025-03-01,github-actions,87512,False,2026-04-20T20:50:08.396143+00:00 +2025-03-02,Dependabot,5200,False,2026-04-20T20:50:12.899580+00:00 +2025-03-02,Renovate,10417,False,2026-04-20T20:50:17.552304+00:00 +2025-03-02,pre-commit-ci,57,False,2026-04-20T20:50:22.158714+00:00 +2025-03-02,semantic-release-bot,564,False,2026-04-20T20:50:26.672927+00:00 +2025-03-02,allcontributors,16,False,2026-04-20T20:50:31.173416+00:00 +2025-03-02,github-actions,85688,False,2026-04-20T20:50:35.599350+00:00 +2025-03-03,Dependabot,40728,False,2026-04-20T20:50:40.029886+00:00 +2025-03-03,Renovate,139022,False,2026-04-20T20:50:44.664361+00:00 +2025-03-03,pre-commit-ci,1641,False,2026-04-20T20:50:49.136238+00:00 +2025-03-03,semantic-release-bot,780,False,2026-04-20T20:50:53.589976+00:00 +2025-03-03,allcontributors,35,False,2026-04-20T20:50:58.023738+00:00 +2025-03-03,github-actions,91574,False,2026-04-20T20:51:02.627450+00:00 +2025-03-04,Dependabot,17639,False,2026-04-20T20:51:07.123571+00:00 +2025-03-04,Renovate,13585,False,2026-04-20T20:51:11.553033+00:00 +2025-03-04,pre-commit-ci,535,False,2026-04-20T20:51:16.129802+00:00 +2025-03-04,semantic-release-bot,689,False,2026-04-20T20:51:20.694844+00:00 +2025-03-04,allcontributors,57,False,2026-04-20T20:51:25.143816+00:00 +2025-03-04,github-actions,90479,False,2026-04-20T20:51:29.676667+00:00 +2025-03-05,Dependabot,13682,False,2026-04-20T20:51:34.147540+00:00 +2025-03-05,Renovate,15567,False,2026-04-20T20:51:38.676652+00:00 +2025-03-05,pre-commit-ci,234,False,2026-04-20T20:51:43.179732+00:00 +2025-03-05,semantic-release-bot,813,False,2026-04-20T20:51:47.611117+00:00 +2025-03-05,allcontributors,90,False,2026-04-20T20:51:52.045943+00:00 +2025-03-05,github-actions,89483,False,2026-04-20T20:51:56.476711+00:00 +2025-03-06,Dependabot,17380,False,2026-04-20T20:52:00.986982+00:00 +2025-03-06,Renovate,11238,False,2026-04-20T20:52:05.442682+00:00 +2025-03-06,pre-commit-ci,136,False,2026-04-20T20:52:09.862297+00:00 +2025-03-06,semantic-release-bot,752,False,2026-04-20T20:52:14.346232+00:00 +2025-03-06,allcontributors,32,False,2026-04-20T20:52:18.895939+00:00 +2025-03-06,github-actions,90571,False,2026-04-20T20:52:23.340066+00:00 +2025-03-07,Dependabot,25177,False,2026-04-20T20:52:27.786199+00:00 +2025-03-07,Renovate,15334,False,2026-04-20T20:52:32.245571+00:00 +2025-03-07,pre-commit-ci,160,False,2026-04-20T20:52:36.723317+00:00 +2025-03-07,semantic-release-bot,786,False,2026-04-20T20:52:41.120268+00:00 +2025-03-07,allcontributors,26,False,2026-04-20T20:52:45.570043+00:00 +2025-03-07,github-actions,92514,False,2026-04-20T20:52:49.981316+00:00 +2025-03-08,Dependabot,5160,False,2026-04-20T20:52:54.413348+00:00 +2025-03-08,Renovate,11753,False,2026-04-20T20:52:58.900829+00:00 +2025-03-08,pre-commit-ci,147,False,2026-04-20T20:53:03.380540+00:00 +2025-03-08,semantic-release-bot,308,False,2026-04-20T20:53:07.792891+00:00 +2025-03-08,allcontributors,39,False,2026-04-20T20:53:12.203084+00:00 +2025-03-08,github-actions,90173,False,2026-04-20T20:53:16.729471+00:00 +2025-03-09,Dependabot,5644,False,2026-04-20T20:53:21.217048+00:00 +2025-03-09,Renovate,7592,False,2026-04-20T20:53:25.686800+00:00 +2025-03-09,pre-commit-ci,116,False,2026-04-20T20:53:30.094138+00:00 +2025-03-09,semantic-release-bot,676,False,2026-04-20T20:53:34.521725+00:00 +2025-03-09,allcontributors,63,False,2026-04-20T20:53:39.091108+00:00 +2025-03-09,github-actions,91183,False,2026-04-20T20:53:43.593323+00:00 +2025-03-10,Dependabot,42415,False,2026-04-20T20:53:48.090057+00:00 +2025-03-10,Renovate,132327,False,2026-04-20T20:53:52.650103+00:00 +2025-03-10,pre-commit-ci,1084,False,2026-04-20T20:53:57.060632+00:00 +2025-03-10,semantic-release-bot,671,False,2026-04-20T20:54:01.525650+00:00 +2025-03-10,allcontributors,42,False,2026-04-20T20:54:05.966830+00:00 +2025-03-10,github-actions,95823,False,2026-04-20T20:54:10.455396+00:00 +2025-03-11,Dependabot,20843,False,2026-04-20T20:54:14.876901+00:00 +2025-03-11,Renovate,15364,False,2026-04-20T20:54:19.365385+00:00 +2025-03-11,pre-commit-ci,682,False,2026-04-20T20:54:23.931747+00:00 +2025-03-11,semantic-release-bot,835,False,2026-04-20T20:54:28.455298+00:00 +2025-03-11,allcontributors,19,False,2026-04-20T20:54:32.873613+00:00 +2025-03-11,github-actions,92016,False,2026-04-20T20:54:37.314041+00:00 +2025-03-12,Dependabot,18216,False,2026-04-20T20:54:41.777372+00:00 +2025-03-12,Renovate,15938,False,2026-04-20T20:54:46.352873+00:00 +2025-03-12,pre-commit-ci,177,False,2026-04-20T20:54:50.774111+00:00 +2025-03-12,semantic-release-bot,855,False,2026-04-20T20:54:55.242003+00:00 +2025-03-12,allcontributors,42,False,2026-04-20T20:54:59.660564+00:00 +2025-03-12,github-actions,93794,False,2026-04-20T20:55:04.121449+00:00 +2025-03-13,Dependabot,15097,False,2026-04-20T20:55:08.566994+00:00 +2025-03-13,Renovate,9893,False,2026-04-20T20:55:12.963994+00:00 +2025-03-13,pre-commit-ci,153,False,2026-04-20T20:55:17.454494+00:00 +2025-03-13,semantic-release-bot,573,False,2026-04-20T20:55:21.956473+00:00 +2025-03-13,allcontributors,118,False,2026-04-20T20:55:26.391209+00:00 +2025-03-13,github-actions,91506,False,2026-04-20T20:55:30.822555+00:00 +2025-03-14,Dependabot,10780,False,2026-04-20T20:55:35.320283+00:00 +2025-03-14,Renovate,11823,False,2026-04-20T20:55:39.763134+00:00 +2025-03-14,pre-commit-ci,197,False,2026-04-20T20:55:44.221108+00:00 +2025-03-14,semantic-release-bot,495,False,2026-04-20T20:55:48.710464+00:00 +2025-03-14,allcontributors,70,False,2026-04-20T20:55:53.154714+00:00 +2025-03-14,github-actions,90631,False,2026-04-20T20:55:57.604018+00:00 +2025-03-15,Dependabot,5231,False,2026-04-20T20:56:02.040348+00:00 +2025-03-15,Renovate,10595,False,2026-04-20T20:56:06.511390+00:00 +2025-03-15,pre-commit-ci,96,False,2026-04-20T20:56:10.972025+00:00 +2025-03-15,semantic-release-bot,480,False,2026-04-20T20:56:15.384503+00:00 +2025-03-15,allcontributors,76,False,2026-04-20T20:56:19.866443+00:00 +2025-03-15,github-actions,87454,False,2026-04-20T20:56:24.353402+00:00 +2025-03-16,Dependabot,3572,False,2026-04-20T20:56:28.880654+00:00 +2025-03-16,Renovate,6928,False,2026-04-20T20:56:33.359713+00:00 +2025-03-16,pre-commit-ci,39,False,2026-04-20T20:56:37.955029+00:00 +2025-03-16,semantic-release-bot,298,False,2026-04-20T20:56:42.406122+00:00 +2025-03-16,allcontributors,116,False,2026-04-20T20:56:46.809718+00:00 +2025-03-16,github-actions,88675,False,2026-04-20T20:56:51.378762+00:00 +2025-03-17,Dependabot,36245,False,2026-04-20T20:56:55.807799+00:00 +2025-03-17,Renovate,61478,False,2026-04-20T20:57:00.335986+00:00 +2025-03-17,pre-commit-ci,1132,False,2026-04-20T20:57:04.886530+00:00 +2025-03-17,semantic-release-bot,616,False,2026-04-20T20:57:09.325878+00:00 +2025-03-17,allcontributors,23,False,2026-04-20T20:57:13.906715+00:00 +2025-03-17,github-actions,92788,False,2026-04-20T20:57:18.333659+00:00 +2025-03-18,Dependabot,16143,False,2026-04-20T20:57:22.784364+00:00 +2025-03-18,Renovate,15790,False,2026-04-20T20:57:27.254390+00:00 +2025-03-18,pre-commit-ci,424,False,2026-04-20T20:57:31.712378+00:00 +2025-03-18,semantic-release-bot,648,False,2026-04-20T20:57:36.143168+00:00 +2025-03-18,allcontributors,119,False,2026-04-20T20:57:40.583599+00:00 +2025-03-18,github-actions,92032,False,2026-04-20T20:57:45.025692+00:00 +2025-03-19,Dependabot,11712,False,2026-04-20T20:57:49.483582+00:00 +2025-03-19,Renovate,14090,False,2026-04-20T20:57:53.910355+00:00 +2025-03-19,pre-commit-ci,133,False,2026-04-20T20:57:58.364602+00:00 +2025-03-19,semantic-release-bot,640,False,2026-04-20T20:58:03.009117+00:00 +2025-03-19,allcontributors,82,False,2026-04-20T20:58:07.432701+00:00 +2025-03-19,github-actions,93060,False,2026-04-20T20:58:11.858804+00:00 +2025-03-20,Dependabot,14736,False,2026-04-20T20:58:16.329709+00:00 +2025-03-20,Renovate,15410,False,2026-04-20T20:58:20.832480+00:00 +2025-03-20,pre-commit-ci,160,False,2026-04-20T20:58:25.412242+00:00 +2025-03-20,semantic-release-bot,561,False,2026-04-20T20:58:29.992845+00:00 +2025-03-20,allcontributors,83,False,2026-04-20T20:58:34.413986+00:00 +2025-03-20,github-actions,91642,False,2026-04-20T20:58:38.858021+00:00 +2025-03-21,Dependabot,14524,False,2026-04-20T20:58:43.423980+00:00 +2025-03-21,Renovate,30212,False,2026-04-20T20:58:48.008338+00:00 +2025-03-21,pre-commit-ci,110,False,2026-04-20T20:58:52.451451+00:00 +2025-03-21,semantic-release-bot,694,False,2026-04-20T20:58:56.891154+00:00 +2025-03-21,allcontributors,38,False,2026-04-20T20:59:01.299070+00:00 +2025-03-21,github-actions,91708,False,2026-04-20T20:59:05.834789+00:00 +2025-03-22,Dependabot,7130,False,2026-04-20T20:59:10.305008+00:00 +2025-03-22,Renovate,16484,False,2026-04-20T20:59:14.794184+00:00 +2025-03-22,pre-commit-ci,103,False,2026-04-20T20:59:19.230873+00:00 +2025-03-22,semantic-release-bot,637,False,2026-04-20T20:59:23.663122+00:00 +2025-03-22,allcontributors,16,False,2026-04-20T20:59:28.164786+00:00 +2025-03-22,github-actions,92767,False,2026-04-20T20:59:32.588687+00:00 +2025-03-23,Dependabot,4950,False,2026-04-20T20:59:36.964554+00:00 +2025-03-23,Renovate,7863,False,2026-04-20T20:59:41.593554+00:00 +2025-03-23,pre-commit-ci,128,False,2026-04-20T20:59:46.029118+00:00 +2025-03-23,semantic-release-bot,535,False,2026-04-20T20:59:50.472094+00:00 +2025-03-23,allcontributors,63,False,2026-04-20T20:59:54.919389+00:00 +2025-03-23,github-actions,97726,False,2026-04-20T20:59:59.496310+00:00 +2025-03-24,Dependabot,39137,False,2026-04-20T21:00:03.993339+00:00 +2025-03-24,Renovate,154177,False,2026-04-20T21:00:08.509147+00:00 +2025-03-24,pre-commit-ci,1182,False,2026-04-20T21:00:12.978096+00:00 +2025-03-24,semantic-release-bot,788,False,2026-04-20T21:00:17.512708+00:00 +2025-03-24,allcontributors,57,False,2026-04-20T21:00:21.916167+00:00 +2025-03-24,github-actions,102814,False,2026-04-20T21:00:26.338203+00:00 +2025-03-25,Dependabot,24287,False,2026-04-20T21:00:30.796280+00:00 +2025-03-25,Renovate,27120,False,2026-04-20T21:00:35.253165+00:00 +2025-03-25,pre-commit-ci,343,False,2026-04-20T21:00:39.704932+00:00 +2025-03-25,semantic-release-bot,746,False,2026-04-20T21:00:44.271895+00:00 +2025-03-25,allcontributors,171,False,2026-04-20T21:00:48.698185+00:00 +2025-03-25,github-actions,101978,False,2026-04-20T21:00:53.166507+00:00 +2025-03-26,Dependabot,13025,False,2026-04-20T21:00:57.583161+00:00 +2025-03-26,Renovate,12094,False,2026-04-20T21:01:02.065397+00:00 +2025-03-26,pre-commit-ci,183,False,2026-04-20T21:01:06.552939+00:00 +2025-03-26,semantic-release-bot,953,False,2026-04-20T21:01:10.950856+00:00 +2025-03-26,allcontributors,24,False,2026-04-20T21:01:15.374904+00:00 +2025-03-26,github-actions,100163,False,2026-04-20T21:01:20.033074+00:00 +2025-03-27,Dependabot,11805,False,2026-04-20T21:01:24.537991+00:00 +2025-03-27,Renovate,13604,False,2026-04-20T21:01:29.030082+00:00 +2025-03-27,pre-commit-ci,134,False,2026-04-20T21:01:33.567668+00:00 +2025-03-27,semantic-release-bot,744,False,2026-04-20T21:01:38.005752+00:00 +2025-03-27,allcontributors,28,False,2026-04-20T21:01:42.425943+00:00 +2025-03-27,github-actions,94154,False,2026-04-20T21:01:46.862643+00:00 +2025-03-28,Dependabot,10097,False,2026-04-20T21:01:51.319022+00:00 +2025-03-28,Renovate,9729,False,2026-04-20T21:01:55.929133+00:00 +2025-03-28,pre-commit-ci,95,False,2026-04-20T21:02:00.346346+00:00 +2025-03-28,semantic-release-bot,717,False,2026-04-20T21:02:04.762587+00:00 +2025-03-28,allcontributors,315,False,2026-04-20T21:02:09.159880+00:00 +2025-03-28,github-actions,91219,False,2026-04-20T21:02:13.638991+00:00 +2025-03-29,Dependabot,5720,False,2026-04-20T21:02:18.073567+00:00 +2025-03-29,Renovate,9736,False,2026-04-20T21:02:22.542108+00:00 +2025-03-29,pre-commit-ci,57,False,2026-04-20T21:02:26.976309+00:00 +2025-03-29,semantic-release-bot,611,False,2026-04-20T21:02:31.433079+00:00 +2025-03-29,allcontributors,11,False,2026-04-20T21:02:35.891622+00:00 +2025-03-29,github-actions,87876,False,2026-04-20T21:02:40.306299+00:00 +2025-03-30,Dependabot,3192,False,2026-04-20T21:02:44.752770+00:00 +2025-03-30,Renovate,7175,False,2026-04-20T21:02:49.271208+00:00 +2025-03-30,pre-commit-ci,65,False,2026-04-20T21:02:53.692956+00:00 +2025-03-30,semantic-release-bot,296,False,2026-04-20T21:02:58.086809+00:00 +2025-03-30,allcontributors,38,False,2026-04-20T21:03:02.537535+00:00 +2025-03-30,github-actions,88109,False,2026-04-20T21:03:06.942216+00:00 +2025-03-31,Dependabot,43403,False,2026-04-20T21:03:11.422944+00:00 +2025-03-31,Renovate,127619,False,2026-04-20T21:03:16.034364+00:00 +2025-03-31,pre-commit-ci,830,True,2026-04-20T21:03:20.710985+00:00 +2025-03-31,semantic-release-bot,724,False,2026-04-20T21:03:25.212584+00:00 +2025-03-31,allcontributors,279,False,2026-04-20T21:03:29.615646+00:00 +2025-03-31,github-actions,93598,False,2026-04-20T21:03:34.115174+00:00 +2025-04-01,Dependabot,32026,False,2026-04-20T21:03:38.631925+00:00 +2025-04-01,Renovate,22442,False,2026-04-20T21:03:43.085052+00:00 +2025-04-01,pre-commit-ci,265,False,2026-04-20T21:03:47.488335+00:00 +2025-04-01,semantic-release-bot,855,False,2026-04-20T21:03:52.110340+00:00 +2025-04-01,allcontributors,23,False,2026-04-20T21:03:56.504592+00:00 +2025-04-01,github-actions,93589,False,2026-04-20T21:04:00.952454+00:00 +2025-04-02,Dependabot,20261,False,2026-04-20T21:04:05.422055+00:00 +2025-04-02,Renovate,14564,False,2026-04-20T21:04:09.863051+00:00 +2025-04-02,pre-commit-ci,143,False,2026-04-20T21:04:14.343340+00:00 +2025-04-02,semantic-release-bot,619,False,2026-04-20T21:04:18.811747+00:00 +2025-04-02,allcontributors,48,False,2026-04-20T21:04:23.287285+00:00 +2025-04-02,github-actions,93690,False,2026-04-20T21:04:27.721504+00:00 +2025-04-03,Dependabot,14273,False,2026-04-20T21:04:32.226548+00:00 +2025-04-03,Renovate,14604,False,2026-04-20T21:04:36.671120+00:00 +2025-04-03,pre-commit-ci,102,False,2026-04-20T21:04:41.078887+00:00 +2025-04-03,semantic-release-bot,804,False,2026-04-20T21:04:45.555151+00:00 +2025-04-03,allcontributors,80,False,2026-04-20T21:04:49.948426+00:00 +2025-04-03,github-actions,91676,False,2026-04-20T21:04:54.371978+00:00 +2025-04-04,Dependabot,14324,False,2026-04-20T21:04:58.785821+00:00 +2025-04-04,Renovate,13890,False,2026-04-20T21:05:03.428752+00:00 +2025-04-04,pre-commit-ci,104,False,2026-04-20T21:05:07.877384+00:00 +2025-04-04,semantic-release-bot,677,False,2026-04-20T21:05:12.286421+00:00 +2025-04-04,allcontributors,116,False,2026-04-20T21:05:16.730649+00:00 +2025-04-04,github-actions,93513,False,2026-04-20T21:05:21.349895+00:00 +2025-04-05,Dependabot,5484,False,2026-04-20T21:05:25.799974+00:00 +2025-04-05,Renovate,15600,False,2026-04-20T21:05:30.260495+00:00 +2025-04-05,pre-commit-ci,143,False,2026-04-20T21:05:34.701135+00:00 +2025-04-05,semantic-release-bot,248,False,2026-04-20T21:05:39.123215+00:00 +2025-04-05,allcontributors,24,False,2026-04-20T21:05:43.576380+00:00 +2025-04-05,github-actions,92289,False,2026-04-20T21:05:47.954288+00:00 +2025-04-06,Dependabot,4003,False,2026-04-20T21:05:52.413111+00:00 +2025-04-06,Renovate,12740,False,2026-04-20T21:05:56.909486+00:00 +2025-04-06,pre-commit-ci,26,False,2026-04-20T21:06:01.415487+00:00 +2025-04-06,semantic-release-bot,613,False,2026-04-20T21:06:05.969121+00:00 +2025-04-06,allcontributors,9,False,2026-04-20T21:06:10.460075+00:00 +2025-04-06,github-actions,91818,False,2026-04-20T21:06:15.004325+00:00 +2025-04-07,Dependabot,36351,False,2026-04-20T21:06:19.496262+00:00 +2025-04-07,Renovate,107600,True,2026-04-20T21:06:24.058579+00:00 +2025-04-07,pre-commit-ci,1959,False,2026-04-20T21:06:28.536916+00:00 +2025-04-07,semantic-release-bot,503,False,2026-04-20T21:06:32.984627+00:00 +2025-04-07,allcontributors,61,False,2026-04-20T21:06:37.500015+00:00 +2025-04-07,github-actions,96204,False,2026-04-20T21:06:41.909764+00:00 +2025-04-08,Dependabot,18488,False,2026-04-20T21:06:46.371287+00:00 +2025-04-08,Renovate,21489,False,2026-04-20T21:06:50.793118+00:00 +2025-04-08,pre-commit-ci,978,False,2026-04-20T21:06:55.253672+00:00 +2025-04-08,semantic-release-bot,767,False,2026-04-20T21:06:59.668450+00:00 +2025-04-08,allcontributors,27,False,2026-04-20T21:07:04.165848+00:00 +2025-04-08,github-actions,98000,False,2026-04-20T21:07:08.612128+00:00 +2025-04-09,Dependabot,12892,False,2026-04-20T21:07:13.015522+00:00 +2025-04-09,Renovate,16393,False,2026-04-20T21:07:17.654365+00:00 +2025-04-09,pre-commit-ci,254,False,2026-04-20T21:07:22.176087+00:00 +2025-04-09,semantic-release-bot,925,False,2026-04-20T21:07:26.610273+00:00 +2025-04-09,allcontributors,17,False,2026-04-20T21:07:31.161985+00:00 +2025-04-09,github-actions,95641,False,2026-04-20T21:07:35.594214+00:00 +2025-04-10,Dependabot,16136,False,2026-04-20T21:07:40.078789+00:00 +2025-04-10,Renovate,11373,False,2026-04-20T21:07:44.496587+00:00 +2025-04-10,pre-commit-ci,164,False,2026-04-20T21:07:48.946149+00:00 +2025-04-10,semantic-release-bot,975,False,2026-04-20T21:07:53.403337+00:00 +2025-04-10,allcontributors,151,False,2026-04-20T21:07:57.868043+00:00 +2025-04-10,github-actions,95518,False,2026-04-20T21:08:02.385063+00:00 +2025-04-11,Dependabot,13794,False,2026-04-20T21:08:06.874019+00:00 +2025-04-11,Renovate,12649,False,2026-04-20T21:08:11.333545+00:00 +2025-04-11,pre-commit-ci,288,False,2026-04-20T21:08:15.779379+00:00 +2025-04-11,semantic-release-bot,822,False,2026-04-20T21:08:20.234257+00:00 +2025-04-11,allcontributors,99,False,2026-04-20T21:08:24.682721+00:00 +2025-04-11,github-actions,95240,False,2026-04-20T21:08:29.102594+00:00 +2025-04-12,Dependabot,4555,False,2026-04-20T21:08:33.520924+00:00 +2025-04-12,Renovate,10220,False,2026-04-20T21:08:38.169461+00:00 +2025-04-12,pre-commit-ci,98,False,2026-04-20T21:08:42.666465+00:00 +2025-04-12,semantic-release-bot,481,False,2026-04-20T21:08:47.112164+00:00 +2025-04-12,allcontributors,27,False,2026-04-20T21:08:51.607830+00:00 +2025-04-12,github-actions,93390,False,2026-04-20T21:08:56.017335+00:00 +2025-04-13,Dependabot,3300,False,2026-04-20T21:09:00.483508+00:00 +2025-04-13,Renovate,6876,False,2026-04-20T21:09:04.968438+00:00 +2025-04-13,pre-commit-ci,76,False,2026-04-20T21:09:09.416509+00:00 +2025-04-13,semantic-release-bot,345,False,2026-04-20T21:09:14.101303+00:00 +2025-04-13,allcontributors,18,False,2026-04-20T21:09:18.586411+00:00 +2025-04-13,github-actions,88713,False,2026-04-20T21:09:23.171970+00:00 +2025-04-14,Dependabot,32629,False,2026-04-20T21:09:27.621677+00:00 +2025-04-14,Renovate,110805,False,2026-04-20T21:09:32.157506+00:00 +2025-04-14,pre-commit-ci,1313,False,2026-04-20T21:09:36.630576+00:00 +2025-04-14,semantic-release-bot,659,False,2026-04-20T21:09:41.075458+00:00 +2025-04-14,allcontributors,29,False,2026-04-20T21:09:45.525773+00:00 +2025-04-14,github-actions,97967,False,2026-04-20T21:09:50.072108+00:00 +2025-04-15,Dependabot,15856,False,2026-04-20T21:09:54.529095+00:00 +2025-04-15,Renovate,13067,False,2026-04-20T21:09:58.950635+00:00 +2025-04-15,pre-commit-ci,376,False,2026-04-20T21:10:03.501444+00:00 +2025-04-15,semantic-release-bot,740,False,2026-04-20T21:10:08.035366+00:00 +2025-04-15,allcontributors,95,False,2026-04-20T21:10:12.436534+00:00 +2025-04-15,github-actions,95591,False,2026-04-20T21:10:16.870693+00:00 +2025-04-16,Dependabot,13584,False,2026-04-20T21:10:21.473349+00:00 +2025-04-16,Renovate,49081,False,2026-04-20T21:10:25.890986+00:00 +2025-04-16,pre-commit-ci,145,False,2026-04-20T21:10:30.315808+00:00 +2025-04-16,semantic-release-bot,718,False,2026-04-20T21:10:34.806041+00:00 +2025-04-16,allcontributors,49,False,2026-04-20T21:10:39.249868+00:00 +2025-04-16,github-actions,91838,False,2026-04-20T21:10:43.723581+00:00 +2025-04-17,Dependabot,11076,False,2026-04-20T21:10:48.184990+00:00 +2025-04-17,Renovate,9662,False,2026-04-20T21:10:52.627601+00:00 +2025-04-17,pre-commit-ci,97,False,2026-04-20T21:10:57.063045+00:00 +2025-04-17,semantic-release-bot,721,False,2026-04-20T21:11:01.670146+00:00 +2025-04-17,allcontributors,53,False,2026-04-20T21:11:06.160904+00:00 +2025-04-17,github-actions,92500,False,2026-04-20T21:11:10.609860+00:00 +2025-04-18,Dependabot,12694,False,2026-04-20T21:11:15.080306+00:00 +2025-04-18,Renovate,11175,False,2026-04-20T21:11:19.688140+00:00 +2025-04-18,pre-commit-ci,61,False,2026-04-20T21:11:24.158074+00:00 +2025-04-18,semantic-release-bot,468,False,2026-04-20T21:11:28.575459+00:00 +2025-04-18,allcontributors,47,False,2026-04-20T21:11:33.011557+00:00 +2025-04-18,github-actions,91330,False,2026-04-20T21:11:37.656614+00:00 +2025-04-19,Dependabot,3816,False,2026-04-20T21:11:42.234981+00:00 +2025-04-19,Renovate,8437,False,2026-04-20T21:11:46.730450+00:00 +2025-04-19,pre-commit-ci,45,False,2026-04-20T21:11:51.193594+00:00 +2025-04-19,semantic-release-bot,351,False,2026-04-20T21:11:55.615519+00:00 +2025-04-19,allcontributors,12,False,2026-04-20T21:12:00.042191+00:00 +2025-04-19,github-actions,91037,False,2026-04-20T21:12:04.604435+00:00 +2025-04-20,Dependabot,3440,False,2026-04-20T21:12:09.058632+00:00 +2025-04-20,Renovate,6140,False,2026-04-20T21:12:13.519938+00:00 +2025-04-20,pre-commit-ci,87,False,2026-04-20T21:12:17.918231+00:00 +2025-04-20,semantic-release-bot,344,False,2026-04-20T21:12:22.530017+00:00 +2025-04-20,allcontributors,30,False,2026-04-20T21:12:26.931631+00:00 +2025-04-20,github-actions,90544,False,2026-04-20T21:12:31.407637+00:00 +2025-04-21,Dependabot,24385,False,2026-04-20T21:12:35.851624+00:00 +2025-04-21,Renovate,121046,False,2026-04-20T21:12:40.419610+00:00 +2025-04-21,pre-commit-ci,900,False,2026-04-20T21:12:45.163951+00:00 +2025-04-21,semantic-release-bot,612,False,2026-04-20T21:12:49.615047+00:00 +2025-04-21,allcontributors,43,False,2026-04-20T21:12:54.056986+00:00 +2025-04-21,github-actions,92640,False,2026-04-20T21:12:58.495701+00:00 +2025-04-22,Dependabot,17083,False,2026-04-20T21:13:02.921381+00:00 +2025-04-22,Renovate,9922,False,2026-04-20T21:13:07.413449+00:00 +2025-04-22,pre-commit-ci,384,False,2026-04-20T21:13:11.931173+00:00 +2025-04-22,semantic-release-bot,613,False,2026-04-20T21:13:16.321471+00:00 +2025-04-22,allcontributors,125,False,2026-04-20T21:13:20.711116+00:00 +2025-04-22,github-actions,92442,False,2026-04-20T21:13:25.235623+00:00 +2025-04-23,Dependabot,10020,False,2026-04-20T21:13:29.788818+00:00 +2025-04-23,Renovate,11531,False,2026-04-20T21:13:34.308073+00:00 +2025-04-23,pre-commit-ci,374,False,2026-04-20T21:13:38.800219+00:00 +2025-04-23,semantic-release-bot,571,False,2026-04-20T21:13:43.264210+00:00 +2025-04-23,allcontributors,77,False,2026-04-20T21:13:47.754314+00:00 +2025-04-23,github-actions,93677,False,2026-04-20T21:13:52.198954+00:00 +2025-04-24,Dependabot,14466,False,2026-04-20T21:13:56.641156+00:00 +2025-04-24,Renovate,13960,False,2026-04-20T21:14:01.228961+00:00 +2025-04-24,pre-commit-ci,104,False,2026-04-20T21:14:05.660896+00:00 +2025-04-24,semantic-release-bot,695,False,2026-04-20T21:14:10.122498+00:00 +2025-04-24,allcontributors,68,False,2026-04-20T21:14:14.624805+00:00 +2025-04-24,github-actions,92615,False,2026-04-20T21:14:19.114606+00:00 +2025-04-25,Dependabot,13327,False,2026-04-20T21:14:23.558378+00:00 +2025-04-25,Renovate,15459,False,2026-04-20T21:14:28.066195+00:00 +2025-04-25,pre-commit-ci,94,False,2026-04-20T21:14:32.502399+00:00 +2025-04-25,semantic-release-bot,575,False,2026-04-20T21:14:36.994705+00:00 +2025-04-25,allcontributors,83,False,2026-04-20T21:14:41.412518+00:00 +2025-04-25,github-actions,93121,False,2026-04-20T21:14:45.855659+00:00 +2025-04-26,Dependabot,4104,False,2026-04-20T21:14:50.313030+00:00 +2025-04-26,Renovate,8415,False,2026-04-20T21:14:54.817188+00:00 +2025-04-26,pre-commit-ci,63,False,2026-04-20T21:14:59.334809+00:00 +2025-04-26,semantic-release-bot,428,False,2026-04-20T21:15:03.769591+00:00 +2025-04-26,allcontributors,38,False,2026-04-20T21:15:08.227187+00:00 +2025-04-26,github-actions,89936,False,2026-04-20T21:15:12.809862+00:00 +2025-04-27,Dependabot,4914,False,2026-04-20T21:15:17.273560+00:00 +2025-04-27,Renovate,7990,False,2026-04-20T21:15:21.911254+00:00 +2025-04-27,pre-commit-ci,34,False,2026-04-20T21:15:26.376886+00:00 +2025-04-27,semantic-release-bot,692,False,2026-04-20T21:15:30.895134+00:00 +2025-04-27,allcontributors,2,False,2026-04-20T21:15:35.506025+00:00 +2025-04-27,github-actions,89783,False,2026-04-20T21:15:40.101509+00:00 +2025-04-28,Dependabot,35030,True,2026-04-20T21:15:44.914779+00:00 +2025-04-28,Renovate,101726,False,2026-04-20T21:15:49.481886+00:00 +2025-04-28,pre-commit-ci,984,False,2026-04-20T21:15:54.056162+00:00 +2025-04-28,semantic-release-bot,936,False,2026-04-20T21:15:58.515297+00:00 +2025-04-28,allcontributors,34,False,2026-04-20T21:16:03.096375+00:00 +2025-04-28,github-actions,86297,False,2026-04-20T21:16:07.577708+00:00 +2025-04-29,Dependabot,19150,False,2026-04-20T21:16:12.098354+00:00 +2025-04-29,Renovate,10967,False,2026-04-20T21:16:16.584901+00:00 +2025-04-29,pre-commit-ci,315,False,2026-04-20T21:16:21.028708+00:00 +2025-04-29,semantic-release-bot,682,False,2026-04-20T21:16:25.618670+00:00 +2025-04-29,allcontributors,195,False,2026-04-20T21:16:30.050958+00:00 +2025-04-29,github-actions,91255,False,2026-04-20T21:16:34.568140+00:00 +2025-04-30,Dependabot,18395,False,2026-04-20T21:16:38.997240+00:00 +2025-04-30,Renovate,11806,False,2026-04-20T21:16:43.509714+00:00 +2025-04-30,pre-commit-ci,172,False,2026-04-20T21:16:47.999507+00:00 +2025-04-30,semantic-release-bot,833,False,2026-04-20T21:16:52.434941+00:00 +2025-04-30,allcontributors,29,False,2026-04-20T21:16:57.023088+00:00 +2025-04-30,github-actions,95252,False,2026-04-20T21:17:01.590111+00:00 +2025-05-01,Dependabot,35403,False,2026-04-20T21:17:06.276832+00:00 +2025-05-01,Renovate,11034,False,2026-04-20T21:17:10.820037+00:00 +2025-05-01,pre-commit-ci,98,False,2026-04-20T21:17:15.391997+00:00 +2025-05-01,semantic-release-bot,817,False,2026-04-20T21:17:19.890468+00:00 +2025-05-01,allcontributors,15,False,2026-04-20T21:17:24.378822+00:00 +2025-05-01,github-actions,92259,False,2026-04-20T21:17:28.850007+00:00 +2025-05-02,Dependabot,13772,False,2026-04-20T21:17:33.402254+00:00 +2025-05-02,Renovate,10145,False,2026-04-20T21:17:37.927197+00:00 +2025-05-02,pre-commit-ci,87,False,2026-04-20T21:17:42.400745+00:00 +2025-05-02,semantic-release-bot,485,False,2026-04-20T21:17:46.878760+00:00 +2025-05-02,allcontributors,30,False,2026-04-20T21:17:51.324378+00:00 +2025-05-02,github-actions,92241,False,2026-04-20T21:17:55.822211+00:00 +2025-05-03,Dependabot,4349,False,2026-04-20T21:18:00.307616+00:00 +2025-05-03,Renovate,8428,False,2026-04-20T21:18:04.869433+00:00 +2025-05-03,pre-commit-ci,48,False,2026-04-20T21:18:09.565565+00:00 +2025-05-03,semantic-release-bot,433,False,2026-04-20T21:18:14.013918+00:00 +2025-05-03,allcontributors,16,False,2026-04-20T21:18:18.472830+00:00 +2025-05-03,github-actions,88564,False,2026-04-20T21:18:22.963462+00:00 +2025-05-04,Dependabot,2994,False,2026-04-20T21:18:27.393382+00:00 +2025-05-04,Renovate,9035,False,2026-04-20T21:18:31.847201+00:00 +2025-05-04,pre-commit-ci,58,False,2026-04-20T21:18:36.326649+00:00 +2025-05-04,semantic-release-bot,530,False,2026-04-20T21:18:40.919616+00:00 +2025-05-04,allcontributors,37,False,2026-04-20T21:18:45.372514+00:00 +2025-05-04,github-actions,89480,False,2026-04-20T21:18:49.861732+00:00 +2025-05-05,Dependabot,31885,False,2026-04-20T21:18:54.395228+00:00 +2025-05-05,Renovate,109382,False,2026-04-20T21:18:59.020568+00:00 +2025-05-05,pre-commit-ci,1427,False,2026-04-20T21:19:03.487291+00:00 +2025-05-05,semantic-release-bot,581,False,2026-04-20T21:19:08.088490+00:00 +2025-05-05,allcontributors,25,False,2026-04-20T21:19:12.612919+00:00 +2025-05-05,github-actions,93404,False,2026-04-20T21:19:17.073844+00:00 +2025-05-06,Dependabot,19348,False,2026-04-20T21:19:21.565124+00:00 +2025-05-06,Renovate,21704,False,2026-04-20T21:19:26.036887+00:00 +2025-05-06,pre-commit-ci,601,False,2026-04-20T21:19:30.505038+00:00 +2025-05-06,semantic-release-bot,641,False,2026-04-20T21:19:34.932243+00:00 +2025-05-06,allcontributors,89,False,2026-04-20T21:19:39.490738+00:00 +2025-05-06,github-actions,94081,False,2026-04-20T21:19:44.043295+00:00 +2025-05-07,Dependabot,21778,False,2026-04-20T21:19:48.639573+00:00 +2025-05-07,Renovate,17419,False,2026-04-20T21:19:53.099481+00:00 +2025-05-07,pre-commit-ci,125,False,2026-04-20T21:19:57.688987+00:00 +2025-05-07,semantic-release-bot,626,False,2026-04-20T21:20:02.114580+00:00 +2025-05-07,allcontributors,40,False,2026-04-20T21:20:06.937621+00:00 +2025-05-07,github-actions,93919,False,2026-04-20T21:20:11.429530+00:00 +2025-05-08,Dependabot,23589,False,2026-04-20T21:20:16.054643+00:00 +2025-05-08,Renovate,20144,False,2026-04-20T21:20:20.560705+00:00 +2025-05-08,pre-commit-ci,116,False,2026-04-20T21:20:25.011419+00:00 +2025-05-08,semantic-release-bot,721,False,2026-04-20T21:20:29.486283+00:00 +2025-05-08,allcontributors,186,False,2026-04-20T21:20:34.006389+00:00 +2025-05-08,github-actions,92909,False,2026-04-20T21:20:38.509080+00:00 +2025-05-09,Dependabot,22359,False,2026-04-20T21:20:43.003477+00:00 +2025-05-09,Renovate,12416,False,2026-04-20T21:20:47.495260+00:00 +2025-05-09,pre-commit-ci,135,False,2026-04-20T21:20:51.990910+00:00 +2025-05-09,semantic-release-bot,681,False,2026-04-20T21:20:56.463624+00:00 +2025-05-09,allcontributors,85,False,2026-04-20T21:21:00.942004+00:00 +2025-05-09,github-actions,96241,False,2026-04-20T21:21:05.443910+00:00 +2025-05-10,Dependabot,13673,False,2026-04-20T21:21:09.959291+00:00 +2025-05-10,Renovate,9488,False,2026-04-20T21:21:14.404706+00:00 +2025-05-10,pre-commit-ci,52,False,2026-04-20T21:21:18.927108+00:00 +2025-05-10,semantic-release-bot,803,False,2026-04-20T21:21:23.466586+00:00 +2025-05-10,allcontributors,13,False,2026-04-20T21:21:27.879756+00:00 +2025-05-10,github-actions,98631,False,2026-04-20T21:21:32.267753+00:00 +2025-05-11,Dependabot,12982,False,2026-04-20T21:21:36.761404+00:00 +2025-05-11,Renovate,7590,False,2026-04-20T21:21:41.226841+00:00 +2025-05-11,pre-commit-ci,33,False,2026-04-20T21:21:45.690530+00:00 +2025-05-11,semantic-release-bot,419,False,2026-04-20T21:21:50.121252+00:00 +2025-05-11,allcontributors,24,False,2026-04-20T21:21:54.516028+00:00 +2025-05-11,github-actions,100331,False,2026-04-20T21:21:58.996169+00:00 +2025-05-12,Dependabot,42228,False,2026-04-20T21:22:03.517451+00:00 +2025-05-12,Renovate,117729,False,2026-04-20T21:22:08.169628+00:00 +2025-05-12,pre-commit-ci,1042,False,2026-04-20T21:22:12.673651+00:00 +2025-05-12,semantic-release-bot,538,False,2026-04-20T21:22:17.136251+00:00 +2025-05-12,allcontributors,72,False,2026-04-20T21:22:21.667297+00:00 +2025-05-12,github-actions,117972,False,2026-04-20T21:22:26.168892+00:00 +2025-05-13,Dependabot,25506,False,2026-04-20T21:22:30.703571+00:00 +2025-05-13,Renovate,14732,False,2026-04-20T21:22:35.161894+00:00 +2025-05-13,pre-commit-ci,309,False,2026-04-20T21:22:39.648794+00:00 +2025-05-13,semantic-release-bot,630,False,2026-04-20T21:22:44.103422+00:00 +2025-05-13,allcontributors,37,False,2026-04-20T21:22:48.563414+00:00 +2025-05-13,github-actions,119199,False,2026-04-20T21:22:53.034615+00:00 +2025-05-14,Dependabot,21450,False,2026-04-20T21:22:57.478533+00:00 +2025-05-14,Renovate,15283,False,2026-04-20T21:23:01.904852+00:00 +2025-05-14,pre-commit-ci,147,False,2026-04-20T21:23:06.366066+00:00 +2025-05-14,semantic-release-bot,649,False,2026-04-20T21:23:10.836789+00:00 +2025-05-14,allcontributors,75,False,2026-04-20T21:23:15.297392+00:00 +2025-05-14,github-actions,113031,False,2026-04-20T21:23:19.862702+00:00 +2025-05-15,Dependabot,25096,False,2026-04-20T21:23:24.381810+00:00 +2025-05-15,Renovate,13345,False,2026-04-20T21:23:28.923291+00:00 +2025-05-15,pre-commit-ci,104,False,2026-04-20T21:23:33.431327+00:00 +2025-05-15,semantic-release-bot,527,False,2026-04-20T21:23:37.870423+00:00 +2025-05-15,allcontributors,273,False,2026-04-20T21:23:42.276978+00:00 +2025-05-15,github-actions,103407,False,2026-04-20T21:23:46.706647+00:00 +2025-05-16,Dependabot,21170,False,2026-04-20T21:23:51.278222+00:00 +2025-05-16,Renovate,12790,False,2026-04-20T21:23:55.798587+00:00 +2025-05-16,pre-commit-ci,95,False,2026-04-20T21:24:00.203447+00:00 +2025-05-16,semantic-release-bot,663,False,2026-04-20T21:24:04.696054+00:00 +2025-05-16,allcontributors,37,False,2026-04-20T21:24:09.099866+00:00 +2025-05-16,github-actions,101477,False,2026-04-20T21:24:13.561229+00:00 +2025-05-17,Dependabot,14449,False,2026-04-20T21:24:18.034077+00:00 +2025-05-17,Renovate,10190,False,2026-04-20T21:24:22.482893+00:00 +2025-05-17,pre-commit-ci,38,False,2026-04-20T21:24:26.885363+00:00 +2025-05-17,semantic-release-bot,456,False,2026-04-20T21:24:31.288613+00:00 +2025-05-17,allcontributors,401,False,2026-04-20T21:24:35.792998+00:00 +2025-05-17,github-actions,101082,False,2026-04-20T21:24:40.236331+00:00 +2025-05-18,Dependabot,13285,False,2026-04-20T21:24:44.690095+00:00 +2025-05-18,Renovate,7465,False,2026-04-20T21:24:49.177781+00:00 +2025-05-18,pre-commit-ci,97,False,2026-04-20T21:24:53.648231+00:00 +2025-05-18,semantic-release-bot,454,False,2026-04-20T21:24:58.039595+00:00 +2025-05-18,allcontributors,534,False,2026-04-20T21:25:02.522206+00:00 +2025-05-18,github-actions,113958,False,2026-04-20T21:25:06.962710+00:00 +2025-05-19,Dependabot,42677,False,2026-04-20T21:25:11.471877+00:00 +2025-05-19,Renovate,44906,False,2026-04-20T21:25:16.064278+00:00 +2025-05-19,pre-commit-ci,983,False,2026-04-20T21:25:20.495362+00:00 +2025-05-19,semantic-release-bot,574,False,2026-04-20T21:25:24.953435+00:00 +2025-05-19,allcontributors,569,False,2026-04-20T21:25:29.481076+00:00 +2025-05-19,github-actions,103780,False,2026-04-20T21:25:33.944020+00:00 +2025-05-20,Dependabot,24859,False,2026-04-20T21:25:38.366594+00:00 +2025-05-20,Renovate,12756,False,2026-04-20T21:25:42.817340+00:00 +2025-05-20,pre-commit-ci,325,False,2026-04-20T21:25:47.212330+00:00 +2025-05-20,semantic-release-bot,689,False,2026-04-20T21:25:51.736233+00:00 +2025-05-20,allcontributors,463,False,2026-04-20T21:25:56.166355+00:00 +2025-05-20,github-actions,100568,False,2026-04-20T21:26:00.660468+00:00 +2025-05-21,Dependabot,22722,False,2026-04-20T21:26:05.110317+00:00 +2025-05-21,Renovate,15321,False,2026-04-20T21:26:09.533075+00:00 +2025-05-21,pre-commit-ci,127,False,2026-04-20T21:26:13.943277+00:00 +2025-05-21,semantic-release-bot,576,False,2026-04-20T21:26:18.439967+00:00 +2025-05-21,allcontributors,41,False,2026-04-20T21:26:22.844220+00:00 +2025-05-21,github-actions,100458,False,2026-04-20T21:26:27.309265+00:00 +2025-05-22,Dependabot,20826,False,2026-04-20T21:26:31.777705+00:00 +2025-05-22,Renovate,12844,False,2026-04-20T21:26:36.289600+00:00 +2025-05-22,pre-commit-ci,130,False,2026-04-20T21:26:40.742610+00:00 +2025-05-22,semantic-release-bot,655,False,2026-04-20T21:26:45.317577+00:00 +2025-05-22,allcontributors,15,False,2026-04-20T21:26:49.779011+00:00 +2025-05-22,github-actions,107587,False,2026-04-20T21:26:54.194075+00:00 +2025-05-23,Dependabot,18960,False,2026-04-20T21:26:58.687677+00:00 +2025-05-23,Renovate,18686,False,2026-04-20T21:27:03.099093+00:00 +2025-05-23,pre-commit-ci,74,False,2026-04-20T21:27:07.571711+00:00 +2025-05-23,semantic-release-bot,657,False,2026-04-20T21:27:12.125895+00:00 +2025-05-23,allcontributors,39,False,2026-04-20T21:27:16.614458+00:00 +2025-05-23,github-actions,106430,False,2026-04-20T21:27:21.055743+00:00 +2025-05-24,Dependabot,13956,False,2026-04-20T21:27:25.554040+00:00 +2025-05-24,Renovate,8256,False,2026-04-20T21:27:30.022160+00:00 +2025-05-24,pre-commit-ci,119,False,2026-04-20T21:27:34.522988+00:00 +2025-05-24,semantic-release-bot,451,False,2026-04-20T21:27:38.958005+00:00 +2025-05-24,allcontributors,101,False,2026-04-20T21:27:43.415532+00:00 +2025-05-24,github-actions,100288,False,2026-04-20T21:27:47.850070+00:00 +2025-05-25,Dependabot,13464,False,2026-04-20T21:27:52.381293+00:00 +2025-05-25,Renovate,9586,False,2026-04-20T21:27:56.807858+00:00 +2025-05-25,pre-commit-ci,40,False,2026-04-20T21:28:01.297349+00:00 +2025-05-25,semantic-release-bot,534,False,2026-04-20T21:28:05.754929+00:00 +2025-05-25,allcontributors,31,False,2026-04-20T21:28:10.223195+00:00 +2025-05-25,github-actions,102563,False,2026-04-20T21:28:14.640781+00:00 +2025-05-26,Dependabot,32513,False,2026-04-20T21:28:19.111226+00:00 +2025-05-26,Renovate,79003,False,2026-04-20T21:28:23.751428+00:00 +2025-05-26,pre-commit-ci,1232,False,2026-04-20T21:28:28.234838+00:00 +2025-05-26,semantic-release-bot,800,False,2026-04-20T21:28:32.722749+00:00 +2025-05-26,allcontributors,61,False,2026-04-20T21:28:37.117722+00:00 +2025-05-26,github-actions,94859,False,2026-04-20T21:28:41.571837+00:00 +2025-05-27,Dependabot,24833,False,2026-04-20T21:28:46.136835+00:00 +2025-05-27,Renovate,16788,False,2026-04-20T21:28:50.603520+00:00 +2025-05-27,pre-commit-ci,419,False,2026-04-20T21:28:55.111071+00:00 +2025-05-27,semantic-release-bot,695,False,2026-04-20T21:28:59.520082+00:00 +2025-05-27,allcontributors,60,False,2026-04-20T21:29:04.065610+00:00 +2025-05-27,github-actions,98132,False,2026-04-20T21:29:08.563418+00:00 +2025-05-28,Dependabot,17713,False,2026-04-20T21:29:12.989749+00:00 +2025-05-28,Renovate,14762,False,2026-04-20T21:29:17.458901+00:00 +2025-05-28,pre-commit-ci,128,False,2026-04-20T21:29:21.864769+00:00 +2025-05-28,semantic-release-bot,528,True,2026-04-20T21:29:26.339647+00:00 +2025-05-28,allcontributors,44,False,2026-04-20T21:29:30.894300+00:00 +2025-05-28,github-actions,99078,False,2026-04-20T21:29:35.338171+00:00 +2025-05-29,Dependabot,10052,False,2026-04-20T21:29:39.797272+00:00 +2025-05-29,Renovate,11647,False,2026-04-20T21:29:44.237162+00:00 +2025-05-29,pre-commit-ci,117,False,2026-04-20T21:29:48.696641+00:00 +2025-05-29,semantic-release-bot,776,False,2026-04-20T21:29:53.087613+00:00 +2025-05-29,allcontributors,102,False,2026-04-20T21:29:57.495817+00:00 +2025-05-29,github-actions,102880,False,2026-04-20T21:30:01.941800+00:00 +2025-05-30,Dependabot,11396,False,2026-04-20T21:30:06.395558+00:00 +2025-05-30,Renovate,15100,False,2026-04-20T21:30:10.797858+00:00 +2025-05-30,pre-commit-ci,110,False,2026-04-20T21:30:15.232522+00:00 +2025-05-30,semantic-release-bot,613,False,2026-04-20T21:30:19.671164+00:00 +2025-05-30,allcontributors,99,False,2026-04-20T21:30:24.057149+00:00 +2025-05-30,github-actions,97957,False,2026-04-20T21:30:28.495018+00:00 +2025-05-31,Dependabot,3988,False,2026-04-20T21:30:32.880556+00:00 +2025-05-31,Renovate,11179,False,2026-04-20T21:30:37.342962+00:00 +2025-05-31,pre-commit-ci,28,False,2026-04-20T21:30:41.724962+00:00 +2025-05-31,semantic-release-bot,525,False,2026-04-20T21:30:46.135851+00:00 +2025-05-31,allcontributors,24,False,2026-04-20T21:30:50.561770+00:00 +2025-05-31,github-actions,100007,False,2026-04-20T21:30:54.975788+00:00 +2025-06-01,Dependabot,13596,False,2026-04-20T21:30:59.461148+00:00 +2025-06-01,Renovate,8128,False,2026-04-20T21:31:03.870469+00:00 +2025-06-01,pre-commit-ci,54,False,2026-04-20T21:31:08.314946+00:00 +2025-06-01,semantic-release-bot,653,False,2026-04-20T21:31:12.724275+00:00 +2025-06-01,allcontributors,47,False,2026-04-20T21:31:17.180743+00:00 +2025-06-01,github-actions,94763,False,2026-04-20T21:31:21.603357+00:00 +2025-06-02,Dependabot,35459,False,2026-04-20T21:31:26.041925+00:00 +2025-06-02,Renovate,64677,False,2026-04-20T21:31:30.610440+00:00 +2025-06-02,pre-commit-ci,1664,False,2026-04-20T21:31:35.045168+00:00 +2025-06-02,semantic-release-bot,564,False,2026-04-20T21:31:39.482659+00:00 +2025-06-02,allcontributors,22,False,2026-04-20T21:31:43.846540+00:00 +2025-06-02,github-actions,106128,False,2026-04-20T21:31:48.339079+00:00 +2025-06-03,Dependabot,21589,False,2026-04-20T21:31:52.790980+00:00 +2025-06-03,Renovate,14703,False,2026-04-20T21:31:57.258937+00:00 +2025-06-03,pre-commit-ci,470,False,2026-04-20T21:32:01.714119+00:00 +2025-06-03,semantic-release-bot,529,False,2026-04-20T21:32:06.284237+00:00 +2025-06-03,allcontributors,139,False,2026-04-20T21:32:10.685286+00:00 +2025-06-03,github-actions,97975,False,2026-04-20T21:32:15.075587+00:00 +2025-06-04,Dependabot,11275,False,2026-04-20T21:32:19.593933+00:00 +2025-06-04,Renovate,11882,False,2026-04-20T21:32:24.055911+00:00 +2025-06-04,pre-commit-ci,182,False,2026-04-20T21:32:28.484070+00:00 +2025-06-04,semantic-release-bot,589,False,2026-04-20T21:32:32.952880+00:00 +2025-06-04,allcontributors,328,False,2026-04-20T21:32:37.497836+00:00 +2025-06-04,github-actions,97375,False,2026-04-20T21:32:41.910521+00:00 +2025-06-05,Dependabot,10794,False,2026-04-20T21:32:46.351965+00:00 +2025-06-05,Renovate,8296,False,2026-04-20T21:32:50.940139+00:00 +2025-06-05,pre-commit-ci,153,False,2026-04-20T21:32:55.408979+00:00 +2025-06-05,semantic-release-bot,578,False,2026-04-20T21:32:59.941159+00:00 +2025-06-05,allcontributors,23,False,2026-04-20T21:33:04.360936+00:00 +2025-06-05,github-actions,94973,False,2026-04-20T21:33:08.827254+00:00 +2025-06-06,Dependabot,11328,False,2026-04-20T21:33:13.284367+00:00 +2025-06-06,Renovate,11115,False,2026-04-20T21:33:17.746728+00:00 +2025-06-06,pre-commit-ci,193,False,2026-04-20T21:33:22.152709+00:00 +2025-06-06,semantic-release-bot,608,False,2026-04-20T21:33:26.560608+00:00 +2025-06-06,allcontributors,126,False,2026-04-20T21:33:30.943101+00:00 +2025-06-06,github-actions,100370,False,2026-04-20T21:33:35.488457+00:00 +2025-06-07,Dependabot,4082,False,2026-04-20T21:33:39.984646+00:00 +2025-06-07,Renovate,16698,False,2026-04-20T21:33:44.421621+00:00 +2025-06-07,pre-commit-ci,77,False,2026-04-20T21:33:48.842723+00:00 +2025-06-07,semantic-release-bot,458,False,2026-04-20T21:33:53.243063+00:00 +2025-06-07,allcontributors,273,False,2026-04-20T21:33:57.715926+00:00 +2025-06-07,github-actions,112226,False,2026-04-20T21:34:02.110157+00:00 +2025-06-08,Dependabot,3001,False,2026-04-20T21:34:06.680518+00:00 +2025-06-08,Renovate,7059,False,2026-04-20T21:34:11.132239+00:00 +2025-06-08,pre-commit-ci,101,False,2026-04-20T21:34:15.589322+00:00 +2025-06-08,semantic-release-bot,454,False,2026-04-20T21:34:20.037624+00:00 +2025-06-08,allcontributors,28,False,2026-04-20T21:34:24.460478+00:00 +2025-06-08,github-actions,110649,False,2026-04-20T21:34:28.939572+00:00 +2025-06-09,Dependabot,27158,False,2026-04-20T21:34:33.375212+00:00 +2025-06-09,Renovate,94961,False,2026-04-20T21:34:37.829731+00:00 +2025-06-09,pre-commit-ci,896,False,2026-04-20T21:34:42.291975+00:00 +2025-06-09,semantic-release-bot,653,False,2026-04-20T21:34:46.722517+00:00 +2025-06-09,allcontributors,20,False,2026-04-20T21:34:51.120347+00:00 +2025-06-09,github-actions,115696,False,2026-04-20T21:34:55.567402+00:00 +2025-06-10,Dependabot,22710,False,2026-04-20T21:35:00.014810+00:00 +2025-06-10,Renovate,16472,False,2026-04-20T21:35:04.483293+00:00 +2025-06-10,pre-commit-ci,550,False,2026-04-20T21:35:08.927756+00:00 +2025-06-10,semantic-release-bot,694,False,2026-04-20T21:35:13.294483+00:00 +2025-06-10,allcontributors,135,False,2026-04-20T21:35:17.644367+00:00 +2025-06-10,github-actions,111404,False,2026-04-20T21:35:22.080086+00:00 +2025-06-11,Dependabot,13111,False,2026-04-20T21:35:26.549680+00:00 +2025-06-11,Renovate,17039,False,2026-04-20T21:35:30.949007+00:00 +2025-06-11,pre-commit-ci,173,False,2026-04-20T21:35:35.359289+00:00 +2025-06-11,semantic-release-bot,723,False,2026-04-20T21:35:39.796869+00:00 +2025-06-11,allcontributors,35,False,2026-04-20T21:35:44.260377+00:00 +2025-06-11,github-actions,122617,False,2026-04-20T21:35:48.836658+00:00 +2025-06-12,Dependabot,14691,False,2026-04-20T21:35:53.285516+00:00 +2025-06-12,Renovate,12802,False,2026-04-20T21:35:57.768335+00:00 +2025-06-12,pre-commit-ci,195,False,2026-04-20T21:36:02.162542+00:00 +2025-06-12,semantic-release-bot,672,False,2026-04-20T21:36:06.573027+00:00 +2025-06-12,allcontributors,29,False,2026-04-20T21:36:10.996931+00:00 +2025-06-12,github-actions,106357,False,2026-04-20T21:36:15.429411+00:00 +2025-06-13,Dependabot,10094,False,2026-04-20T21:36:19.885998+00:00 +2025-06-13,Renovate,11616,False,2026-04-20T21:36:24.334515+00:00 +2025-06-13,pre-commit-ci,118,False,2026-04-20T21:36:28.794140+00:00 +2025-06-13,semantic-release-bot,523,False,2026-04-20T21:36:33.207130+00:00 +2025-06-13,allcontributors,47,False,2026-04-20T21:36:37.678704+00:00 +2025-06-13,github-actions,106586,False,2026-04-20T21:36:42.130525+00:00 +2025-06-14,Dependabot,3868,False,2026-04-20T21:36:46.558215+00:00 +2025-06-14,Renovate,9237,False,2026-04-20T21:36:50.945524+00:00 +2025-06-14,pre-commit-ci,94,False,2026-04-20T21:36:55.406076+00:00 +2025-06-14,semantic-release-bot,318,False,2026-04-20T21:36:59.783967+00:00 +2025-06-14,allcontributors,3,False,2026-04-20T21:37:04.220342+00:00 +2025-06-14,github-actions,100604,False,2026-04-20T21:37:08.670832+00:00 +2025-06-15,Dependabot,3646,False,2026-04-20T21:37:13.062016+00:00 +2025-06-15,Renovate,9410,False,2026-04-20T21:37:17.505703+00:00 +2025-06-15,pre-commit-ci,59,False,2026-04-20T21:37:22.030712+00:00 +2025-06-15,semantic-release-bot,1844,False,2026-04-20T21:37:26.492996+00:00 +2025-06-15,allcontributors,4,False,2026-04-20T21:37:30.920703+00:00 +2025-06-15,github-actions,103831,False,2026-04-20T21:37:35.359107+00:00 +2025-06-16,Dependabot,31508,False,2026-04-20T21:37:39.842023+00:00 +2025-06-16,Renovate,106602,False,2026-04-20T21:37:44.353377+00:00 +2025-06-16,pre-commit-ci,380,False,2026-04-20T21:37:48.801881+00:00 +2025-06-16,semantic-release-bot,688,False,2026-04-20T21:37:53.239678+00:00 +2025-06-16,allcontributors,36,False,2026-04-20T21:37:57.663406+00:00 +2025-06-16,github-actions,103456,False,2026-04-20T21:38:02.090007+00:00 +2025-06-17,Dependabot,17132,False,2026-04-20T21:38:06.518856+00:00 +2025-06-17,Renovate,13608,False,2026-04-20T21:38:10.928611+00:00 +2025-06-17,pre-commit-ci,154,False,2026-04-20T21:38:15.427328+00:00 +2025-06-17,semantic-release-bot,1044,False,2026-04-20T21:38:19.846093+00:00 +2025-06-17,allcontributors,185,False,2026-04-20T21:38:24.268917+00:00 +2025-06-17,github-actions,101989,False,2026-04-20T21:38:28.748823+00:00 +2025-06-18,Dependabot,13124,False,2026-04-20T21:38:33.183843+00:00 +2025-06-18,Renovate,15171,False,2026-04-20T21:38:37.745228+00:00 +2025-06-18,pre-commit-ci,130,False,2026-04-20T21:38:42.168115+00:00 +2025-06-18,semantic-release-bot,947,False,2026-04-20T21:38:46.649930+00:00 +2025-06-18,allcontributors,22,False,2026-04-20T21:38:51.078457+00:00 +2025-06-18,github-actions,101532,False,2026-04-20T21:38:55.487084+00:00 +2025-06-19,Dependabot,12000,False,2026-04-20T21:38:59.971549+00:00 +2025-06-19,Renovate,13031,False,2026-04-20T21:39:04.438974+00:00 +2025-06-19,pre-commit-ci,110,False,2026-04-20T21:39:08.856482+00:00 +2025-06-19,semantic-release-bot,1870,False,2026-04-20T21:39:13.265762+00:00 +2025-06-19,allcontributors,244,False,2026-04-20T21:39:17.695292+00:00 +2025-06-19,github-actions,104289,False,2026-04-20T21:39:22.193600+00:00 +2025-06-20,Dependabot,9484,False,2026-04-20T21:39:26.650690+00:00 +2025-06-20,Renovate,9692,False,2026-04-20T21:39:31.071922+00:00 +2025-06-20,pre-commit-ci,99,False,2026-04-20T21:39:35.506542+00:00 +2025-06-20,semantic-release-bot,1074,False,2026-04-20T21:39:39.903410+00:00 +2025-06-20,allcontributors,35,False,2026-04-20T21:39:44.299226+00:00 +2025-06-20,github-actions,102002,False,2026-04-20T21:39:48.720866+00:00 +2025-06-21,Dependabot,3921,False,2026-04-20T21:39:53.151893+00:00 +2025-06-21,Renovate,9952,False,2026-04-20T21:39:57.652097+00:00 +2025-06-21,pre-commit-ci,74,False,2026-04-20T21:40:02.172158+00:00 +2025-06-21,semantic-release-bot,505,False,2026-04-20T21:40:06.642721+00:00 +2025-06-21,allcontributors,8,False,2026-04-20T21:40:11.081304+00:00 +2025-06-21,github-actions,101935,False,2026-04-20T21:40:15.524574+00:00 +2025-06-22,Dependabot,3313,False,2026-04-20T21:40:19.947521+00:00 +2025-06-22,Renovate,5993,False,2026-04-20T21:40:24.391852+00:00 +2025-06-22,pre-commit-ci,49,False,2026-04-20T21:40:28.846833+00:00 +2025-06-22,semantic-release-bot,660,False,2026-04-20T21:40:33.513395+00:00 +2025-06-22,allcontributors,17,False,2026-04-20T21:40:38.162889+00:00 +2025-06-22,github-actions,101649,False,2026-04-20T21:40:42.639162+00:00 +2025-06-23,Dependabot,27044,False,2026-04-20T21:40:47.097378+00:00 +2025-06-23,Renovate,39156,False,2026-04-20T21:40:51.795292+00:00 +2025-06-23,pre-commit-ci,1121,False,2026-04-20T21:40:56.284461+00:00 +2025-06-23,semantic-release-bot,1097,False,2026-04-20T21:41:00.673714+00:00 +2025-06-23,allcontributors,22,False,2026-04-20T21:41:05.105623+00:00 +2025-06-23,github-actions,110727,False,2026-04-20T21:41:09.652085+00:00 +2025-06-24,Dependabot,20339,False,2026-04-20T21:41:14.144352+00:00 +2025-06-24,Renovate,13266,False,2026-04-20T21:41:18.553648+00:00 +2025-06-24,pre-commit-ci,352,False,2026-04-20T21:41:23.077014+00:00 +2025-06-24,semantic-release-bot,780,False,2026-04-20T21:41:27.500729+00:00 +2025-06-24,allcontributors,157,False,2026-04-20T21:41:32.018304+00:00 +2025-06-24,github-actions,105156,False,2026-04-20T21:41:36.537189+00:00 +2025-06-25,Dependabot,13199,False,2026-04-20T21:41:41.028565+00:00 +2025-06-25,Renovate,16008,False,2026-04-20T21:41:45.470947+00:00 +2025-06-25,pre-commit-ci,232,False,2026-04-20T21:41:49.903298+00:00 +2025-06-25,semantic-release-bot,727,False,2026-04-20T21:41:54.409931+00:00 +2025-06-25,allcontributors,16,False,2026-04-20T21:41:58.951812+00:00 +2025-06-25,github-actions,104371,False,2026-04-20T21:42:03.383538+00:00 +2025-06-26,Dependabot,9632,False,2026-04-20T21:42:07.869442+00:00 +2025-06-26,Renovate,12079,False,2026-04-20T21:42:12.286023+00:00 +2025-06-26,pre-commit-ci,189,False,2026-04-20T21:42:16.693346+00:00 +2025-06-26,semantic-release-bot,1153,False,2026-04-20T21:42:21.109447+00:00 +2025-06-26,allcontributors,106,False,2026-04-20T21:42:25.527224+00:00 +2025-06-26,github-actions,104570,False,2026-04-20T21:42:29.985578+00:00 +2025-06-27,Dependabot,10561,False,2026-04-20T21:42:34.493156+00:00 +2025-06-27,Renovate,17965,False,2026-04-20T21:42:39.055878+00:00 +2025-06-27,pre-commit-ci,86,False,2026-04-20T21:42:43.503682+00:00 +2025-06-27,semantic-release-bot,679,False,2026-04-20T21:42:47.954786+00:00 +2025-06-27,allcontributors,58,False,2026-04-20T21:42:52.369271+00:00 +2025-06-27,github-actions,106423,False,2026-04-20T21:42:56.809801+00:00 +2025-06-28,Dependabot,4038,False,2026-04-20T21:43:01.179566+00:00 +2025-06-28,Renovate,49714,False,2026-04-20T21:43:05.909425+00:00 +2025-06-28,pre-commit-ci,54,False,2026-04-20T21:43:10.424213+00:00 +2025-06-28,semantic-release-bot,966,False,2026-04-20T21:43:14.837126+00:00 +2025-06-28,allcontributors,29,False,2026-04-20T21:43:19.333768+00:00 +2025-06-28,github-actions,107098,False,2026-04-20T21:43:23.867506+00:00 +2025-06-29,Dependabot,2985,False,2026-04-20T21:43:28.502394+00:00 +2025-06-29,Renovate,8018,False,2026-04-20T21:43:32.897899+00:00 +2025-06-29,pre-commit-ci,57,False,2026-04-20T21:43:37.458425+00:00 +2025-06-29,semantic-release-bot,357,False,2026-04-20T21:43:42.069945+00:00 +2025-06-29,allcontributors,20,False,2026-04-20T21:43:46.509424+00:00 +2025-06-29,github-actions,106147,False,2026-04-20T21:43:51.005151+00:00 +2025-06-30,Dependabot,27097,False,2026-04-20T21:43:55.538649+00:00 +2025-06-30,Renovate,77946,False,2026-04-20T21:44:00.031734+00:00 +2025-06-30,pre-commit-ci,982,False,2026-04-20T21:44:04.445868+00:00 +2025-06-30,semantic-release-bot,1265,False,2026-04-20T21:44:08.959918+00:00 +2025-06-30,allcontributors,18,False,2026-04-20T21:44:13.505691+00:00 +2025-06-30,github-actions,106244,False,2026-04-20T21:44:18.013475+00:00 +2025-07-01,Dependabot,31609,False,2026-04-20T21:44:22.458531+00:00 +2025-07-01,Renovate,35952,False,2026-04-20T21:44:26.862106+00:00 +2025-07-01,pre-commit-ci,346,False,2026-04-20T21:44:31.285344+00:00 +2025-07-01,semantic-release-bot,813,False,2026-04-20T21:44:35.698443+00:00 +2025-07-01,allcontributors,28,False,2026-04-20T21:44:40.130798+00:00 +2025-07-01,github-actions,105974,False,2026-04-20T21:44:44.637259+00:00 +2025-07-02,Dependabot,17093,False,2026-04-20T21:44:49.067559+00:00 +2025-07-02,Renovate,28084,False,2026-04-20T21:44:53.646956+00:00 +2025-07-02,pre-commit-ci,133,False,2026-04-20T21:44:58.063134+00:00 +2025-07-02,semantic-release-bot,803,False,2026-04-20T21:45:02.628206+00:00 +2025-07-02,allcontributors,58,False,2026-04-20T21:45:07.067052+00:00 +2025-07-02,github-actions,110615,False,2026-04-20T21:45:11.535048+00:00 +2025-07-03,Dependabot,12051,False,2026-04-20T21:45:15.976603+00:00 +2025-07-03,Renovate,13913,False,2026-04-20T21:45:20.384536+00:00 +2025-07-03,pre-commit-ci,117,True,2026-04-20T21:45:24.905766+00:00 +2025-07-03,semantic-release-bot,868,False,2026-04-20T21:45:29.356619+00:00 +2025-07-03,allcontributors,80,False,2026-04-20T21:45:33.804712+00:00 +2025-07-03,github-actions,106446,False,2026-04-20T21:45:38.206778+00:00 +2025-07-04,Dependabot,9081,False,2026-04-20T21:45:42.650090+00:00 +2025-07-04,Renovate,12607,False,2026-04-20T21:45:47.057618+00:00 +2025-07-04,pre-commit-ci,68,False,2026-04-20T21:45:51.514633+00:00 +2025-07-04,semantic-release-bot,1063,False,2026-04-20T21:45:55.928889+00:00 +2025-07-04,allcontributors,17,False,2026-04-20T21:46:00.427260+00:00 +2025-07-04,github-actions,111586,False,2026-04-20T21:46:04.893711+00:00 +2025-07-05,Dependabot,3599,False,2026-04-20T21:46:09.423704+00:00 +2025-07-05,Renovate,8253,False,2026-04-20T21:46:13.798708+00:00 +2025-07-05,pre-commit-ci,41,False,2026-04-20T21:46:18.187380+00:00 +2025-07-05,semantic-release-bot,461,False,2026-04-20T21:46:22.558952+00:00 +2025-07-05,allcontributors,14,False,2026-04-20T21:46:26.981363+00:00 +2025-07-05,github-actions,103719,False,2026-04-20T21:46:31.459831+00:00 +2025-07-06,Dependabot,2683,False,2026-04-20T21:46:35.923197+00:00 +2025-07-06,Renovate,6296,False,2026-04-20T21:46:40.374877+00:00 +2025-07-06,pre-commit-ci,47,True,2026-04-20T21:46:44.982679+00:00 +2025-07-06,semantic-release-bot,862,False,2026-04-20T21:46:49.387097+00:00 +2025-07-06,allcontributors,50,False,2026-04-20T21:46:53.843990+00:00 +2025-07-06,github-actions,106685,False,2026-04-20T21:46:58.229319+00:00 +2025-07-07,Dependabot,21188,False,2026-04-20T21:47:02.634387+00:00 +2025-07-07,Renovate,85700,False,2026-04-20T21:47:07.141758+00:00 +2025-07-07,pre-commit-ci,1717,False,2026-04-20T21:47:11.623582+00:00 +2025-07-07,semantic-release-bot,1212,False,2026-04-20T21:47:16.088065+00:00 +2025-07-07,allcontributors,19,False,2026-04-20T21:47:20.600180+00:00 +2025-07-07,github-actions,109031,False,2026-04-20T21:47:25.064751+00:00 +2025-07-08,Dependabot,18481,False,2026-04-20T21:47:29.600704+00:00 +2025-07-08,Renovate,14073,False,2026-04-20T21:47:34.042710+00:00 +2025-07-08,pre-commit-ci,630,False,2026-04-20T21:47:38.727589+00:00 +2025-07-08,semantic-release-bot,995,False,2026-04-20T21:47:43.179968+00:00 +2025-07-08,allcontributors,84,False,2026-04-20T21:47:47.726333+00:00 +2025-07-08,github-actions,106240,False,2026-04-20T21:47:52.241113+00:00 +2025-07-09,Dependabot,11762,False,2026-04-20T21:47:56.711483+00:00 +2025-07-09,Renovate,15806,False,2026-04-20T21:48:01.124313+00:00 +2025-07-09,pre-commit-ci,207,False,2026-04-20T21:48:05.598752+00:00 +2025-07-09,semantic-release-bot,622,False,2026-04-20T21:48:09.981851+00:00 +2025-07-09,allcontributors,112,False,2026-04-20T21:48:14.460053+00:00 +2025-07-09,github-actions,135602,False,2026-04-20T21:48:18.890004+00:00 +2025-07-10,Dependabot,10020,False,2026-04-20T21:48:23.379211+00:00 +2025-07-10,Renovate,13872,False,2026-04-20T21:48:27.851542+00:00 +2025-07-10,pre-commit-ci,197,False,2026-04-20T21:48:32.311917+00:00 +2025-07-10,semantic-release-bot,1002,False,2026-04-20T21:48:36.736852+00:00 +2025-07-10,allcontributors,48,False,2026-04-20T21:48:41.226534+00:00 +2025-07-10,github-actions,108722,False,2026-04-20T21:48:45.668817+00:00 +2025-07-11,Dependabot,8539,True,2026-04-20T21:48:50.173233+00:00 +2025-07-11,Renovate,12240,False,2026-04-20T21:48:54.568585+00:00 +2025-07-11,pre-commit-ci,192,False,2026-04-20T21:48:59.101918+00:00 +2025-07-11,semantic-release-bot,717,False,2026-04-20T21:49:03.591076+00:00 +2025-07-11,allcontributors,143,False,2026-04-20T21:49:08.058797+00:00 +2025-07-11,github-actions,105828,False,2026-04-20T21:49:12.578634+00:00 +2025-07-12,Dependabot,4370,False,2026-04-20T21:49:17.004861+00:00 +2025-07-12,Renovate,10268,False,2026-04-20T21:49:21.523296+00:00 +2025-07-12,pre-commit-ci,89,False,2026-04-20T21:49:26.063616+00:00 +2025-07-12,semantic-release-bot,571,False,2026-04-20T21:49:30.539298+00:00 +2025-07-12,allcontributors,30,False,2026-04-20T21:49:34.941008+00:00 +2025-07-12,github-actions,105401,False,2026-04-20T21:49:39.581490+00:00 +2025-07-13,Dependabot,2541,False,2026-04-20T21:49:44.066618+00:00 +2025-07-13,Renovate,6169,False,2026-04-20T21:49:48.416610+00:00 +2025-07-13,pre-commit-ci,105,False,2026-04-20T21:49:53.680599+00:00 +2025-07-13,semantic-release-bot,991,False,2026-04-20T21:49:58.099643+00:00 +2025-07-13,allcontributors,18,False,2026-04-20T21:50:02.498165+00:00 +2025-07-13,github-actions,106186,False,2026-04-20T21:50:06.950643+00:00 +2025-07-14,Dependabot,22190,False,2026-04-20T21:50:11.410446+00:00 +2025-07-14,Renovate,46750,False,2026-04-20T21:50:15.885754+00:00 +2025-07-14,pre-commit-ci,1035,False,2026-04-20T21:50:20.564174+00:00 +2025-07-14,semantic-release-bot,1438,False,2026-04-20T21:50:25.040653+00:00 +2025-07-14,allcontributors,46,False,2026-04-20T21:50:29.479603+00:00 +2025-07-14,github-actions,107392,False,2026-04-20T21:50:33.905134+00:00 +2025-07-15,Dependabot,15618,False,2026-04-20T21:50:38.436651+00:00 +2025-07-15,Renovate,11863,False,2026-04-20T21:50:42.893160+00:00 +2025-07-15,pre-commit-ci,503,False,2026-04-20T21:50:47.349416+00:00 +2025-07-15,semantic-release-bot,987,False,2026-04-20T21:50:51.758490+00:00 +2025-07-15,allcontributors,31,False,2026-04-20T21:50:56.159916+00:00 +2025-07-15,github-actions,106777,False,2026-04-20T21:51:00.602796+00:00 +2025-07-16,Dependabot,11345,False,2026-04-20T21:51:05.056674+00:00 +2025-07-16,Renovate,12170,False,2026-04-20T21:51:09.480040+00:00 +2025-07-16,pre-commit-ci,185,False,2026-04-20T21:51:13.871522+00:00 +2025-07-16,semantic-release-bot,883,False,2026-04-20T21:51:18.465708+00:00 +2025-07-16,allcontributors,56,False,2026-04-20T21:51:22.869791+00:00 +2025-07-16,github-actions,105654,False,2026-04-20T21:51:27.335560+00:00 +2025-07-17,Dependabot,11355,False,2026-04-20T21:51:31.866296+00:00 +2025-07-17,Renovate,10680,False,2026-04-20T21:51:36.302365+00:00 +2025-07-17,pre-commit-ci,161,False,2026-04-20T21:51:40.735099+00:00 +2025-07-17,semantic-release-bot,946,False,2026-04-20T21:51:45.232313+00:00 +2025-07-17,allcontributors,57,False,2026-04-20T21:51:49.662094+00:00 +2025-07-17,github-actions,106657,False,2026-04-20T21:51:54.103409+00:00 +2025-07-18,Dependabot,13876,False,2026-04-20T21:51:58.709047+00:00 +2025-07-18,Renovate,12850,False,2026-04-20T21:52:03.126521+00:00 +2025-07-18,pre-commit-ci,138,False,2026-04-20T21:52:07.618858+00:00 +2025-07-18,semantic-release-bot,494,False,2026-04-20T21:52:12.042619+00:00 +2025-07-18,allcontributors,48,False,2026-04-20T21:52:16.445763+00:00 +2025-07-18,github-actions,106053,False,2026-04-20T21:52:20.838648+00:00 +2025-07-19,Dependabot,3825,False,2026-04-20T21:52:25.244452+00:00 +2025-07-19,Renovate,10184,False,2026-04-20T21:52:29.690254+00:00 +2025-07-19,pre-commit-ci,76,False,2026-04-20T21:52:34.113975+00:00 +2025-07-19,semantic-release-bot,762,False,2026-04-20T21:52:38.570093+00:00 +2025-07-19,allcontributors,5,False,2026-04-20T21:52:43.022083+00:00 +2025-07-19,github-actions,105054,False,2026-04-20T21:52:47.408280+00:00 +2025-07-20,Dependabot,2966,False,2026-04-20T21:52:51.828071+00:00 +2025-07-20,Renovate,5938,False,2026-04-20T21:52:56.230996+00:00 +2025-07-20,pre-commit-ci,72,False,2026-04-20T21:53:00.762995+00:00 +2025-07-20,semantic-release-bot,472,False,2026-04-20T21:53:05.167448+00:00 +2025-07-20,allcontributors,11,False,2026-04-20T21:53:09.612125+00:00 +2025-07-20,github-actions,103020,False,2026-04-20T21:53:14.075020+00:00 +2025-07-21,Dependabot,25638,False,2026-04-20T21:53:18.774164+00:00 +2025-07-21,Renovate,93515,False,2026-04-20T21:53:23.495220+00:00 +2025-07-21,pre-commit-ci,960,False,2026-04-20T21:53:28.014128+00:00 +2025-07-21,semantic-release-bot,681,False,2026-04-20T21:53:32.530794+00:00 +2025-07-21,allcontributors,66,False,2026-04-20T21:53:37.018771+00:00 +2025-07-21,github-actions,109681,False,2026-04-20T21:53:41.524178+00:00 +2025-07-22,Dependabot,24270,False,2026-04-20T21:53:46.101976+00:00 +2025-07-22,Renovate,12851,False,2026-04-20T21:53:50.632507+00:00 +2025-07-22,pre-commit-ci,410,False,2026-04-20T21:53:55.136384+00:00 +2025-07-22,semantic-release-bot,704,False,2026-04-20T21:53:59.651116+00:00 +2025-07-22,allcontributors,123,False,2026-04-20T21:54:04.026746+00:00 +2025-07-22,github-actions,112601,False,2026-04-20T21:54:08.562120+00:00 +2025-07-23,Dependabot,13902,False,2026-04-20T21:54:13.005445+00:00 +2025-07-23,Renovate,10725,False,2026-04-20T21:54:17.519047+00:00 +2025-07-23,pre-commit-ci,137,False,2026-04-20T21:54:22.008615+00:00 +2025-07-23,semantic-release-bot,662,False,2026-04-20T21:54:26.450376+00:00 +2025-07-23,allcontributors,92,False,2026-04-20T21:54:30.907479+00:00 +2025-07-23,github-actions,106586,False,2026-04-20T21:54:35.381122+00:00 +2025-07-24,Dependabot,10751,False,2026-04-20T21:54:39.809581+00:00 +2025-07-24,Renovate,10415,False,2026-04-20T21:54:44.316275+00:00 +2025-07-24,pre-commit-ci,88,False,2026-04-20T21:54:48.717423+00:00 +2025-07-24,semantic-release-bot,589,False,2026-04-20T21:54:53.131219+00:00 +2025-07-24,allcontributors,17,False,2026-04-20T21:54:57.586480+00:00 +2025-07-24,github-actions,106541,False,2026-04-20T21:55:02.266337+00:00 +2025-07-25,Dependabot,9237,False,2026-04-20T21:55:06.684273+00:00 +2025-07-25,Renovate,11856,False,2026-04-20T21:55:11.302881+00:00 +2025-07-25,pre-commit-ci,110,False,2026-04-20T21:55:15.715067+00:00 +2025-07-25,semantic-release-bot,469,False,2026-04-20T21:55:20.203823+00:00 +2025-07-25,allcontributors,10,False,2026-04-20T21:55:24.784151+00:00 +2025-07-25,github-actions,109666,False,2026-04-20T21:55:29.243874+00:00 +2025-07-26,Dependabot,3411,False,2026-04-20T21:55:33.748691+00:00 +2025-07-26,Renovate,8825,False,2026-04-20T21:55:38.196994+00:00 +2025-07-26,pre-commit-ci,138,False,2026-04-20T21:55:42.691784+00:00 +2025-07-26,semantic-release-bot,642,False,2026-04-20T21:55:47.081622+00:00 +2025-07-26,allcontributors,19,False,2026-04-20T21:55:51.471986+00:00 +2025-07-26,github-actions,106718,False,2026-04-20T21:55:55.857973+00:00 +2025-07-27,Dependabot,2779,False,2026-04-20T21:56:00.328339+00:00 +2025-07-27,Renovate,7198,False,2026-04-20T21:56:04.776926+00:00 +2025-07-27,pre-commit-ci,71,False,2026-04-20T21:56:09.290017+00:00 +2025-07-27,semantic-release-bot,382,False,2026-04-20T21:56:13.719469+00:00 +2025-07-27,allcontributors,23,False,2026-04-20T21:56:18.137537+00:00 +2025-07-27,github-actions,107694,False,2026-04-20T21:56:22.596668+00:00 +2025-07-28,Dependabot,20925,False,2026-04-20T21:56:27.089537+00:00 +2025-07-28,Renovate,56079,False,2026-04-20T21:56:31.810378+00:00 +2025-07-28,pre-commit-ci,990,False,2026-04-20T21:56:36.248010+00:00 +2025-07-28,semantic-release-bot,776,False,2026-04-20T21:56:40.723961+00:00 +2025-07-28,allcontributors,13,False,2026-04-20T21:56:45.208501+00:00 +2025-07-28,github-actions,110132,False,2026-04-20T21:56:49.639712+00:00 +2025-07-29,Dependabot,23886,False,2026-04-20T21:56:54.099494+00:00 +2025-07-29,Renovate,10975,False,2026-04-20T21:56:58.536417+00:00 +2025-07-29,pre-commit-ci,316,False,2026-04-20T21:57:02.983580+00:00 +2025-07-29,semantic-release-bot,1136,False,2026-04-20T21:57:07.421543+00:00 +2025-07-29,allcontributors,85,False,2026-04-20T21:57:11.829035+00:00 +2025-07-29,github-actions,108621,False,2026-04-20T21:57:16.266967+00:00 +2025-07-30,Dependabot,215913,False,2026-04-20T21:57:20.976450+00:00 +2025-07-30,Renovate,11947,False,2026-04-20T21:57:25.429780+00:00 +2025-07-30,pre-commit-ci,104,False,2026-04-20T21:57:29.864804+00:00 +2025-07-30,semantic-release-bot,704,False,2026-04-20T21:57:34.293880+00:00 +2025-07-30,allcontributors,9,False,2026-04-20T21:57:38.722958+00:00 +2025-07-30,github-actions,110845,False,2026-04-20T21:57:43.187742+00:00 +2025-07-31,Dependabot,9329,False,2026-04-20T21:57:47.679943+00:00 +2025-07-31,Renovate,9968,False,2026-04-20T21:57:52.072586+00:00 +2025-07-31,pre-commit-ci,99,False,2026-04-20T21:57:56.474449+00:00 +2025-07-31,semantic-release-bot,668,False,2026-04-20T21:58:00.898442+00:00 +2025-07-31,allcontributors,127,False,2026-04-20T21:58:05.282413+00:00 +2025-07-31,github-actions,111547,False,2026-04-20T21:58:09.744135+00:00 +2025-08-01,Dependabot,20241,False,2026-04-20T21:58:14.152298+00:00 +2025-08-01,Renovate,15213,False,2026-04-20T21:58:18.717111+00:00 +2025-08-01,pre-commit-ci,127,False,2026-04-20T21:58:23.160269+00:00 +2025-08-01,semantic-release-bot,602,False,2026-04-20T21:58:27.518293+00:00 +2025-08-01,allcontributors,56,False,2026-04-20T21:58:32.027968+00:00 +2025-08-01,github-actions,113999,False,2026-04-20T21:58:36.450884+00:00 +2025-08-02,Dependabot,4654,False,2026-04-20T21:58:40.849299+00:00 +2025-08-02,Renovate,6625,False,2026-04-20T21:58:45.294659+00:00 +2025-08-02,pre-commit-ci,68,False,2026-04-20T21:58:49.709473+00:00 +2025-08-02,semantic-release-bot,358,False,2026-04-20T21:58:54.086558+00:00 +2025-08-02,allcontributors,22,False,2026-04-20T21:58:58.557950+00:00 +2025-08-02,github-actions,111903,False,2026-04-20T21:59:03.059321+00:00 +2025-08-03,Dependabot,4081,False,2026-04-20T21:59:07.542216+00:00 +2025-08-03,Renovate,7212,False,2026-04-20T21:59:11.971661+00:00 +2025-08-03,pre-commit-ci,67,False,2026-04-20T21:59:16.372332+00:00 +2025-08-03,semantic-release-bot,402,False,2026-04-20T21:59:20.859739+00:00 +2025-08-03,allcontributors,9,False,2026-04-20T21:59:25.378444+00:00 +2025-08-03,github-actions,109077,False,2026-04-20T21:59:29.893636+00:00 +2025-08-04,Dependabot,22052,False,2026-04-20T21:59:34.291769+00:00 +2025-08-04,Renovate,47674,False,2026-04-20T21:59:38.795423+00:00 +2025-08-04,pre-commit-ci,1373,False,2026-04-20T21:59:43.252834+00:00 +2025-08-04,semantic-release-bot,787,False,2026-04-20T21:59:47.656959+00:00 +2025-08-04,allcontributors,23,False,2026-04-20T21:59:52.050734+00:00 +2025-08-04,github-actions,115372,False,2026-04-20T21:59:56.444200+00:00 +2025-08-05,Dependabot,19278,False,2026-04-20T22:00:00.933640+00:00 +2025-08-05,Renovate,15249,False,2026-04-20T22:00:05.337987+00:00 +2025-08-05,pre-commit-ci,566,False,2026-04-20T22:00:09.836699+00:00 +2025-08-05,semantic-release-bot,810,False,2026-04-20T22:00:14.256639+00:00 +2025-08-05,allcontributors,74,False,2026-04-20T22:00:18.646118+00:00 +2025-08-05,github-actions,119941,False,2026-04-20T22:00:23.076529+00:00 +2025-08-06,Dependabot,13400,False,2026-04-20T22:00:27.511548+00:00 +2025-08-06,Renovate,11061,False,2026-04-20T22:00:31.945232+00:00 +2025-08-06,pre-commit-ci,166,False,2026-04-20T22:00:36.488447+00:00 +2025-08-06,semantic-release-bot,987,False,2026-04-20T22:00:40.895672+00:00 +2025-08-06,allcontributors,50,False,2026-04-20T22:00:45.335818+00:00 +2025-08-06,github-actions,110265,False,2026-04-20T22:00:49.810198+00:00 +2025-08-07,Dependabot,10091,False,2026-04-20T22:00:54.264713+00:00 +2025-08-07,Renovate,18868,False,2026-04-20T22:00:58.883098+00:00 +2025-08-07,pre-commit-ci,137,False,2026-04-20T22:01:03.361052+00:00 +2025-08-07,semantic-release-bot,666,False,2026-04-20T22:01:07.783614+00:00 +2025-08-07,allcontributors,47,False,2026-04-20T22:01:12.401321+00:00 +2025-08-07,github-actions,112263,False,2026-04-20T22:01:16.859260+00:00 +2025-08-08,Dependabot,11801,False,2026-04-20T22:01:21.385111+00:00 +2025-08-08,Renovate,15300,False,2026-04-20T22:01:25.821705+00:00 +2025-08-08,pre-commit-ci,154,False,2026-04-20T22:01:30.273427+00:00 +2025-08-08,semantic-release-bot,607,False,2026-04-20T22:01:34.714140+00:00 +2025-08-08,allcontributors,10,False,2026-04-20T22:01:39.154699+00:00 +2025-08-08,github-actions,120096,False,2026-04-20T22:01:43.840109+00:00 +2025-08-09,Dependabot,4002,False,2026-04-20T22:01:48.362458+00:00 +2025-08-09,Renovate,11927,False,2026-04-20T22:01:52.884243+00:00 +2025-08-09,pre-commit-ci,48,False,2026-04-20T22:01:57.270298+00:00 +2025-08-09,semantic-release-bot,565,False,2026-04-20T22:02:01.766112+00:00 +2025-08-09,allcontributors,7,False,2026-04-20T22:02:06.277491+00:00 +2025-08-09,github-actions,120942,False,2026-04-20T22:02:10.754406+00:00 +2025-08-10,Dependabot,3549,False,2026-04-20T22:02:15.173688+00:00 +2025-08-10,Renovate,9303,False,2026-04-20T22:02:19.595745+00:00 +2025-08-10,pre-commit-ci,79,False,2026-04-20T22:02:24.029377+00:00 +2025-08-10,semantic-release-bot,467,False,2026-04-20T22:02:28.420892+00:00 +2025-08-10,allcontributors,16,False,2026-04-20T22:02:32.800523+00:00 +2025-08-10,github-actions,114178,False,2026-04-20T22:02:37.237186+00:00 +2025-08-11,Dependabot,29342,False,2026-04-20T22:02:41.694508+00:00 +2025-08-11,Renovate,111034,False,2026-04-20T22:02:46.222700+00:00 +2025-08-11,pre-commit-ci,1763,False,2026-04-20T22:02:50.810558+00:00 +2025-08-11,semantic-release-bot,708,False,2026-04-20T22:02:55.303967+00:00 +2025-08-11,allcontributors,15,False,2026-04-20T22:02:59.807930+00:00 +2025-08-11,github-actions,124139,False,2026-04-20T22:03:04.255028+00:00 +2025-08-12,Dependabot,39793,False,2026-04-20T22:03:08.714210+00:00 +2025-08-12,Renovate,19177,False,2026-04-20T22:03:13.197592+00:00 +2025-08-12,pre-commit-ci,632,False,2026-04-20T22:03:17.727679+00:00 +2025-08-12,semantic-release-bot,653,False,2026-04-20T22:03:22.147164+00:00 +2025-08-12,allcontributors,11,False,2026-04-20T22:03:26.634493+00:00 +2025-08-12,github-actions,122588,False,2026-04-20T22:03:31.141965+00:00 +2025-08-13,Dependabot,22242,False,2026-04-20T22:03:35.581869+00:00 +2025-08-13,Renovate,12961,False,2026-04-20T22:03:39.996671+00:00 +2025-08-13,pre-commit-ci,228,False,2026-04-20T22:03:44.438809+00:00 +2025-08-13,semantic-release-bot,589,False,2026-04-20T22:03:48.891304+00:00 +2025-08-13,allcontributors,49,False,2026-04-20T22:03:53.343310+00:00 +2025-08-13,github-actions,121859,False,2026-04-20T22:03:57.748890+00:00 +2025-08-14,Dependabot,12706,False,2026-04-20T22:04:02.287086+00:00 +2025-08-14,Renovate,16568,False,2026-04-20T22:04:06.757053+00:00 +2025-08-14,pre-commit-ci,140,False,2026-04-20T22:04:11.243944+00:00 +2025-08-14,semantic-release-bot,596,False,2026-04-20T22:04:15.689328+00:00 +2025-08-14,allcontributors,36,False,2026-04-20T22:04:20.358953+00:00 +2025-08-14,github-actions,121306,False,2026-04-20T22:04:24.790817+00:00 +2025-08-15,Dependabot,11629,False,2026-04-20T22:04:29.309164+00:00 +2025-08-15,Renovate,15088,False,2026-04-20T22:04:33.736651+00:00 +2025-08-15,pre-commit-ci,144,False,2026-04-20T22:04:38.185893+00:00 +2025-08-15,semantic-release-bot,544,False,2026-04-20T22:04:42.593556+00:00 +2025-08-15,allcontributors,18,False,2026-04-20T22:04:47.089227+00:00 +2025-08-15,github-actions,126402,False,2026-04-20T22:04:51.510699+00:00 +2025-08-16,Dependabot,5052,False,2026-04-20T22:04:55.955346+00:00 +2025-08-16,Renovate,12027,False,2026-04-20T22:05:00.374112+00:00 +2025-08-16,pre-commit-ci,124,False,2026-04-20T22:05:04.791463+00:00 +2025-08-16,semantic-release-bot,528,False,2026-04-20T22:05:09.196373+00:00 +2025-08-16,allcontributors,5,False,2026-04-20T22:05:13.654129+00:00 +2025-08-16,github-actions,122135,False,2026-04-20T22:05:18.143573+00:00 +2025-08-17,Dependabot,3973,False,2026-04-20T22:05:22.575261+00:00 +2025-08-17,Renovate,9037,False,2026-04-20T22:05:27.007969+00:00 +2025-08-17,pre-commit-ci,66,False,2026-04-20T22:05:31.441826+00:00 +2025-08-17,semantic-release-bot,450,False,2026-04-20T22:05:35.999415+00:00 +2025-08-17,allcontributors,12,False,2026-04-20T22:05:40.409324+00:00 +2025-08-17,github-actions,126486,False,2026-04-20T22:05:44.904159+00:00 +2025-08-18,Dependabot,29813,False,2026-04-20T22:05:49.380902+00:00 +2025-08-18,Renovate,76602,False,2026-04-20T22:05:53.899691+00:00 +2025-08-18,pre-commit-ci,1040,False,2026-04-20T22:05:58.333052+00:00 +2025-08-18,semantic-release-bot,672,False,2026-04-20T22:06:02.844610+00:00 +2025-08-18,allcontributors,12,False,2026-04-20T22:06:07.247923+00:00 +2025-08-18,github-actions,126926,False,2026-04-20T22:06:11.810064+00:00 +2025-08-19,Dependabot,20896,False,2026-04-20T22:06:16.235336+00:00 +2025-08-19,Renovate,11985,False,2026-04-20T22:06:20.646476+00:00 +2025-08-19,pre-commit-ci,400,False,2026-04-20T22:06:25.081584+00:00 +2025-08-19,semantic-release-bot,644,False,2026-04-20T22:06:29.527837+00:00 +2025-08-19,allcontributors,47,False,2026-04-20T22:06:33.943947+00:00 +2025-08-19,github-actions,126860,False,2026-04-20T22:06:38.435500+00:00 +2025-08-20,Dependabot,14364,False,2026-04-20T22:06:42.881948+00:00 +2025-08-20,Renovate,10261,False,2026-04-20T22:06:47.366109+00:00 +2025-08-20,pre-commit-ci,156,False,2026-04-20T22:06:51.845671+00:00 +2025-08-20,semantic-release-bot,520,False,2026-04-20T22:06:56.342408+00:00 +2025-08-20,allcontributors,9,False,2026-04-20T22:07:00.786028+00:00 +2025-08-20,github-actions,127160,False,2026-04-20T22:07:05.227168+00:00 +2025-08-21,Dependabot,15398,False,2026-04-20T22:07:09.776104+00:00 +2025-08-21,Renovate,13710,False,2026-04-20T22:07:14.246965+00:00 +2025-08-21,pre-commit-ci,113,False,2026-04-20T22:07:18.776467+00:00 +2025-08-21,semantic-release-bot,711,False,2026-04-20T22:07:23.156546+00:00 +2025-08-21,allcontributors,7,False,2026-04-20T22:07:27.608810+00:00 +2025-08-21,github-actions,123949,False,2026-04-20T22:07:32.042706+00:00 +2025-08-22,Dependabot,14251,False,2026-04-20T22:07:36.628183+00:00 +2025-08-22,Renovate,12228,False,2026-04-20T22:07:41.053916+00:00 +2025-08-22,pre-commit-ci,88,False,2026-04-20T22:07:45.514226+00:00 +2025-08-22,semantic-release-bot,593,False,2026-04-20T22:07:50.015230+00:00 +2025-08-22,allcontributors,43,False,2026-04-20T22:07:54.550727+00:00 +2025-08-22,github-actions,126788,False,2026-04-20T22:07:59.024192+00:00 +2025-08-23,Dependabot,4592,False,2026-04-20T22:08:03.436367+00:00 +2025-08-23,Renovate,9377,False,2026-04-20T22:08:07.962382+00:00 +2025-08-23,pre-commit-ci,103,False,2026-04-20T22:08:12.400588+00:00 +2025-08-23,semantic-release-bot,329,False,2026-04-20T22:08:16.940702+00:00 +2025-08-23,allcontributors,2,False,2026-04-20T22:08:21.318560+00:00 +2025-08-23,github-actions,126513,False,2026-04-20T22:08:25.818803+00:00 +2025-08-24,Dependabot,4583,False,2026-04-20T22:08:30.298930+00:00 +2025-08-24,Renovate,8725,False,2026-04-20T22:08:34.793610+00:00 +2025-08-24,pre-commit-ci,47,False,2026-04-20T22:08:39.204004+00:00 +2025-08-24,semantic-release-bot,331,False,2026-04-20T22:08:43.654485+00:00 +2025-08-24,allcontributors,6,False,2026-04-20T22:08:48.225076+00:00 +2025-08-24,github-actions,127023,False,2026-04-20T22:08:52.651933+00:00 +2025-08-25,Dependabot,229759,False,2026-04-20T22:08:57.148509+00:00 +2025-08-25,Renovate,74306,False,2026-04-20T22:09:01.621681+00:00 +2025-08-25,pre-commit-ci,887,False,2026-04-20T22:09:06.128207+00:00 +2025-08-25,semantic-release-bot,558,False,2026-04-20T22:09:10.543766+00:00 +2025-08-25,allcontributors,22,False,2026-04-20T22:09:14.984456+00:00 +2025-08-25,github-actions,134922,False,2026-04-20T22:09:19.437406+00:00 +2025-08-26,Dependabot,22567,False,2026-04-20T22:09:23.846006+00:00 +2025-08-26,Renovate,10057,False,2026-04-20T22:09:28.337118+00:00 +2025-08-26,pre-commit-ci,386,False,2026-04-20T22:09:32.837996+00:00 +2025-08-26,semantic-release-bot,621,False,2026-04-20T22:09:37.283749+00:00 +2025-08-26,allcontributors,19,False,2026-04-20T22:09:41.742913+00:00 +2025-08-26,github-actions,136013,False,2026-04-20T22:09:46.256136+00:00 +2025-08-27,Dependabot,30335,False,2026-04-20T22:09:50.771926+00:00 +2025-08-27,Renovate,10856,False,2026-04-20T22:09:55.211157+00:00 +2025-08-27,pre-commit-ci,154,False,2026-04-20T22:09:59.673018+00:00 +2025-08-27,semantic-release-bot,639,False,2026-04-20T22:10:04.178647+00:00 +2025-08-27,allcontributors,26,False,2026-04-20T22:10:08.590291+00:00 +2025-08-27,github-actions,133356,False,2026-04-20T22:10:13.054322+00:00 +2025-08-28,Dependabot,12685,False,2026-04-20T22:10:17.461998+00:00 +2025-08-28,Renovate,7929,False,2026-04-20T22:10:21.908648+00:00 +2025-08-28,pre-commit-ci,86,False,2026-04-20T22:10:26.562443+00:00 +2025-08-28,semantic-release-bot,642,False,2026-04-20T22:10:31.205351+00:00 +2025-08-28,allcontributors,25,False,2026-04-20T22:10:35.646383+00:00 +2025-08-28,github-actions,134960,False,2026-04-20T22:10:40.104534+00:00 +2025-08-29,Dependabot,10294,False,2026-04-20T22:10:44.501754+00:00 +2025-08-29,Renovate,4979,False,2026-04-20T22:10:48.932672+00:00 +2025-08-29,pre-commit-ci,103,False,2026-04-20T22:10:53.378489+00:00 +2025-08-29,semantic-release-bot,859,False,2026-04-20T22:10:57.964632+00:00 +2025-08-29,allcontributors,10,False,2026-04-20T22:11:02.448971+00:00 +2025-08-29,github-actions,140399,False,2026-04-20T22:11:07.053986+00:00 +2025-08-30,Dependabot,5088,False,2026-04-20T22:11:11.499138+00:00 +2025-08-30,Renovate,3156,False,2026-04-20T22:11:15.920440+00:00 +2025-08-30,pre-commit-ci,47,False,2026-04-20T22:11:20.358340+00:00 +2025-08-30,semantic-release-bot,562,False,2026-04-20T22:11:24.752268+00:00 +2025-08-30,allcontributors,11,False,2026-04-20T22:11:29.275049+00:00 +2025-08-30,github-actions,140916,False,2026-04-20T22:11:33.704798+00:00 +2025-08-31,Dependabot,3972,False,2026-04-20T22:11:38.161498+00:00 +2025-08-31,Renovate,15602,False,2026-04-20T22:11:42.572191+00:00 +2025-08-31,pre-commit-ci,49,False,2026-04-20T22:11:46.972724+00:00 +2025-08-31,semantic-release-bot,410,False,2026-04-20T22:11:51.421048+00:00 +2025-08-31,allcontributors,16,False,2026-04-20T22:11:55.824229+00:00 +2025-08-31,github-actions,133441,False,2026-04-20T22:12:00.240584+00:00 +2025-09-01,Dependabot,23728,False,2026-04-20T22:12:04.689241+00:00 +2025-09-01,Renovate,8494,False,2026-04-20T22:12:09.212142+00:00 +2025-09-01,pre-commit-ci,1236,False,2026-04-20T22:12:13.679849+00:00 +2025-09-01,semantic-release-bot,662,False,2026-04-20T22:12:18.097452+00:00 +2025-09-01,allcontributors,4,False,2026-04-20T22:12:22.528514+00:00 +2025-09-01,github-actions,141238,False,2026-04-20T22:12:27.015262+00:00 +2025-09-02,Dependabot,21858,False,2026-04-20T22:12:31.540347+00:00 +2025-09-02,Renovate,10578,False,2026-04-20T22:12:36.251283+00:00 +2025-09-02,pre-commit-ci,642,False,2026-04-20T22:12:40.754137+00:00 +2025-09-02,semantic-release-bot,609,False,2026-04-20T22:12:45.210953+00:00 +2025-09-02,allcontributors,9,False,2026-04-20T22:12:49.597477+00:00 +2025-09-02,github-actions,137445,False,2026-04-20T22:12:53.995149+00:00 +2025-09-03,Dependabot,15710,False,2026-04-20T22:12:58.476972+00:00 +2025-09-03,Renovate,15353,False,2026-04-20T22:13:02.897232+00:00 +2025-09-03,pre-commit-ci,149,False,2026-04-20T22:13:07.449391+00:00 +2025-09-03,semantic-release-bot,664,False,2026-04-20T22:13:11.935794+00:00 +2025-09-03,allcontributors,21,False,2026-04-20T22:13:16.479996+00:00 +2025-09-03,github-actions,145884,False,2026-04-20T22:13:21.098235+00:00 +2025-09-04,Dependabot,23502,False,2026-04-20T22:13:25.544742+00:00 +2025-09-04,Renovate,18484,False,2026-04-20T22:13:29.979637+00:00 +2025-09-04,pre-commit-ci,127,False,2026-04-20T22:13:34.558106+00:00 +2025-09-04,semantic-release-bot,850,False,2026-04-20T22:13:38.988744+00:00 +2025-09-04,allcontributors,22,False,2026-04-20T22:13:43.400121+00:00 +2025-09-04,github-actions,149822,False,2026-04-20T22:13:47.939178+00:00 +2025-09-05,Dependabot,20401,False,2026-04-20T22:13:52.451720+00:00 +2025-09-05,Renovate,10820,False,2026-04-20T22:13:57.041928+00:00 +2025-09-05,pre-commit-ci,109,False,2026-04-20T22:14:01.499524+00:00 +2025-09-05,semantic-release-bot,652,False,2026-04-20T22:14:05.903980+00:00 +2025-09-05,allcontributors,18,False,2026-04-20T22:14:10.458866+00:00 +2025-09-05,github-actions,147594,False,2026-04-20T22:14:14.932025+00:00 +2025-09-06,Dependabot,4858,False,2026-04-20T22:14:19.402042+00:00 +2025-09-06,Renovate,13343,False,2026-04-20T22:14:23.854922+00:00 +2025-09-06,pre-commit-ci,110,False,2026-04-20T22:14:28.224592+00:00 +2025-09-06,semantic-release-bot,435,False,2026-04-20T22:14:32.729774+00:00 +2025-09-06,allcontributors,27,False,2026-04-20T22:14:37.167538+00:00 +2025-09-06,github-actions,144220,False,2026-04-20T22:14:41.618412+00:00 +2025-09-07,Dependabot,7072,False,2026-04-20T22:14:46.211028+00:00 +2025-09-07,Renovate,15111,False,2026-04-20T22:14:50.642700+00:00 +2025-09-07,pre-commit-ci,55,False,2026-04-20T22:14:55.106233+00:00 +2025-09-07,semantic-release-bot,358,False,2026-04-20T22:14:59.559195+00:00 +2025-09-07,allcontributors,11,False,2026-04-20T22:15:04.027521+00:00 +2025-09-07,github-actions,152001,False,2026-04-20T22:15:08.456888+00:00 +2025-09-08,Dependabot,52014,False,2026-04-20T22:15:12.939208+00:00 +2025-09-08,Renovate,86206,False,2026-04-20T22:15:17.429549+00:00 +2025-09-08,pre-commit-ci,1056,False,2026-04-20T22:15:21.858565+00:00 +2025-09-08,semantic-release-bot,681,False,2026-04-20T22:15:26.301306+00:00 +2025-09-08,allcontributors,27,False,2026-04-20T22:15:30.843248+00:00 +2025-09-08,github-actions,147152,False,2026-04-20T22:15:35.327116+00:00 +2025-09-09,Dependabot,21917,False,2026-04-20T22:15:39.852365+00:00 +2025-09-09,Renovate,18495,False,2026-04-20T22:15:44.281824+00:00 +2025-09-09,pre-commit-ci,413,False,2026-04-20T22:15:48.761761+00:00 +2025-09-09,semantic-release-bot,616,False,2026-04-20T22:15:53.163303+00:00 +2025-09-09,allcontributors,70,False,2026-04-20T22:15:57.592624+00:00 +2025-09-09,github-actions,149751,False,2026-04-20T22:16:02.187143+00:00 +2025-09-10,Dependabot,17560,False,2026-04-20T22:16:06.681467+00:00 +2025-09-10,Renovate,16703,False,2026-04-20T22:16:11.200875+00:00 +2025-09-10,pre-commit-ci,168,False,2026-04-20T22:16:15.713521+00:00 +2025-09-10,semantic-release-bot,558,False,2026-04-20T22:16:20.205653+00:00 +2025-09-10,allcontributors,269,False,2026-04-20T22:16:24.638143+00:00 +2025-09-10,github-actions,146394,False,2026-04-20T22:16:29.124830+00:00 +2025-09-11,Dependabot,15267,False,2026-04-20T22:16:33.719084+00:00 +2025-09-11,Renovate,11991,False,2026-04-20T22:16:38.170455+00:00 +2025-09-11,pre-commit-ci,129,False,2026-04-20T22:16:42.585428+00:00 +2025-09-11,semantic-release-bot,644,False,2026-04-20T22:16:47.056184+00:00 +2025-09-11,allcontributors,66,False,2026-04-20T22:16:51.535974+00:00 +2025-09-11,github-actions,153293,False,2026-04-20T22:16:55.949975+00:00 +2025-09-12,Dependabot,13849,False,2026-04-20T22:17:00.421672+00:00 +2025-09-12,Renovate,5877,False,2026-04-20T22:17:04.918157+00:00 +2025-09-12,pre-commit-ci,116,False,2026-04-20T22:17:09.373803+00:00 +2025-09-12,semantic-release-bot,585,False,2026-04-20T22:17:13.802890+00:00 +2025-09-12,allcontributors,60,False,2026-04-20T22:17:18.229502+00:00 +2025-09-12,github-actions,150782,False,2026-04-20T22:17:22.666193+00:00 +2025-09-13,Dependabot,8991,False,2026-04-20T22:17:27.138532+00:00 +2025-09-13,Renovate,10274,False,2026-04-20T22:17:31.587547+00:00 +2025-09-13,pre-commit-ci,39,False,2026-04-20T22:17:36.000551+00:00 +2025-09-13,semantic-release-bot,459,False,2026-04-20T22:17:40.748393+00:00 +2025-09-13,allcontributors,9,False,2026-04-20T22:17:45.303141+00:00 +2025-09-13,github-actions,143400,False,2026-04-20T22:17:49.736805+00:00 +2025-09-14,Dependabot,5315,False,2026-04-20T22:17:54.242838+00:00 +2025-09-14,Renovate,14621,False,2026-04-20T22:17:58.697407+00:00 +2025-09-14,pre-commit-ci,38,False,2026-04-20T22:18:03.229441+00:00 +2025-09-14,semantic-release-bot,463,False,2026-04-20T22:18:07.721917+00:00 +2025-09-14,allcontributors,29,False,2026-04-20T22:18:12.166137+00:00 +2025-09-14,github-actions,147993,False,2026-04-20T22:18:16.632895+00:00 +2025-09-15,Dependabot,38827,False,2026-04-20T22:18:21.149657+00:00 +2025-09-15,Renovate,65514,False,2026-04-20T22:18:25.722291+00:00 +2025-09-15,pre-commit-ci,997,False,2026-04-20T22:18:30.188329+00:00 +2025-09-15,semantic-release-bot,796,False,2026-04-20T22:18:34.816066+00:00 +2025-09-15,allcontributors,30,False,2026-04-20T22:18:39.265801+00:00 +2025-09-15,github-actions,150128,False,2026-04-20T22:18:43.720024+00:00 +2025-09-16,Dependabot,16525,False,2026-04-20T22:18:48.201060+00:00 +2025-09-16,Renovate,16321,False,2026-04-20T22:18:52.727095+00:00 +2025-09-16,pre-commit-ci,412,False,2026-04-20T22:18:57.135676+00:00 +2025-09-16,semantic-release-bot,785,False,2026-04-20T22:19:01.574468+00:00 +2025-09-16,allcontributors,93,False,2026-04-20T22:19:06.169466+00:00 +2025-09-16,github-actions,142184,False,2026-04-20T22:19:10.730969+00:00 +2025-09-17,Dependabot,21341,False,2026-04-20T22:19:15.451529+00:00 +2025-09-17,Renovate,15223,False,2026-04-20T22:19:20.123712+00:00 +2025-09-17,pre-commit-ci,126,False,2026-04-20T22:19:24.576373+00:00 +2025-09-17,semantic-release-bot,709,False,2026-04-20T22:19:29.136835+00:00 +2025-09-17,allcontributors,23,False,2026-04-20T22:19:33.628684+00:00 +2025-09-17,github-actions,152624,False,2026-04-20T22:19:38.045318+00:00 +2025-09-18,Dependabot,13556,False,2026-04-20T22:19:42.653301+00:00 +2025-09-18,Renovate,14757,False,2026-04-20T22:19:47.110645+00:00 +2025-09-18,pre-commit-ci,104,False,2026-04-20T22:19:51.566491+00:00 +2025-09-18,semantic-release-bot,739,False,2026-04-20T22:19:56.116728+00:00 +2025-09-18,allcontributors,52,False,2026-04-20T22:20:00.609381+00:00 +2025-09-18,github-actions,144189,False,2026-04-20T22:20:05.060792+00:00 +2025-09-19,Dependabot,10754,False,2026-04-20T22:20:09.536638+00:00 +2025-09-19,Renovate,13982,False,2026-04-20T22:20:13.983794+00:00 +2025-09-19,pre-commit-ci,96,False,2026-04-20T22:20:18.491159+00:00 +2025-09-19,semantic-release-bot,609,False,2026-04-20T22:20:23.127949+00:00 +2025-09-19,allcontributors,28,False,2026-04-20T22:20:27.643018+00:00 +2025-09-19,github-actions,143155,False,2026-04-20T22:20:32.135394+00:00 +2025-09-20,Dependabot,3343,False,2026-04-20T22:20:36.703103+00:00 +2025-09-20,Renovate,11409,False,2026-04-20T22:20:41.195849+00:00 +2025-09-20,pre-commit-ci,72,False,2026-04-20T22:20:45.659346+00:00 +2025-09-20,semantic-release-bot,466,False,2026-04-20T22:20:50.195301+00:00 +2025-09-20,allcontributors,22,False,2026-04-20T22:20:54.759135+00:00 +2025-09-20,github-actions,142472,False,2026-04-20T22:20:59.251494+00:00 +2025-09-21,Dependabot,3327,False,2026-04-20T22:21:03.727270+00:00 +2025-09-21,Renovate,8429,False,2026-04-20T22:21:08.219631+00:00 +2025-09-21,pre-commit-ci,54,False,2026-04-20T22:21:12.718989+00:00 +2025-09-21,semantic-release-bot,626,False,2026-04-20T22:21:17.199461+00:00 +2025-09-21,allcontributors,6,False,2026-04-20T22:21:21.885241+00:00 +2025-09-21,github-actions,141640,False,2026-04-20T22:21:26.590004+00:00 +2025-09-22,Dependabot,34298,False,2026-04-20T22:21:31.255603+00:00 +2025-09-22,Renovate,53881,False,2026-04-20T22:21:35.754920+00:00 +2025-09-22,pre-commit-ci,1360,False,2026-04-20T22:21:40.166048+00:00 +2025-09-22,semantic-release-bot,707,False,2026-04-20T22:21:44.626373+00:00 +2025-09-22,allcontributors,43,False,2026-04-20T22:21:49.188086+00:00 +2025-09-22,github-actions,145511,False,2026-04-20T22:21:53.722776+00:00 +2025-09-23,Dependabot,13946,False,2026-04-20T22:21:58.242386+00:00 +2025-09-23,Renovate,12476,False,2026-04-20T22:22:02.748718+00:00 +2025-09-23,pre-commit-ci,491,False,2026-04-20T22:22:07.236618+00:00 +2025-09-23,semantic-release-bot,766,False,2026-04-20T22:22:11.738003+00:00 +2025-09-23,allcontributors,55,False,2026-04-20T22:22:16.272116+00:00 +2025-09-23,github-actions,142628,False,2026-04-20T22:22:20.764099+00:00 +2025-09-24,Dependabot,12407,False,2026-04-20T22:22:25.300200+00:00 +2025-09-24,Renovate,12192,False,2026-04-20T22:22:29.737218+00:00 +2025-09-24,pre-commit-ci,151,False,2026-04-20T22:22:34.282400+00:00 +2025-09-24,semantic-release-bot,656,False,2026-04-20T22:22:38.884003+00:00 +2025-09-24,allcontributors,38,False,2026-04-20T22:22:43.486270+00:00 +2025-09-24,github-actions,148573,False,2026-04-20T22:22:47.921766+00:00 +2025-09-25,Dependabot,10356,False,2026-04-20T22:22:52.406975+00:00 +2025-09-25,Renovate,13867,False,2026-04-20T22:22:57.109612+00:00 +2025-09-25,pre-commit-ci,154,False,2026-04-20T22:23:01.723886+00:00 +2025-09-25,semantic-release-bot,714,False,2026-04-20T22:23:06.295009+00:00 +2025-09-25,allcontributors,52,False,2026-04-20T22:23:10.832616+00:00 +2025-09-25,github-actions,141278,False,2026-04-20T22:23:15.362053+00:00 +2025-09-26,Dependabot,11799,False,2026-04-20T22:23:19.843714+00:00 +2025-09-26,Renovate,13496,False,2026-04-20T22:23:24.358250+00:00 +2025-09-26,pre-commit-ci,126,False,2026-04-20T22:23:28.855601+00:00 +2025-09-26,semantic-release-bot,483,False,2026-04-20T22:23:33.357499+00:00 +2025-09-26,allcontributors,26,False,2026-04-20T22:23:37.862814+00:00 +2025-09-26,github-actions,151834,False,2026-04-20T22:23:42.348157+00:00 +2025-09-27,Dependabot,5154,False,2026-04-20T22:23:46.874427+00:00 +2025-09-27,Renovate,10053,False,2026-04-20T22:23:51.336923+00:00 +2025-09-27,pre-commit-ci,62,False,2026-04-20T22:23:55.734444+00:00 +2025-09-27,semantic-release-bot,313,False,2026-04-20T22:24:00.196964+00:00 +2025-09-27,allcontributors,22,False,2026-04-20T22:24:04.634140+00:00 +2025-09-27,github-actions,150782,False,2026-04-20T22:24:09.036105+00:00 +2025-09-28,Dependabot,7004,False,2026-04-20T22:24:13.601935+00:00 +2025-09-28,Renovate,11865,False,2026-04-20T22:24:18.111332+00:00 +2025-09-28,pre-commit-ci,66,False,2026-04-20T22:24:23.532688+00:00 +2025-09-28,semantic-release-bot,430,False,2026-04-20T22:24:27.984789+00:00 +2025-09-28,allcontributors,22,False,2026-04-20T22:24:32.420804+00:00 +2025-09-28,github-actions,149104,False,2026-04-20T22:24:36.908925+00:00 +2025-09-29,Dependabot,28056,False,2026-04-20T22:24:41.397661+00:00 +2025-09-29,Renovate,63766,False,2026-04-20T22:24:45.890894+00:00 +2025-09-29,pre-commit-ci,944,False,2026-04-20T22:24:50.365797+00:00 +2025-09-29,semantic-release-bot,654,False,2026-04-20T22:24:55.277223+00:00 +2025-09-29,allcontributors,95,False,2026-04-20T22:24:59.746582+00:00 +2025-09-29,github-actions,144743,False,2026-04-20T22:25:04.297034+00:00 +2025-09-30,Dependabot,22906,False,2026-04-20T22:25:08.944109+00:00 +2025-09-30,Renovate,16810,False,2026-04-20T22:25:13.403513+00:00 +2025-09-30,pre-commit-ci,334,False,2026-04-20T22:25:17.840105+00:00 +2025-09-30,semantic-release-bot,689,False,2026-04-20T22:25:22.369482+00:00 +2025-09-30,allcontributors,34,False,2026-04-20T22:25:26.835244+00:00 +2025-09-30,github-actions,151238,False,2026-04-20T22:25:31.279092+00:00 +2025-10-01,Dependabot,33880,False,2026-04-20T22:25:35.714639+00:00 +2025-10-01,Renovate,15582,False,2026-04-20T22:25:40.119876+00:00 +2025-10-01,pre-commit-ci,124,False,2026-04-20T22:25:44.533401+00:00 +2025-10-01,semantic-release-bot,636,False,2026-04-20T22:25:48.950687+00:00 +2025-10-01,allcontributors,25,False,2026-04-20T22:25:53.381300+00:00 +2025-10-01,github-actions,151826,False,2026-04-20T22:25:57.885144+00:00 +2025-10-02,Dependabot,15761,False,2026-04-20T22:26:02.380792+00:00 +2025-10-02,Renovate,18609,False,2026-04-20T22:26:06.816689+00:00 +2025-10-02,pre-commit-ci,130,False,2026-04-20T22:26:11.372169+00:00 +2025-10-02,semantic-release-bot,603,False,2026-04-20T22:26:15.862069+00:00 +2025-10-02,allcontributors,44,False,2026-04-20T22:26:20.314529+00:00 +2025-10-02,github-actions,153889,False,2026-04-20T22:26:24.734098+00:00 +2025-10-03,Dependabot,11298,False,2026-04-20T22:26:29.240352+00:00 +2025-10-03,Renovate,12483,False,2026-04-20T22:26:33.664575+00:00 +2025-10-03,pre-commit-ci,74,False,2026-04-20T22:26:38.118829+00:00 +2025-10-03,semantic-release-bot,616,False,2026-04-20T22:26:42.633861+00:00 +2025-10-03,allcontributors,75,False,2026-04-20T22:26:47.092213+00:00 +2025-10-03,github-actions,154361,False,2026-04-20T22:26:51.555620+00:00 +2025-10-04,Dependabot,4958,False,2026-04-20T22:26:56.059655+00:00 +2025-10-04,Renovate,10684,False,2026-04-20T22:27:00.522634+00:00 +2025-10-04,pre-commit-ci,126,False,2026-04-20T22:27:05.001118+00:00 +2025-10-04,semantic-release-bot,431,False,2026-04-20T22:27:09.455062+00:00 +2025-10-04,allcontributors,29,False,2026-04-20T22:27:14.045008+00:00 +2025-10-04,github-actions,152726,False,2026-04-20T22:27:18.541863+00:00 +2025-10-05,Dependabot,4429,False,2026-04-20T22:27:22.980822+00:00 +2025-10-05,Renovate,7319,False,2026-04-20T22:27:27.432033+00:00 +2025-10-05,pre-commit-ci,49,False,2026-04-20T22:27:31.901780+00:00 +2025-10-05,semantic-release-bot,519,False,2026-04-20T22:27:36.319700+00:00 +2025-10-05,allcontributors,21,False,2026-04-20T22:27:40.732056+00:00 +2025-10-05,github-actions,148216,False,2026-04-20T22:27:45.271815+00:00 +2025-10-06,Dependabot,38555,False,2026-04-20T22:27:49.773094+00:00 +2025-10-06,Renovate,63187,False,2026-04-20T22:27:54.237153+00:00 +2025-10-06,pre-commit-ci,2020,False,2026-04-20T22:27:58.642430+00:00 +2025-10-06,semantic-release-bot,705,False,2026-04-20T22:28:03.055758+00:00 +2025-10-06,allcontributors,112,False,2026-04-20T22:28:07.573170+00:00 +2025-10-06,github-actions,156783,False,2026-04-20T22:28:12.022586+00:00 +2025-10-07,Dependabot,16412,False,2026-04-20T22:28:16.510292+00:00 +2025-10-07,Renovate,16601,False,2026-04-20T22:28:21.111489+00:00 +2025-10-07,pre-commit-ci,820,False,2026-04-20T22:28:25.542735+00:00 +2025-10-07,semantic-release-bot,728,False,2026-04-20T22:28:30.058136+00:00 +2025-10-07,allcontributors,34,False,2026-04-20T22:28:34.513441+00:00 +2025-10-07,github-actions,151408,False,2026-04-20T22:28:39.030373+00:00 +2025-10-08,Dependabot,15212,False,2026-04-20T22:28:43.574341+00:00 +2025-10-08,Renovate,15935,False,2026-04-20T22:28:48.050710+00:00 +2025-10-08,pre-commit-ci,246,False,2026-04-20T22:28:52.483432+00:00 +2025-10-08,semantic-release-bot,870,False,2026-04-20T22:28:57.084917+00:00 +2025-10-08,allcontributors,159,False,2026-04-20T22:29:01.575344+00:00 +2025-10-08,github-actions,151070,False,2026-04-20T22:29:06.093105+00:00 +2025-10-09,Dependabot,11113,False,2026-04-20T22:29:10.577266+00:00 +2025-10-09,Renovate,14546,False,2026-04-20T22:29:15.087049+00:00 +2025-10-09,pre-commit-ci,212,False,2026-04-20T22:29:19.544455+00:00 +2025-10-09,semantic-release-bot,649,False,2026-04-20T22:29:24.002087+00:00 +2025-10-09,allcontributors,57,False,2026-04-20T22:29:28.454901+00:00 +2025-10-09,github-actions,152902,False,2026-04-20T22:29:32.905523+00:00 +2025-10-10,Dependabot,12340,False,2026-04-20T22:29:37.453980+00:00 +2025-10-10,Renovate,13358,False,2026-04-20T22:29:41.901013+00:00 +2025-10-10,pre-commit-ci,90,False,2026-04-20T22:29:46.359881+00:00 +2025-10-10,semantic-release-bot,764,False,2026-04-20T22:29:50.813159+00:00 +2025-10-10,allcontributors,58,False,2026-04-20T22:29:55.196463+00:00 +2025-10-10,github-actions,149952,False,2026-04-20T22:29:59.635002+00:00 +2025-10-11,Dependabot,8925,False,2026-04-20T22:30:04.086612+00:00 +2025-10-11,Renovate,26138,False,2026-04-20T22:30:08.734503+00:00 +2025-10-11,pre-commit-ci,75,False,2026-04-20T22:30:13.158589+00:00 +2025-10-11,semantic-release-bot,609,False,2026-04-20T22:30:17.620852+00:00 +2025-10-11,allcontributors,13,False,2026-04-20T22:30:22.149759+00:00 +2025-10-11,github-actions,152272,False,2026-04-20T22:30:26.691777+00:00 +2025-10-12,Dependabot,4378,False,2026-04-20T22:30:31.157681+00:00 +2025-10-12,Renovate,8029,False,2026-04-20T22:30:35.619170+00:00 +2025-10-12,pre-commit-ci,53,False,2026-04-20T22:30:40.090484+00:00 +2025-10-12,semantic-release-bot,403,False,2026-04-20T22:30:44.546235+00:00 +2025-10-12,allcontributors,52,False,2026-04-20T22:30:48.979840+00:00 +2025-10-12,github-actions,150838,False,2026-04-20T22:30:53.471856+00:00 +2025-10-13,Dependabot,34875,False,2026-04-20T22:30:57.928977+00:00 +2025-10-13,Renovate,59299,False,2026-04-20T22:31:02.419902+00:00 +2025-10-13,pre-commit-ci,1198,False,2026-04-20T22:31:06.886451+00:00 +2025-10-13,semantic-release-bot,603,False,2026-04-20T22:31:11.416495+00:00 +2025-10-13,allcontributors,44,False,2026-04-20T22:31:15.861066+00:00 +2025-10-13,github-actions,151635,False,2026-04-20T22:31:20.424605+00:00 +2025-10-14,Dependabot,17007,False,2026-04-20T22:31:24.831012+00:00 +2025-10-14,Renovate,19276,False,2026-04-20T22:31:29.294919+00:00 +2025-10-14,pre-commit-ci,563,False,2026-04-20T22:31:33.734668+00:00 +2025-10-14,semantic-release-bot,961,False,2026-04-20T22:31:38.293157+00:00 +2025-10-14,allcontributors,19,False,2026-04-20T22:31:42.741715+00:00 +2025-10-14,github-actions,152077,False,2026-04-20T22:31:47.163851+00:00 +2025-10-15,Dependabot,11557,False,2026-04-20T22:31:51.675985+00:00 +2025-10-15,Renovate,16357,False,2026-04-20T22:31:56.098336+00:00 +2025-10-15,pre-commit-ci,162,False,2026-04-20T22:32:00.559822+00:00 +2025-10-15,semantic-release-bot,780,False,2026-04-20T22:32:04.976786+00:00 +2025-10-15,allcontributors,45,False,2026-04-20T22:32:09.434748+00:00 +2025-10-15,github-actions,193047,False,2026-04-20T22:32:13.970894+00:00 +2025-10-16,Dependabot,9697,False,2026-04-20T22:32:18.496370+00:00 +2025-10-16,Renovate,12247,False,2026-04-20T22:32:22.981459+00:00 +2025-10-16,pre-commit-ci,123,False,2026-04-20T22:32:27.591393+00:00 +2025-10-16,semantic-release-bot,721,False,2026-04-20T22:32:32.086276+00:00 +2025-10-16,allcontributors,35,False,2026-04-20T22:32:36.488302+00:00 +2025-10-16,github-actions,189285,False,2026-04-20T22:32:40.999890+00:00 +2025-10-17,Dependabot,11182,False,2026-04-20T22:32:45.547736+00:00 +2025-10-17,Renovate,12870,False,2026-04-20T22:32:50.017860+00:00 +2025-10-17,pre-commit-ci,228,False,2026-04-20T22:32:54.566765+00:00 +2025-10-17,semantic-release-bot,647,False,2026-04-20T22:32:58.971368+00:00 +2025-10-17,allcontributors,325,False,2026-04-20T22:33:03.408594+00:00 +2025-10-17,github-actions,153158,False,2026-04-20T22:33:07.889079+00:00 +2025-10-18,Dependabot,4574,False,2026-04-20T22:33:12.338852+00:00 +2025-10-18,Renovate,11992,False,2026-04-20T22:33:16.771911+00:00 +2025-10-18,pre-commit-ci,63,False,2026-04-20T22:33:21.255007+00:00 +2025-10-18,semantic-release-bot,523,False,2026-04-20T22:33:25.776073+00:00 +2025-10-18,allcontributors,318,False,2026-04-20T22:33:30.253148+00:00 +2025-10-18,github-actions,153511,False,2026-04-20T22:33:34.777379+00:00 +2025-10-19,Dependabot,3642,False,2026-04-20T22:33:39.596160+00:00 +2025-10-19,Renovate,7829,False,2026-04-20T22:33:44.024458+00:00 +2025-10-19,pre-commit-ci,40,False,2026-04-20T22:33:48.451799+00:00 +2025-10-19,semantic-release-bot,520,False,2026-04-20T22:33:52.853391+00:00 +2025-10-19,allcontributors,5,False,2026-04-20T22:33:57.287694+00:00 +2025-10-19,github-actions,152584,False,2026-04-20T22:34:01.724315+00:00 +2025-10-20,Dependabot,38238,False,2026-04-20T22:34:06.204707+00:00 +2025-10-20,Renovate,65414,False,2026-04-20T22:34:10.708061+00:00 +2025-10-20,pre-commit-ci,787,False,2026-04-20T22:34:15.166001+00:00 +2025-10-20,semantic-release-bot,880,False,2026-04-20T22:34:19.635773+00:00 +2025-10-20,allcontributors,61,False,2026-04-20T22:34:24.065124+00:00 +2025-10-20,github-actions,155142,False,2026-04-20T22:34:28.550791+00:00 +2025-10-21,Dependabot,20906,False,2026-04-20T22:34:32.988671+00:00 +2025-10-21,Renovate,13548,False,2026-04-20T22:34:37.541083+00:00 +2025-10-21,pre-commit-ci,406,False,2026-04-20T22:34:41.995098+00:00 +2025-10-21,semantic-release-bot,1114,False,2026-04-20T22:34:46.655860+00:00 +2025-10-21,allcontributors,156,False,2026-04-20T22:34:51.159953+00:00 +2025-10-21,github-actions,155300,True,2026-04-20T22:34:55.699445+00:00 +2025-10-22,Dependabot,11270,False,2026-04-20T22:35:00.159884+00:00 +2025-10-22,Renovate,13286,False,2026-04-20T22:35:04.680802+00:00 +2025-10-22,pre-commit-ci,112,False,2026-04-20T22:35:09.079401+00:00 +2025-10-22,semantic-release-bot,669,False,2026-04-20T22:35:13.688144+00:00 +2025-10-22,allcontributors,78,False,2026-04-20T22:35:18.179118+00:00 +2025-10-22,github-actions,156384,False,2026-04-20T22:35:22.627296+00:00 +2025-10-23,Dependabot,11507,False,2026-04-20T22:35:27.108351+00:00 +2025-10-23,Renovate,19582,False,2026-04-20T22:35:31.525738+00:00 +2025-10-23,pre-commit-ci,109,False,2026-04-20T22:35:35.992882+00:00 +2025-10-23,semantic-release-bot,754,False,2026-04-20T22:35:40.451948+00:00 +2025-10-23,allcontributors,40,False,2026-04-20T22:35:44.871112+00:00 +2025-10-23,github-actions,159843,False,2026-04-20T22:35:49.289956+00:00 +2025-10-24,Dependabot,12168,False,2026-04-20T22:35:53.760059+00:00 +2025-10-24,Renovate,13376,False,2026-04-20T22:35:58.232720+00:00 +2025-10-24,pre-commit-ci,94,False,2026-04-20T22:36:02.640962+00:00 +2025-10-24,semantic-release-bot,646,False,2026-04-20T22:36:07.080881+00:00 +2025-10-24,allcontributors,38,False,2026-04-20T22:36:11.559966+00:00 +2025-10-24,github-actions,156057,False,2026-04-20T22:36:16.028284+00:00 +2025-10-25,Dependabot,5876,False,2026-04-20T22:36:20.565370+00:00 +2025-10-25,Renovate,12167,False,2026-04-20T22:36:25.020629+00:00 +2025-10-25,pre-commit-ci,54,False,2026-04-20T22:36:29.419299+00:00 +2025-10-25,semantic-release-bot,412,False,2026-04-20T22:36:33.869343+00:00 +2025-10-25,allcontributors,20,False,2026-04-20T22:36:38.325634+00:00 +2025-10-25,github-actions,154900,False,2026-04-20T22:36:42.777408+00:00 +2025-10-26,Dependabot,4030,False,2026-04-20T22:36:47.266398+00:00 +2025-10-26,Renovate,8952,False,2026-04-20T22:36:51.795516+00:00 +2025-10-26,pre-commit-ci,56,False,2026-04-20T22:36:56.217673+00:00 +2025-10-26,semantic-release-bot,593,False,2026-04-20T22:37:00.645560+00:00 +2025-10-26,allcontributors,14,False,2026-04-20T22:37:05.066583+00:00 +2025-10-26,github-actions,154339,False,2026-04-20T22:37:09.470757+00:00 +2025-10-27,Dependabot,47609,False,2026-04-20T22:37:13.975126+00:00 +2025-10-27,Renovate,56066,False,2026-04-20T22:37:18.513871+00:00 +2025-10-27,pre-commit-ci,920,False,2026-04-20T22:37:22.980836+00:00 +2025-10-27,semantic-release-bot,700,False,2026-04-20T22:37:27.552536+00:00 +2025-10-27,allcontributors,83,False,2026-04-20T22:37:31.989591+00:00 +2025-10-27,github-actions,157409,False,2026-04-20T22:37:36.553118+00:00 +2025-10-28,Dependabot,15769,False,2026-04-20T22:37:41.042878+00:00 +2025-10-28,Renovate,13324,False,2026-04-20T22:37:45.513158+00:00 +2025-10-28,pre-commit-ci,325,False,2026-04-20T22:37:49.928875+00:00 +2025-10-28,semantic-release-bot,712,False,2026-04-20T22:37:54.380043+00:00 +2025-10-28,allcontributors,189,False,2026-04-20T22:37:58.871188+00:00 +2025-10-28,github-actions,155705,False,2026-04-20T22:38:03.312128+00:00 +2025-10-29,Dependabot,12679,False,2026-04-20T22:38:07.738738+00:00 +2025-10-29,Renovate,12602,False,2026-04-20T22:38:12.202675+00:00 +2025-10-29,pre-commit-ci,115,False,2026-04-20T22:38:16.594618+00:00 +2025-10-29,semantic-release-bot,647,False,2026-04-20T22:38:21.026577+00:00 +2025-10-29,allcontributors,54,False,2026-04-20T22:38:25.385931+00:00 +2025-10-29,github-actions,154503,False,2026-04-20T22:38:29.837691+00:00 +2025-10-30,Dependabot,9590,False,2026-04-20T22:38:34.308688+00:00 +2025-10-30,Renovate,35839,False,2026-04-20T22:38:38.728704+00:00 +2025-10-30,pre-commit-ci,96,False,2026-04-20T22:38:43.123496+00:00 +2025-10-30,semantic-release-bot,833,False,2026-04-20T22:38:47.708876+00:00 +2025-10-30,allcontributors,25,False,2026-04-20T22:38:52.151390+00:00 +2025-10-30,github-actions,157783,False,2026-04-20T22:38:56.611587+00:00 +2025-10-31,Dependabot,11809,False,2026-04-20T22:39:01.098681+00:00 +2025-10-31,Renovate,14608,False,2026-04-20T22:39:05.534451+00:00 +2025-10-31,pre-commit-ci,73,False,2026-04-20T22:39:10.059749+00:00 +2025-10-31,semantic-release-bot,723,False,2026-04-20T22:39:14.519601+00:00 +2025-10-31,allcontributors,27,False,2026-04-20T22:39:18.990801+00:00 +2025-10-31,github-actions,156640,False,2026-04-20T22:39:23.495311+00:00 +2025-11-01,Dependabot,18182,False,2026-04-20T22:39:27.928046+00:00 +2025-11-01,Renovate,13795,False,2026-04-20T22:39:32.355917+00:00 +2025-11-01,pre-commit-ci,37,False,2026-04-20T22:39:36.861467+00:00 +2025-11-01,semantic-release-bot,517,False,2026-04-20T22:39:41.281776+00:00 +2025-11-01,allcontributors,12,False,2026-04-20T22:39:45.697093+00:00 +2025-11-01,github-actions,160982,False,2026-04-20T22:39:50.111526+00:00 +2025-11-02,Dependabot,6286,False,2026-04-20T22:39:54.530160+00:00 +2025-11-02,Renovate,9477,False,2026-04-20T22:39:58.984544+00:00 +2025-11-02,pre-commit-ci,69,False,2026-04-20T22:40:03.423842+00:00 +2025-11-02,semantic-release-bot,680,False,2026-04-20T22:40:07.834686+00:00 +2025-11-02,allcontributors,21,False,2026-04-20T22:40:12.280528+00:00 +2025-11-02,github-actions,158098,False,2026-04-20T22:40:16.801599+00:00 +2025-11-03,Dependabot,32833,False,2026-04-20T22:40:21.260956+00:00 +2025-11-03,Renovate,53139,False,2026-04-20T22:40:25.892939+00:00 +2025-11-03,pre-commit-ci,1391,False,2026-04-20T22:40:30.343396+00:00 +2025-11-03,semantic-release-bot,988,False,2026-04-20T22:40:34.823659+00:00 +2025-11-03,allcontributors,77,False,2026-04-20T22:40:39.267803+00:00 +2025-11-03,github-actions,157825,False,2026-04-20T22:40:43.677083+00:00 +2025-11-04,Dependabot,13856,False,2026-04-20T22:40:48.148362+00:00 +2025-11-04,Renovate,34104,False,2026-04-20T22:40:52.584153+00:00 +2025-11-04,pre-commit-ci,493,False,2026-04-20T22:40:57.143660+00:00 +2025-11-04,semantic-release-bot,926,False,2026-04-20T22:41:01.796137+00:00 +2025-11-04,allcontributors,36,False,2026-04-20T22:41:06.229867+00:00 +2025-11-04,github-actions,208227,False,2026-04-20T22:41:10.657812+00:00 +2025-11-05,Dependabot,11272,False,2026-04-20T22:41:15.089772+00:00 +2025-11-05,Renovate,13041,True,2026-04-20T22:41:19.671393+00:00 +2025-11-05,pre-commit-ci,179,False,2026-04-20T22:41:24.107171+00:00 +2025-11-05,semantic-release-bot,718,False,2026-04-20T22:41:28.579519+00:00 +2025-11-05,allcontributors,48,False,2026-04-20T22:41:33.033792+00:00 +2025-11-05,github-actions,206825,False,2026-04-20T22:41:37.507191+00:00 +2025-11-06,Dependabot,13591,False,2026-04-20T22:41:41.925009+00:00 +2025-11-06,Renovate,40782,False,2026-04-20T22:41:46.605268+00:00 +2025-11-06,pre-commit-ci,161,False,2026-04-20T22:41:51.044839+00:00 +2025-11-06,semantic-release-bot,669,False,2026-04-20T22:41:55.473512+00:00 +2025-11-06,allcontributors,41,False,2026-04-20T22:41:59.955934+00:00 +2025-11-06,github-actions,156031,False,2026-04-20T22:42:04.450603+00:00 +2025-11-07,Dependabot,11392,False,2026-04-20T22:42:08.878342+00:00 +2025-11-07,Renovate,14967,False,2026-04-20T22:42:13.329698+00:00 +2025-11-07,pre-commit-ci,71,False,2026-04-20T22:42:17.780105+00:00 +2025-11-07,semantic-release-bot,789,False,2026-04-20T22:42:22.211158+00:00 +2025-11-07,allcontributors,84,False,2026-04-20T22:42:26.747073+00:00 +2025-11-07,github-actions,161730,False,2026-04-20T22:42:31.233725+00:00 +2025-11-08,Dependabot,4582,False,2026-04-20T22:42:35.648240+00:00 +2025-11-08,Renovate,10615,False,2026-04-20T22:42:40.069837+00:00 +2025-11-08,pre-commit-ci,49,False,2026-04-20T22:42:44.541641+00:00 +2025-11-08,semantic-release-bot,506,False,2026-04-20T22:42:49.104150+00:00 +2025-11-08,allcontributors,13,False,2026-04-20T22:42:53.522179+00:00 +2025-11-08,github-actions,163342,False,2026-04-20T22:42:57.968781+00:00 +2025-11-09,Dependabot,5586,False,2026-04-20T22:43:02.394668+00:00 +2025-11-09,Renovate,7805,False,2026-04-20T22:43:06.815655+00:00 +2025-11-09,pre-commit-ci,60,False,2026-04-20T22:43:11.209495+00:00 +2025-11-09,semantic-release-bot,448,False,2026-04-20T22:43:15.608730+00:00 +2025-11-09,allcontributors,30,False,2026-04-20T22:43:20.018859+00:00 +2025-11-09,github-actions,162503,False,2026-04-20T22:43:24.500040+00:00 +2025-11-10,Dependabot,32147,False,2026-04-20T22:43:28.968808+00:00 +2025-11-10,Renovate,48605,False,2026-04-20T22:43:33.417704+00:00 +2025-11-10,pre-commit-ci,1269,False,2026-04-20T22:43:37.827582+00:00 +2025-11-10,semantic-release-bot,718,False,2026-04-20T22:43:42.215912+00:00 +2025-11-10,allcontributors,113,False,2026-04-20T22:43:46.652462+00:00 +2025-11-10,github-actions,162488,False,2026-04-20T22:43:51.132643+00:00 +2025-11-11,Dependabot,13860,False,2026-04-20T22:43:55.580898+00:00 +2025-11-11,Renovate,19843,False,2026-04-20T22:44:00.188195+00:00 +2025-11-11,pre-commit-ci,466,False,2026-04-20T22:44:04.621539+00:00 +2025-11-11,semantic-release-bot,652,False,2026-04-20T22:44:09.143996+00:00 +2025-11-11,allcontributors,28,False,2026-04-20T22:44:13.593257+00:00 +2025-11-11,github-actions,162260,False,2026-04-20T22:44:18.021178+00:00 +2025-11-12,Dependabot,13046,False,2026-04-20T22:44:22.453622+00:00 +2025-11-12,Renovate,14171,False,2026-04-20T22:44:27.001124+00:00 +2025-11-12,pre-commit-ci,241,False,2026-04-20T22:44:31.422974+00:00 +2025-11-12,semantic-release-bot,721,False,2026-04-20T22:44:35.825062+00:00 +2025-11-12,allcontributors,82,False,2026-04-20T22:44:40.268347+00:00 +2025-11-12,github-actions,161459,False,2026-04-20T22:44:44.780410+00:00 +2025-11-13,Dependabot,10734,False,2026-04-20T22:44:49.284642+00:00 +2025-11-13,Renovate,10381,False,2026-04-20T22:44:54.141730+00:00 +2025-11-13,pre-commit-ci,128,False,2026-04-20T22:44:58.660053+00:00 +2025-11-13,semantic-release-bot,710,False,2026-04-20T22:45:03.160113+00:00 +2025-11-13,allcontributors,13,False,2026-04-20T22:45:07.837571+00:00 +2025-11-13,github-actions,161021,False,2026-04-20T22:45:12.285220+00:00 +2025-11-14,Dependabot,10575,False,2026-04-20T22:45:16.745248+00:00 +2025-11-14,Renovate,22771,False,2026-04-20T22:45:21.215904+00:00 +2025-11-14,pre-commit-ci,164,False,2026-04-20T22:45:25.622752+00:00 +2025-11-14,semantic-release-bot,847,False,2026-04-20T22:45:30.110122+00:00 +2025-11-14,allcontributors,25,False,2026-04-20T22:45:34.531445+00:00 +2025-11-14,github-actions,162104,False,2026-04-20T22:45:38.957630+00:00 +2025-11-15,Dependabot,10658,False,2026-04-20T22:45:43.420078+00:00 +2025-11-15,Renovate,10215,False,2026-04-20T22:45:47.863192+00:00 +2025-11-15,pre-commit-ci,101,False,2026-04-20T22:45:52.271788+00:00 +2025-11-15,semantic-release-bot,565,False,2026-04-20T22:45:56.693607+00:00 +2025-11-15,allcontributors,23,False,2026-04-20T22:46:01.174876+00:00 +2025-11-15,github-actions,164680,False,2026-04-20T22:46:05.622012+00:00 +2025-11-16,Dependabot,7268,False,2026-04-20T22:46:10.040212+00:00 +2025-11-16,Renovate,6954,False,2026-04-20T22:46:14.466052+00:00 +2025-11-16,pre-commit-ci,47,False,2026-04-20T22:46:18.903153+00:00 +2025-11-16,semantic-release-bot,601,False,2026-04-20T22:46:23.323621+00:00 +2025-11-16,allcontributors,25,False,2026-04-20T22:46:27.743315+00:00 +2025-11-16,github-actions,167487,False,2026-04-20T22:46:32.229585+00:00 +2025-11-17,Dependabot,23768,False,2026-04-20T22:46:36.651726+00:00 +2025-11-17,Renovate,40964,False,2026-04-20T22:46:41.209482+00:00 +2025-11-17,pre-commit-ci,1094,False,2026-04-20T22:46:45.720348+00:00 +2025-11-17,semantic-release-bot,783,False,2026-04-20T22:46:50.146011+00:00 +2025-11-17,allcontributors,15,False,2026-04-20T22:46:54.578821+00:00 +2025-11-17,github-actions,165137,False,2026-04-20T22:46:58.983521+00:00 +2025-11-18,Dependabot,39744,False,2026-04-20T22:47:03.506430+00:00 +2025-11-18,Renovate,25510,False,2026-04-20T22:47:08.222366+00:00 +2025-11-18,pre-commit-ci,416,False,2026-04-20T22:47:12.679444+00:00 +2025-11-18,semantic-release-bot,800,False,2026-04-20T22:47:17.135753+00:00 +2025-11-18,allcontributors,32,False,2026-04-20T22:47:21.585489+00:00 +2025-11-18,github-actions,164474,False,2026-04-20T22:47:26.033386+00:00 +2025-11-19,Dependabot,16861,False,2026-04-20T22:47:30.461546+00:00 +2025-11-19,Renovate,21405,False,2026-04-20T22:47:35.074398+00:00 +2025-11-19,pre-commit-ci,114,False,2026-04-20T22:47:39.532393+00:00 +2025-11-19,semantic-release-bot,833,False,2026-04-20T22:47:44.043441+00:00 +2025-11-19,allcontributors,31,False,2026-04-20T22:47:48.586317+00:00 +2025-11-19,github-actions,169405,False,2026-04-20T22:47:53.046383+00:00 +2025-11-20,Dependabot,25088,False,2026-04-20T22:47:57.525165+00:00 +2025-11-20,Renovate,40531,False,2026-04-20T22:48:01.967280+00:00 +2025-11-20,pre-commit-ci,158,False,2026-04-20T22:48:06.411767+00:00 +2025-11-20,semantic-release-bot,746,False,2026-04-20T22:48:10.907202+00:00 +2025-11-20,allcontributors,21,False,2026-04-20T22:48:15.335746+00:00 +2025-11-20,github-actions,169253,False,2026-04-20T22:48:19.782120+00:00 +2025-11-21,Dependabot,23280,False,2026-04-20T22:48:24.260062+00:00 +2025-11-21,Renovate,20568,False,2026-04-20T22:48:28.829914+00:00 +2025-11-21,pre-commit-ci,61,False,2026-04-20T22:48:33.299001+00:00 +2025-11-21,semantic-release-bot,829,False,2026-04-20T22:48:37.726522+00:00 +2025-11-21,allcontributors,7,False,2026-04-20T22:48:42.221760+00:00 +2025-11-21,github-actions,170339,False,2026-04-20T22:48:46.672033+00:00 +2025-11-22,Dependabot,7442,False,2026-04-20T22:48:51.089181+00:00 +2025-11-22,Renovate,11386,False,2026-04-20T22:48:55.481580+00:00 +2025-11-22,pre-commit-ci,50,False,2026-04-20T22:48:59.880251+00:00 +2025-11-22,semantic-release-bot,571,False,2026-04-20T22:49:04.250143+00:00 +2025-11-22,allcontributors,9,False,2026-04-20T22:49:08.662562+00:00 +2025-11-22,github-actions,171150,False,2026-04-20T22:49:13.121410+00:00 +2025-11-23,Dependabot,5289,False,2026-04-20T22:49:17.673288+00:00 +2025-11-23,Renovate,8828,False,2026-04-20T22:49:22.138870+00:00 +2025-11-23,pre-commit-ci,58,False,2026-04-20T22:49:26.614027+00:00 +2025-11-23,semantic-release-bot,502,False,2026-04-20T22:49:31.012900+00:00 +2025-11-23,allcontributors,12,False,2026-04-20T22:49:35.550451+00:00 +2025-11-23,github-actions,170917,False,2026-04-20T22:49:39.991968+00:00 +2025-11-24,Dependabot,56659,False,2026-04-20T22:49:44.416791+00:00 +2025-11-24,Renovate,40464,False,2026-04-20T22:49:48.905854+00:00 +2025-11-24,pre-commit-ci,1225,False,2026-04-20T22:49:53.364583+00:00 +2025-11-24,semantic-release-bot,803,False,2026-04-20T22:49:57.888992+00:00 +2025-11-24,allcontributors,71,False,2026-04-20T22:50:02.291111+00:00 +2025-11-24,github-actions,172313,False,2026-04-20T22:50:06.826566+00:00 +2025-11-25,Dependabot,18687,False,2026-04-20T22:50:11.374799+00:00 +2025-11-25,Renovate,13104,False,2026-04-20T22:50:15.848258+00:00 +2025-11-25,pre-commit-ci,451,False,2026-04-20T22:50:20.342877+00:00 +2025-11-25,semantic-release-bot,770,False,2026-04-20T22:50:24.716272+00:00 +2025-11-25,allcontributors,37,False,2026-04-20T22:50:29.109857+00:00 +2025-11-25,github-actions,165412,False,2026-04-20T22:50:33.522817+00:00 +2025-11-26,Dependabot,14841,False,2026-04-20T22:50:38.060539+00:00 +2025-11-26,Renovate,11890,False,2026-04-20T22:50:42.571254+00:00 +2025-11-26,pre-commit-ci,165,False,2026-04-20T22:50:46.974287+00:00 +2025-11-26,semantic-release-bot,795,False,2026-04-20T22:50:51.419205+00:00 +2025-11-26,allcontributors,15,False,2026-04-20T22:50:55.838824+00:00 +2025-11-26,github-actions,168723,False,2026-04-20T22:51:00.280215+00:00 +2025-11-27,Dependabot,15574,False,2026-04-20T22:51:04.675215+00:00 +2025-11-27,Renovate,13641,False,2026-04-20T22:51:09.188911+00:00 +2025-11-27,pre-commit-ci,89,False,2026-04-20T22:51:13.629306+00:00 +2025-11-27,semantic-release-bot,832,False,2026-04-20T22:51:18.099054+00:00 +2025-11-27,allcontributors,47,False,2026-04-20T22:51:22.530708+00:00 +2025-11-27,github-actions,169833,False,2026-04-20T22:51:26.913056+00:00 +2025-11-28,Dependabot,10185,False,2026-04-20T22:51:31.316346+00:00 +2025-11-28,Renovate,10697,False,2026-04-20T22:51:35.814357+00:00 +2025-11-28,pre-commit-ci,82,False,2026-04-20T22:51:40.264707+00:00 +2025-11-28,semantic-release-bot,793,False,2026-04-20T22:51:44.724251+00:00 +2025-11-28,allcontributors,16,False,2026-04-20T22:51:49.110201+00:00 +2025-11-28,github-actions,169510,False,2026-04-20T22:51:53.632224+00:00 +2025-11-29,Dependabot,5144,False,2026-04-20T22:51:58.041769+00:00 +2025-11-29,Renovate,12451,False,2026-04-20T22:52:02.479365+00:00 +2025-11-29,pre-commit-ci,61,False,2026-04-20T22:52:06.918811+00:00 +2025-11-29,semantic-release-bot,552,False,2026-04-20T22:52:11.364234+00:00 +2025-11-29,allcontributors,7,False,2026-04-20T22:52:15.851970+00:00 +2025-11-29,github-actions,167049,False,2026-04-20T22:52:20.277167+00:00 +2025-11-30,Dependabot,4489,False,2026-04-20T22:52:24.722227+00:00 +2025-11-30,Renovate,8688,False,2026-04-20T22:52:29.145243+00:00 +2025-11-30,pre-commit-ci,54,False,2026-04-20T22:52:33.654962+00:00 +2025-11-30,semantic-release-bot,544,False,2026-04-20T22:52:38.086385+00:00 +2025-11-30,allcontributors,17,False,2026-04-20T22:52:42.506968+00:00 +2025-11-30,github-actions,166569,False,2026-04-20T22:52:47.026518+00:00 +2025-12-01,Dependabot,50562,False,2026-04-20T22:52:51.566724+00:00 +2025-12-01,Renovate,32946,False,2026-04-20T22:52:56.096627+00:00 +2025-12-01,pre-commit-ci,1651,False,2026-04-20T22:53:00.693340+00:00 +2025-12-01,semantic-release-bot,826,False,2026-04-20T22:53:05.186891+00:00 +2025-12-01,allcontributors,28,False,2026-04-20T22:53:09.600313+00:00 +2025-12-01,github-actions,168287,False,2026-04-20T22:53:14.003281+00:00 +2025-12-02,Dependabot,36306,False,2026-04-20T22:53:18.448802+00:00 +2025-12-02,Renovate,17583,False,2026-04-20T22:53:22.883044+00:00 +2025-12-02,pre-commit-ci,519,False,2026-04-20T22:53:27.299899+00:00 +2025-12-02,semantic-release-bot,868,False,2026-04-20T22:53:31.701297+00:00 +2025-12-02,allcontributors,39,False,2026-04-20T22:53:36.240179+00:00 +2025-12-02,github-actions,167402,False,2026-04-20T22:53:40.683182+00:00 +2025-12-03,Dependabot,18701,False,2026-04-20T22:53:45.114149+00:00 +2025-12-03,Renovate,22937,False,2026-04-20T22:53:49.667685+00:00 +2025-12-03,pre-commit-ci,192,False,2026-04-20T22:53:54.081442+00:00 +2025-12-03,semantic-release-bot,851,False,2026-04-20T22:53:58.491734+00:00 +2025-12-03,allcontributors,67,False,2026-04-20T22:54:02.932873+00:00 +2025-12-03,github-actions,168096,False,2026-04-20T22:54:07.420640+00:00 +2025-12-04,Dependabot,18965,False,2026-04-20T22:54:11.825413+00:00 +2025-12-04,Renovate,23475,False,2026-04-20T22:54:16.279952+00:00 +2025-12-04,pre-commit-ci,121,False,2026-04-20T22:54:20.672186+00:00 +2025-12-04,semantic-release-bot,845,False,2026-04-20T22:54:25.099179+00:00 +2025-12-04,allcontributors,14,False,2026-04-20T22:54:29.537535+00:00 +2025-12-04,github-actions,169879,False,2026-04-20T22:54:33.953201+00:00 +2025-12-05,Dependabot,12062,False,2026-04-20T22:54:38.449535+00:00 +2025-12-05,Renovate,11125,False,2026-04-20T22:54:42.882632+00:00 +2025-12-05,pre-commit-ci,86,False,2026-04-20T22:54:47.330681+00:00 +2025-12-05,semantic-release-bot,782,False,2026-04-20T22:54:51.707954+00:00 +2025-12-05,allcontributors,82,False,2026-04-20T22:54:56.128615+00:00 +2025-12-05,github-actions,170035,False,2026-04-20T22:55:00.495230+00:00 +2025-12-06,Dependabot,9963,False,2026-04-20T22:55:04.938258+00:00 +2025-12-06,Renovate,11640,False,2026-04-20T22:55:09.361206+00:00 +2025-12-06,pre-commit-ci,120,False,2026-04-20T22:55:13.766597+00:00 +2025-12-06,semantic-release-bot,564,False,2026-04-20T22:55:18.241160+00:00 +2025-12-06,allcontributors,8,False,2026-04-20T22:55:22.655583+00:00 +2025-12-06,github-actions,173614,False,2026-04-20T22:55:27.118911+00:00 +2025-12-07,Dependabot,5975,False,2026-04-20T22:55:31.619203+00:00 +2025-12-07,Renovate,8216,False,2026-04-20T22:55:36.258675+00:00 +2025-12-07,pre-commit-ci,67,False,2026-04-20T22:55:40.674242+00:00 +2025-12-07,semantic-release-bot,452,False,2026-04-20T22:55:45.086236+00:00 +2025-12-07,allcontributors,131,False,2026-04-20T22:55:49.474444+00:00 +2025-12-07,github-actions,174560,False,2026-04-20T22:55:53.872152+00:00 +2025-12-08,Dependabot,37796,False,2026-04-20T22:55:58.382082+00:00 +2025-12-08,Renovate,59010,False,2026-04-20T22:56:02.876300+00:00 +2025-12-08,pre-commit-ci,1257,False,2026-04-20T22:56:07.330897+00:00 +2025-12-08,semantic-release-bot,857,False,2026-04-20T22:56:11.854395+00:00 +2025-12-08,allcontributors,12,False,2026-04-20T22:56:16.271648+00:00 +2025-12-08,github-actions,173515,False,2026-04-20T22:56:20.818173+00:00 +2025-12-09,Dependabot,20315,False,2026-04-20T22:56:25.509086+00:00 +2025-12-09,Renovate,19635,False,2026-04-20T22:56:29.929217+00:00 +2025-12-09,pre-commit-ci,388,False,2026-04-20T22:56:34.332236+00:00 +2025-12-09,semantic-release-bot,772,False,2026-04-20T22:56:38.820650+00:00 +2025-12-09,allcontributors,23,False,2026-04-20T22:56:43.183939+00:00 +2025-12-09,github-actions,173832,False,2026-04-20T22:56:47.734692+00:00 +2025-12-10,Dependabot,13566,False,2026-04-20T22:56:52.251333+00:00 +2025-12-10,Renovate,17601,False,2026-04-20T22:56:56.701161+00:00 +2025-12-10,pre-commit-ci,171,False,2026-04-20T22:57:01.066933+00:00 +2025-12-10,semantic-release-bot,743,False,2026-04-20T22:57:05.489190+00:00 +2025-12-10,allcontributors,30,False,2026-04-20T22:57:09.933309+00:00 +2025-12-10,github-actions,169324,False,2026-04-20T22:57:14.371919+00:00 +2025-12-11,Dependabot,11966,False,2026-04-20T22:57:18.817771+00:00 +2025-12-11,Renovate,13046,False,2026-04-20T22:57:23.240974+00:00 +2025-12-11,pre-commit-ci,106,False,2026-04-20T22:57:27.640698+00:00 +2025-12-11,semantic-release-bot,812,False,2026-04-20T22:57:32.078482+00:00 +2025-12-11,allcontributors,12,False,2026-04-20T22:57:36.488595+00:00 +2025-12-11,github-actions,170565,False,2026-04-20T22:57:40.998185+00:00 +2025-12-12,Dependabot,19693,False,2026-04-20T22:57:45.464906+00:00 +2025-12-12,Renovate,28980,False,2026-04-20T22:57:49.851481+00:00 +2025-12-12,pre-commit-ci,118,False,2026-04-20T22:57:54.290327+00:00 +2025-12-12,semantic-release-bot,752,False,2026-04-20T22:57:58.679552+00:00 +2025-12-12,allcontributors,62,False,2026-04-20T22:58:03.111628+00:00 +2025-12-12,github-actions,171783,False,2026-04-20T22:58:07.471734+00:00 +2025-12-13,Dependabot,7448,False,2026-04-20T22:58:11.889174+00:00 +2025-12-13,Renovate,21463,False,2026-04-20T22:58:16.390355+00:00 +2025-12-13,pre-commit-ci,70,False,2026-04-20T22:58:20.881788+00:00 +2025-12-13,semantic-release-bot,405,False,2026-04-20T22:58:25.268952+00:00 +2025-12-13,allcontributors,7,False,2026-04-20T22:58:29.657909+00:00 +2025-12-13,github-actions,177348,False,2026-04-20T22:58:34.224666+00:00 +2025-12-14,Dependabot,5607,False,2026-04-20T22:58:38.681963+00:00 +2025-12-14,Renovate,10188,False,2026-04-20T22:58:43.120056+00:00 +2025-12-14,pre-commit-ci,96,False,2026-04-20T22:58:47.746067+00:00 +2025-12-14,semantic-release-bot,398,False,2026-04-20T22:58:52.145953+00:00 +2025-12-14,allcontributors,10,False,2026-04-20T22:58:56.569893+00:00 +2025-12-14,github-actions,174430,False,2026-04-20T22:59:00.958263+00:00 +2025-12-15,Dependabot,54550,False,2026-04-20T22:59:05.563411+00:00 +2025-12-15,Renovate,53842,False,2026-04-20T22:59:10.073350+00:00 +2025-12-15,pre-commit-ci,1092,False,2026-04-20T22:59:14.451092+00:00 +2025-12-15,semantic-release-bot,676,False,2026-04-20T22:59:18.874205+00:00 +2025-12-15,allcontributors,22,False,2026-04-20T22:59:23.319282+00:00 +2025-12-15,github-actions,172679,False,2026-04-20T22:59:27.782441+00:00 +2025-12-16,Dependabot,19112,False,2026-04-20T22:59:32.217404+00:00 +2025-12-16,Renovate,15410,False,2026-04-20T22:59:36.660898+00:00 +2025-12-16,pre-commit-ci,383,False,2026-04-20T22:59:41.063540+00:00 +2025-12-16,semantic-release-bot,719,False,2026-04-20T22:59:45.496601+00:00 +2025-12-16,allcontributors,35,False,2026-04-20T22:59:50.007749+00:00 +2025-12-16,github-actions,172975,False,2026-04-20T22:59:54.436500+00:00 +2025-12-17,Dependabot,14902,False,2026-04-20T22:59:59.047105+00:00 +2025-12-17,Renovate,26993,False,2026-04-20T23:00:03.681888+00:00 +2025-12-17,pre-commit-ci,152,False,2026-04-20T23:00:08.136460+00:00 +2025-12-17,semantic-release-bot,688,False,2026-04-20T23:00:12.782030+00:00 +2025-12-17,allcontributors,14,False,2026-04-20T23:00:17.168184+00:00 +2025-12-17,github-actions,172583,False,2026-04-20T23:00:21.650748+00:00 +2025-12-18,Dependabot,12040,False,2026-04-20T23:00:26.062051+00:00 +2025-12-18,Renovate,16454,False,2026-04-20T23:00:30.472708+00:00 +2025-12-18,pre-commit-ci,166,False,2026-04-20T23:00:34.930527+00:00 +2025-12-18,semantic-release-bot,809,False,2026-04-20T23:00:39.321205+00:00 +2025-12-18,allcontributors,19,False,2026-04-20T23:00:43.741002+00:00 +2025-12-18,github-actions,170683,False,2026-04-20T23:00:48.270267+00:00 +2025-12-19,Dependabot,11873,False,2026-04-20T23:00:52.786424+00:00 +2025-12-19,Renovate,29852,False,2026-04-20T23:00:57.286738+00:00 +2025-12-19,pre-commit-ci,78,False,2026-04-20T23:01:01.728185+00:00 +2025-12-19,semantic-release-bot,705,False,2026-04-20T23:01:06.228681+00:00 +2025-12-19,allcontributors,30,False,2026-04-20T23:01:10.709329+00:00 +2025-12-19,github-actions,176777,False,2026-04-20T23:01:15.160231+00:00 +2025-12-20,Dependabot,5200,False,2026-04-20T23:01:19.553530+00:00 +2025-12-20,Renovate,13086,False,2026-04-20T23:01:24.019461+00:00 +2025-12-20,pre-commit-ci,49,False,2026-04-20T23:01:28.478319+00:00 +2025-12-20,semantic-release-bot,572,False,2026-04-20T23:01:32.911941+00:00 +2025-12-20,allcontributors,11,False,2026-04-20T23:01:37.375135+00:00 +2025-12-20,github-actions,177552,False,2026-04-20T23:01:41.840044+00:00 +2025-12-21,Dependabot,4317,False,2026-04-20T23:01:46.392424+00:00 +2025-12-21,Renovate,10907,False,2026-04-20T23:01:50.791749+00:00 +2025-12-21,pre-commit-ci,40,False,2026-04-20T23:01:55.248931+00:00 +2025-12-21,semantic-release-bot,514,False,2026-04-20T23:01:59.688127+00:00 +2025-12-21,allcontributors,11,False,2026-04-20T23:02:04.082665+00:00 +2025-12-21,github-actions,175986,False,2026-04-20T23:02:08.505365+00:00 +2025-12-22,Dependabot,28834,False,2026-04-20T23:02:12.950451+00:00 +2025-12-22,Renovate,45839,False,2026-04-20T23:02:17.529677+00:00 +2025-12-22,pre-commit-ci,1001,False,2026-04-20T23:02:21.920103+00:00 +2025-12-22,semantic-release-bot,716,False,2026-04-20T23:02:26.341847+00:00 +2025-12-22,allcontributors,16,False,2026-04-20T23:02:30.695670+00:00 +2025-12-22,github-actions,173576,False,2026-04-20T23:02:35.175420+00:00 +2025-12-23,Dependabot,10864,False,2026-04-20T23:02:39.687815+00:00 +2025-12-23,Renovate,9046,False,2026-04-20T23:02:44.125443+00:00 +2025-12-23,pre-commit-ci,431,False,2026-04-20T23:02:48.580309+00:00 +2025-12-23,semantic-release-bot,734,False,2026-04-20T23:02:52.979882+00:00 +2025-12-23,allcontributors,13,False,2026-04-20T23:02:57.387341+00:00 +2025-12-23,github-actions,171257,False,2026-04-20T23:03:01.799914+00:00 +2025-12-24,Dependabot,7250,False,2026-04-20T23:03:06.219601+00:00 +2025-12-24,Renovate,8775,False,2026-04-20T23:03:10.634567+00:00 +2025-12-24,pre-commit-ci,88,False,2026-04-20T23:03:15.037379+00:00 +2025-12-24,semantic-release-bot,597,False,2026-04-20T23:03:19.461793+00:00 +2025-12-24,allcontributors,9,False,2026-04-20T23:03:23.874629+00:00 +2025-12-24,github-actions,173072,False,2026-04-20T23:03:28.255062+00:00 +2025-12-25,Dependabot,10275,False,2026-04-20T23:03:32.710942+00:00 +2025-12-25,Renovate,5909,False,2026-04-20T23:03:37.119730+00:00 +2025-12-25,pre-commit-ci,26,False,2026-04-20T23:03:41.514775+00:00 +2025-12-25,semantic-release-bot,412,False,2026-04-20T23:03:45.952485+00:00 +2025-12-25,allcontributors,7,False,2026-04-20T23:03:50.350083+00:00 +2025-12-25,github-actions,172448,False,2026-04-20T23:03:54.764421+00:00 +2025-12-26,Dependabot,5148,False,2026-04-20T23:03:59.234072+00:00 +2025-12-26,Renovate,5586,False,2026-04-20T23:04:03.730318+00:00 +2025-12-26,pre-commit-ci,44,False,2026-04-20T23:04:08.231529+00:00 +2025-12-26,semantic-release-bot,632,False,2026-04-20T23:04:12.789015+00:00 +2025-12-26,allcontributors,22,False,2026-04-20T23:04:17.273452+00:00 +2025-12-26,github-actions,175133,False,2026-04-20T23:04:21.780169+00:00 +2025-12-27,Dependabot,3616,False,2026-04-20T23:04:26.199307+00:00 +2025-12-27,Renovate,5451,False,2026-04-20T23:04:30.686584+00:00 +2025-12-27,pre-commit-ci,61,False,2026-04-20T23:04:35.103450+00:00 +2025-12-27,semantic-release-bot,463,False,2026-04-20T23:04:39.598198+00:00 +2025-12-27,allcontributors,11,False,2026-04-20T23:04:44.008971+00:00 +2025-12-27,github-actions,175819,False,2026-04-20T23:04:48.428723+00:00 +2025-12-28,Dependabot,3503,False,2026-04-20T23:04:52.812530+00:00 +2025-12-28,Renovate,4988,False,2026-04-20T23:04:57.288957+00:00 +2025-12-28,pre-commit-ci,34,False,2026-04-20T23:05:01.826786+00:00 +2025-12-28,semantic-release-bot,432,False,2026-04-20T23:05:06.247633+00:00 +2025-12-28,allcontributors,15,False,2026-04-20T23:05:10.655548+00:00 +2025-12-28,github-actions,174159,False,2026-04-20T23:05:15.033931+00:00 +2025-12-29,Dependabot,17772,False,2026-04-20T23:05:19.530111+00:00 +2025-12-29,Renovate,26175,False,2026-04-20T23:05:23.968739+00:00 +2025-12-29,pre-commit-ci,219,False,2026-04-20T23:05:28.384842+00:00 +2025-12-29,semantic-release-bot,674,False,2026-04-20T23:05:32.897129+00:00 +2025-12-29,allcontributors,31,False,2026-04-20T23:05:37.300140+00:00 +2025-12-29,github-actions,174306,False,2026-04-20T23:05:41.730487+00:00 +2025-12-30,Dependabot,9639,False,2026-04-20T23:05:46.275610+00:00 +2025-12-30,Renovate,8370,False,2026-04-20T23:05:50.763073+00:00 +2025-12-30,pre-commit-ci,78,False,2026-04-20T23:05:55.212969+00:00 +2025-12-30,semantic-release-bot,526,False,2026-04-20T23:05:59.679293+00:00 +2025-12-30,allcontributors,35,False,2026-04-20T23:06:04.281075+00:00 +2025-12-30,github-actions,176554,False,2026-04-20T23:06:08.786175+00:00 +2025-12-31,Dependabot,6948,False,2026-04-20T23:06:13.216739+00:00 +2025-12-31,Renovate,12173,False,2026-04-20T23:06:17.649269+00:00 +2025-12-31,pre-commit-ci,69,False,2026-04-20T23:06:22.118295+00:00 +2025-12-31,semantic-release-bot,615,False,2026-04-20T23:06:26.616600+00:00 +2025-12-31,allcontributors,6,False,2026-04-20T23:06:31.029262+00:00 +2025-12-31,github-actions,176442,False,2026-04-20T23:06:35.513849+00:00 +2026-01-01,Dependabot,23859,False,2026-04-20T23:06:40.018729+00:00 +2026-01-01,Renovate,10820,False,2026-04-20T23:06:44.552527+00:00 +2026-01-01,pre-commit-ci,61,False,2026-04-20T23:06:48.998242+00:00 +2026-01-01,semantic-release-bot,601,False,2026-04-20T23:06:53.487881+00:00 +2026-01-01,allcontributors,50,False,2026-04-20T23:06:57.971262+00:00 +2026-01-01,github-actions,179168,False,2026-04-20T23:07:02.429196+00:00 +2026-01-02,Dependabot,11052,False,2026-04-20T23:07:06.911584+00:00 +2026-01-02,Renovate,8625,False,2026-04-20T23:07:11.429329+00:00 +2026-01-02,pre-commit-ci,172,False,2026-04-20T23:07:15.922718+00:00 +2026-01-02,semantic-release-bot,692,False,2026-04-20T23:07:20.459401+00:00 +2026-01-02,allcontributors,377,False,2026-04-20T23:07:24.917006+00:00 +2026-01-02,github-actions,177680,False,2026-04-20T23:07:29.379669+00:00 +2026-01-03,Dependabot,5381,False,2026-04-20T23:07:34.069872+00:00 +2026-01-03,Renovate,13857,False,2026-04-20T23:07:38.471333+00:00 +2026-01-03,pre-commit-ci,52,False,2026-04-20T23:07:42.853895+00:00 +2026-01-03,semantic-release-bot,778,False,2026-04-20T23:07:47.297648+00:00 +2026-01-03,allcontributors,91,False,2026-04-20T23:07:51.671025+00:00 +2026-01-03,github-actions,181946,False,2026-04-20T23:07:56.097044+00:00 +2026-01-04,Dependabot,4331,False,2026-04-20T23:08:00.499210+00:00 +2026-01-04,Renovate,6565,False,2026-04-20T23:08:04.942801+00:00 +2026-01-04,pre-commit-ci,33,False,2026-04-20T23:08:09.336740+00:00 +2026-01-04,semantic-release-bot,888,False,2026-04-20T23:08:13.849204+00:00 +2026-01-04,allcontributors,18,False,2026-04-20T23:08:18.256273+00:00 +2026-01-04,github-actions,179596,False,2026-04-20T23:08:22.649301+00:00 +2026-01-05,Dependabot,26964,False,2026-04-20T23:08:27.133649+00:00 +2026-01-05,Renovate,20856,False,2026-04-20T23:08:31.574897+00:00 +2026-01-05,pre-commit-ci,1411,False,2026-04-20T23:08:35.974582+00:00 +2026-01-05,semantic-release-bot,1026,False,2026-04-20T23:08:40.370929+00:00 +2026-01-05,allcontributors,16,False,2026-04-20T23:08:44.850030+00:00 +2026-01-05,github-actions,176846,False,2026-04-20T23:08:49.252831+00:00 +2026-01-06,Dependabot,14365,False,2026-04-20T23:08:53.695886+00:00 +2026-01-06,Renovate,13586,False,2026-04-20T23:08:58.157839+00:00 +2026-01-06,pre-commit-ci,430,False,2026-04-20T23:09:02.686461+00:00 +2026-01-06,semantic-release-bot,890,False,2026-04-20T23:09:07.171585+00:00 +2026-01-06,allcontributors,42,False,2026-04-20T23:09:11.641144+00:00 +2026-01-06,github-actions,179769,False,2026-04-20T23:09:16.183948+00:00 +2026-01-07,Dependabot,16193,False,2026-04-20T23:09:20.557067+00:00 +2026-01-07,Renovate,12976,False,2026-04-20T23:09:25.078217+00:00 +2026-01-07,pre-commit-ci,150,False,2026-04-20T23:09:29.586094+00:00 +2026-01-07,semantic-release-bot,999,False,2026-04-20T23:09:33.972613+00:00 +2026-01-07,allcontributors,26,False,2026-04-20T23:09:38.504094+00:00 +2026-01-07,github-actions,180947,False,2026-04-20T23:09:42.956132+00:00 +2026-01-08,Dependabot,15324,False,2026-04-20T23:09:47.423810+00:00 +2026-01-08,Renovate,14494,False,2026-04-20T23:09:51.861880+00:00 +2026-01-08,pre-commit-ci,151,False,2026-04-20T23:09:56.323462+00:00 +2026-01-08,semantic-release-bot,1043,False,2026-04-20T23:10:00.717164+00:00 +2026-01-08,allcontributors,28,False,2026-04-20T23:10:05.127754+00:00 +2026-01-08,github-actions,186479,False,2026-04-20T23:10:09.550768+00:00 +2026-01-09,Dependabot,13985,False,2026-04-20T23:10:14.096033+00:00 +2026-01-09,Renovate,13029,False,2026-04-20T23:10:18.550738+00:00 +2026-01-09,pre-commit-ci,92,False,2026-04-20T23:10:22.972545+00:00 +2026-01-09,semantic-release-bot,861,False,2026-04-20T23:10:27.396885+00:00 +2026-01-09,allcontributors,16,False,2026-04-20T23:10:31.782449+00:00 +2026-01-09,github-actions,182679,False,2026-04-20T23:10:36.246067+00:00 +2026-01-10,Dependabot,5524,False,2026-04-20T23:10:40.731218+00:00 +2026-01-10,Renovate,12055,False,2026-04-20T23:10:45.168725+00:00 +2026-01-10,pre-commit-ci,44,False,2026-04-20T23:10:49.690884+00:00 +2026-01-10,semantic-release-bot,712,False,2026-04-20T23:10:54.054077+00:00 +2026-01-10,allcontributors,5,False,2026-04-20T23:10:58.463121+00:00 +2026-01-10,github-actions,186337,False,2026-04-20T23:11:02.898923+00:00 +2026-01-11,Dependabot,4508,False,2026-04-20T23:11:07.310654+00:00 +2026-01-11,Renovate,7141,False,2026-04-20T23:11:11.852069+00:00 +2026-01-11,pre-commit-ci,46,False,2026-04-20T23:11:16.227732+00:00 +2026-01-11,semantic-release-bot,661,False,2026-04-20T23:11:20.687658+00:00 +2026-01-11,allcontributors,19,False,2026-04-20T23:11:25.094687+00:00 +2026-01-11,github-actions,185685,False,2026-04-20T23:11:29.611426+00:00 +2026-01-12,Dependabot,28658,False,2026-04-20T23:11:34.126187+00:00 +2026-01-12,Renovate,35777,False,2026-04-20T23:11:38.623515+00:00 +2026-01-12,pre-commit-ci,1038,False,2026-04-20T23:11:43.032887+00:00 +2026-01-12,semantic-release-bot,891,False,2026-04-20T23:11:51.678789+00:00 +2026-01-12,allcontributors,0,True,2026-04-21T00:05:07.550507+00:00 +2026-01-12,github-actions,0,True,2026-04-21T01:13:00.796904+00:00 +2026-01-13,Dependabot,0,True,2026-04-21T02:13:04.566115+00:00 +2026-01-13,Renovate,19503,False,2026-04-21T02:13:09.868483+00:00 +2026-01-13,pre-commit-ci,374,False,2026-04-21T02:13:14.461436+00:00 +2026-01-13,semantic-release-bot,902,False,2026-04-21T02:13:19.246984+00:00 +2026-01-13,allcontributors,47,False,2026-04-21T02:29:36.679244+00:00 +2026-01-13,github-actions,184081,False,2026-04-21T02:44:50.704599+00:00 +2026-01-14,Dependabot,12710,False,2026-04-21T03:01:12.560203+00:00 +2026-01-14,Renovate,14934,True,2026-04-21T03:14:03.429027+00:00 +2026-01-14,pre-commit-ci,160,True,2026-04-21T03:30:25.347647+00:00 +2026-01-14,semantic-release-bot,932,False,2026-04-21T03:46:58.878810+00:00 +2026-01-14,allcontributors,8,False,2026-04-21T03:56:03.624971+00:00 +2026-01-14,github-actions,181082,False,2026-04-21T03:56:08.177014+00:00 +2026-01-15,Dependabot,32624,False,2026-04-21T03:59:07.579872+00:00 +2026-01-15,Renovate,19426,False,2026-04-21T03:59:12.212012+00:00 +2026-01-15,pre-commit-ci,108,False,2026-04-21T03:59:16.720972+00:00 +2026-01-15,semantic-release-bot,925,False,2026-04-21T03:59:21.523249+00:00 +2026-01-15,allcontributors,70,False,2026-04-21T03:59:26.151575+00:00 +2026-01-15,github-actions,182346,False,2026-04-21T03:59:30.689500+00:00 +2026-01-16,Dependabot,24574,False,2026-04-21T03:59:35.087221+00:00 +2026-01-16,Renovate,15282,False,2026-04-21T03:59:39.501897+00:00 +2026-01-16,pre-commit-ci,118,False,2026-04-21T03:59:44.026832+00:00 +2026-01-16,semantic-release-bot,785,False,2026-04-21T03:59:48.498621+00:00 +2026-01-16,allcontributors,53,False,2026-04-21T03:59:53.005299+00:00 +2026-01-16,github-actions,188874,False,2026-04-21T03:59:57.611923+00:00 +2026-01-17,Dependabot,7967,False,2026-04-21T04:00:02.185244+00:00 +2026-01-17,Renovate,10796,False,2026-04-21T04:00:06.647771+00:00 +2026-01-17,pre-commit-ci,68,False,2026-04-21T04:00:11.098815+00:00 +2026-01-17,semantic-release-bot,634,False,2026-04-21T04:00:15.634520+00:00 +2026-01-17,allcontributors,24,False,2026-04-21T04:00:20.074127+00:00 +2026-01-17,github-actions,195367,False,2026-04-21T04:00:24.493003+00:00 +2026-01-18,Dependabot,5853,False,2026-04-21T04:00:28.907943+00:00 +2026-01-18,Renovate,11578,False,2026-04-21T04:00:33.452552+00:00 +2026-01-18,pre-commit-ci,74,False,2026-04-21T04:00:38.061485+00:00 +2026-01-18,semantic-release-bot,796,False,2026-04-21T04:00:42.501794+00:00 +2026-01-18,allcontributors,33,False,2026-04-21T04:00:47.174473+00:00 +2026-01-18,github-actions,202412,False,2026-04-21T04:00:51.584158+00:00 +2026-01-19,Dependabot,30146,False,2026-04-21T04:00:56.185515+00:00 +2026-01-19,Renovate,39035,False,2026-04-21T04:01:00.981410+00:00 +2026-01-19,pre-commit-ci,1392,False,2026-04-21T04:01:05.422088+00:00 +2026-01-19,semantic-release-bot,1071,False,2026-04-21T04:01:09.906703+00:00 +2026-01-19,allcontributors,41,False,2026-04-21T04:01:14.317240+00:00 +2026-01-19,github-actions,199192,False,2026-04-21T04:01:18.760688+00:00 +2026-01-20,Dependabot,17733,False,2026-04-21T04:01:23.219241+00:00 +2026-01-20,Renovate,11911,False,2026-04-21T04:01:27.667398+00:00 +2026-01-20,pre-commit-ci,454,False,2026-04-21T04:01:32.094689+00:00 +2026-01-20,semantic-release-bot,1002,False,2026-04-21T04:01:36.484843+00:00 +2026-01-20,allcontributors,20,False,2026-04-21T04:01:40.900662+00:00 +2026-01-20,github-actions,187348,False,2026-04-21T04:01:45.319486+00:00 +2026-01-21,Dependabot,19242,False,2026-04-21T04:01:49.843513+00:00 +2026-01-21,Renovate,12239,False,2026-04-21T04:01:54.302046+00:00 +2026-01-21,pre-commit-ci,159,False,2026-04-21T04:01:58.722292+00:00 +2026-01-21,semantic-release-bot,899,False,2026-04-21T04:02:03.259505+00:00 +2026-01-21,allcontributors,49,False,2026-04-21T04:02:07.781338+00:00 +2026-01-21,github-actions,179581,False,2026-04-21T04:02:12.273147+00:00 +2026-01-22,Dependabot,28311,False,2026-04-21T04:02:16.717774+00:00 +2026-01-22,Renovate,20338,False,2026-04-21T04:02:21.205280+00:00 +2026-01-22,pre-commit-ci,141,False,2026-04-21T04:02:25.592295+00:00 +2026-01-22,semantic-release-bot,1000,False,2026-04-21T04:02:30.011763+00:00 +2026-01-22,allcontributors,80,False,2026-04-21T04:02:34.534568+00:00 +2026-01-22,github-actions,182071,False,2026-04-21T04:02:39.031452+00:00 +2026-01-23,Dependabot,16931,False,2026-04-21T04:02:43.488719+00:00 +2026-01-23,Renovate,16859,False,2026-04-21T04:02:47.954656+00:00 +2026-01-23,pre-commit-ci,138,False,2026-04-21T04:02:52.410601+00:00 +2026-01-23,semantic-release-bot,1297,False,2026-04-21T04:02:56.951227+00:00 +2026-01-23,allcontributors,30,False,2026-04-21T04:03:01.402213+00:00 +2026-01-23,github-actions,186657,False,2026-04-21T04:03:05.872304+00:00 +2026-01-24,Dependabot,7670,False,2026-04-21T04:03:10.433052+00:00 +2026-01-24,Renovate,10915,False,2026-04-21T04:03:14.894745+00:00 +2026-01-24,pre-commit-ci,72,False,2026-04-21T04:03:19.342058+00:00 +2026-01-24,semantic-release-bot,737,False,2026-04-21T04:03:23.763316+00:00 +2026-01-24,allcontributors,11,False,2026-04-21T04:03:28.251082+00:00 +2026-01-24,github-actions,194547,False,2026-04-21T04:03:32.773504+00:00 +2026-01-25,Dependabot,6409,False,2026-04-21T04:03:37.214633+00:00 +2026-01-25,Renovate,8503,False,2026-04-21T04:03:41.829871+00:00 +2026-01-25,pre-commit-ci,106,True,2026-04-21T04:03:46.579276+00:00 +2026-01-25,semantic-release-bot,783,False,2026-04-21T04:03:51.047953+00:00 +2026-01-25,allcontributors,49,False,2026-04-21T04:03:55.464498+00:00 +2026-01-25,github-actions,190521,False,2026-04-21T04:04:00.038453+00:00 +2026-01-26,Dependabot,34273,False,2026-04-21T04:04:04.601273+00:00 +2026-01-26,Renovate,34697,False,2026-04-21T04:04:09.101438+00:00 +2026-01-26,pre-commit-ci,1003,False,2026-04-21T04:04:13.523509+00:00 +2026-01-26,semantic-release-bot,960,False,2026-04-21T04:04:18.018430+00:00 +2026-01-26,allcontributors,23,False,2026-04-21T04:04:22.523525+00:00 +2026-01-26,github-actions,185117,False,2026-04-21T04:04:26.987828+00:00 +2026-01-27,Dependabot,21471,False,2026-04-21T04:04:31.423637+00:00 +2026-01-27,Renovate,14214,False,2026-04-21T04:04:36.047337+00:00 +2026-01-27,pre-commit-ci,364,False,2026-04-21T04:04:40.548287+00:00 +2026-01-27,semantic-release-bot,914,False,2026-04-21T04:04:44.973520+00:00 +2026-01-27,allcontributors,7,False,2026-04-21T04:04:49.456660+00:00 +2026-01-27,github-actions,187550,False,2026-04-21T04:04:53.867882+00:00 +2026-01-28,Dependabot,16349,False,2026-04-21T04:04:58.407050+00:00 +2026-01-28,Renovate,13999,False,2026-04-21T04:05:02.990898+00:00 +2026-01-28,pre-commit-ci,140,False,2026-04-21T04:05:07.477582+00:00 +2026-01-28,semantic-release-bot,885,False,2026-04-21T04:05:12.085498+00:00 +2026-01-28,allcontributors,17,False,2026-04-21T04:05:16.489919+00:00 +2026-01-28,github-actions,183353,False,2026-04-21T04:05:20.994330+00:00 +2026-01-29,Dependabot,16006,False,2026-04-21T04:05:25.500732+00:00 +2026-01-29,Renovate,15499,False,2026-04-21T04:05:30.005865+00:00 +2026-01-29,pre-commit-ci,140,False,2026-04-21T04:05:34.511221+00:00 +2026-01-29,semantic-release-bot,824,False,2026-04-21T04:05:39.017847+00:00 +2026-01-29,allcontributors,31,False,2026-04-21T04:05:43.421527+00:00 +2026-01-29,github-actions,172389,False,2026-04-21T04:05:47.925796+00:00 +2026-01-30,Dependabot,12210,False,2026-04-21T04:05:52.432691+00:00 +2026-01-30,Renovate,13163,False,2026-04-21T04:05:56.860964+00:00 +2026-01-30,pre-commit-ci,98,False,2026-04-21T04:06:01.464517+00:00 +2026-01-30,semantic-release-bot,905,False,2026-04-21T04:06:05.949052+00:00 +2026-01-30,allcontributors,93,False,2026-04-21T04:06:10.867716+00:00 +2026-01-30,github-actions,171125,False,2026-04-21T04:06:15.369561+00:00 +2026-01-31,Dependabot,7104,False,2026-04-21T04:06:19.808250+00:00 +2026-01-31,Renovate,9614,False,2026-04-21T04:06:24.265275+00:00 +2026-01-31,pre-commit-ci,184,False,2026-04-21T04:06:28.737788+00:00 +2026-01-31,semantic-release-bot,572,False,2026-04-21T04:06:33.201466+00:00 +2026-01-31,allcontributors,27,False,2026-04-21T04:06:37.641671+00:00 +2026-01-31,github-actions,182114,False,2026-04-21T04:06:42.059089+00:00 +2026-02-01,Dependabot,15352,False,2026-04-21T04:06:46.509798+00:00 +2026-02-01,Renovate,10163,False,2026-04-21T04:06:50.958794+00:00 +2026-02-01,pre-commit-ci,60,False,2026-04-21T04:06:55.510854+00:00 +2026-02-01,semantic-release-bot,567,False,2026-04-21T04:07:00.017689+00:00 +2026-02-01,allcontributors,37,False,2026-04-21T04:07:04.521990+00:00 +2026-02-01,github-actions,180243,False,2026-04-21T04:07:09.027664+00:00 +2026-02-02,Dependabot,30069,False,2026-04-21T04:07:13.635879+00:00 +2026-02-02,Renovate,31460,False,2026-04-21T04:07:18.105233+00:00 +2026-02-02,pre-commit-ci,635,False,2026-04-21T04:07:22.627891+00:00 +2026-02-02,semantic-release-bot,929,False,2026-04-21T04:07:27.282973+00:00 +2026-02-02,allcontributors,31,False,2026-04-21T04:07:31.698087+00:00 +2026-02-02,github-actions,139140,False,2026-04-21T04:07:36.267205+00:00 +2026-02-03,Dependabot,26048,False,2026-04-21T04:07:40.727386+00:00 +2026-02-03,Renovate,16690,False,2026-04-21T04:07:45.176545+00:00 +2026-02-03,pre-commit-ci,346,False,2026-04-21T04:07:49.783847+00:00 +2026-02-03,semantic-release-bot,957,False,2026-04-21T04:07:54.290177+00:00 +2026-02-03,allcontributors,37,False,2026-04-21T04:07:58.794345+00:00 +2026-02-03,github-actions,170072,False,2026-04-21T04:08:03.224028+00:00 +2026-02-04,Dependabot,22505,False,2026-04-21T04:08:07.631112+00:00 +2026-02-04,Renovate,17035,False,2026-04-21T04:08:12.051828+00:00 +2026-02-04,pre-commit-ci,129,False,2026-04-21T04:08:16.506367+00:00 +2026-02-04,semantic-release-bot,1000,False,2026-04-21T04:08:20.992839+00:00 +2026-02-04,allcontributors,25,False,2026-04-21T04:08:25.521442+00:00 +2026-02-04,github-actions,170761,False,2026-04-21T04:08:30.027759+00:00 +2026-02-05,Dependabot,15123,False,2026-04-21T04:08:34.532422+00:00 +2026-02-05,Renovate,17504,False,2026-04-21T04:08:38.944951+00:00 +2026-02-05,pre-commit-ci,105,False,2026-04-21T04:08:43.454595+00:00 +2026-02-05,semantic-release-bot,1010,False,2026-04-21T04:08:47.946833+00:00 +2026-02-05,allcontributors,52,False,2026-04-21T04:08:52.452887+00:00 +2026-02-05,github-actions,169988,False,2026-04-21T04:08:57.061417+00:00 +2026-02-06,Dependabot,14223,False,2026-04-21T04:09:01.560523+00:00 +2026-02-06,Renovate,19684,False,2026-04-21T04:09:06.072294+00:00 +2026-02-06,pre-commit-ci,114,False,2026-04-21T04:09:10.495627+00:00 +2026-02-06,semantic-release-bot,913,False,2026-04-21T04:09:14.924881+00:00 +2026-02-06,allcontributors,16,False,2026-04-21T04:09:19.361767+00:00 +2026-02-06,github-actions,172968,False,2026-04-21T04:09:23.825463+00:00 +2026-02-07,Dependabot,10137,False,2026-04-21T04:09:28.259698+00:00 +2026-02-07,Renovate,11424,False,2026-04-21T04:09:32.731714+00:00 +2026-02-07,pre-commit-ci,93,False,2026-04-21T04:09:37.406853+00:00 +2026-02-07,semantic-release-bot,662,False,2026-04-21T04:09:41.985710+00:00 +2026-02-07,allcontributors,14,False,2026-04-21T04:09:46.464756+00:00 +2026-02-07,github-actions,183673,False,2026-04-21T04:09:51.129282+00:00 +2026-02-08,Dependabot,6345,False,2026-04-21T04:09:55.596208+00:00 +2026-02-08,Renovate,10166,False,2026-04-21T04:10:00.140821+00:00 +2026-02-08,pre-commit-ci,60,False,2026-04-21T04:10:04.568924+00:00 +2026-02-08,semantic-release-bot,856,False,2026-04-21T04:10:09.003391+00:00 +2026-02-08,allcontributors,34,False,2026-04-21T04:10:13.435777+00:00 +2026-02-08,github-actions,178789,False,2026-04-21T04:10:17.957109+00:00 +2026-02-09,Dependabot,30354,False,2026-04-21T04:10:22.565230+00:00 +2026-02-09,Renovate,25773,False,2026-04-21T04:10:27.035448+00:00 +2026-02-09,pre-commit-ci,889,False,2026-04-21T04:10:31.453290+00:00 +2026-02-09,semantic-release-bot,859,False,2026-04-21T04:10:35.980084+00:00 +2026-02-09,allcontributors,11,False,2026-04-21T04:10:40.485643+00:00 +2026-02-09,github-actions,153559,False,2026-04-21T04:10:44.991432+00:00 +2026-02-10,Dependabot,19702,False,2026-04-21T04:10:49.434633+00:00 +2026-02-10,Renovate,18130,False,2026-04-21T04:10:53.863322+00:00 +2026-02-10,pre-commit-ci,366,False,2026-04-21T04:10:58.508863+00:00 +2026-02-10,semantic-release-bot,844,False,2026-04-21T04:11:03.332699+00:00 +2026-02-10,allcontributors,33,False,2026-04-21T04:11:07.724820+00:00 +2026-02-10,github-actions,155900,False,2026-04-21T04:11:12.199013+00:00 +2026-02-11,Dependabot,20321,False,2026-04-21T04:11:16.729353+00:00 +2026-02-11,Renovate,19650,False,2026-04-21T04:11:21.344184+00:00 +2026-02-11,pre-commit-ci,187,False,2026-04-21T04:11:26.054698+00:00 +2026-02-11,semantic-release-bot,890,False,2026-04-21T04:11:30.478252+00:00 +2026-02-11,allcontributors,55,False,2026-04-21T04:11:34.894294+00:00 +2026-02-11,github-actions,163377,False,2026-04-21T04:11:39.349478+00:00 +2026-02-12,Dependabot,15679,False,2026-04-21T04:11:43.787245+00:00 +2026-02-12,Renovate,20711,False,2026-04-21T04:11:48.377602+00:00 +2026-02-12,pre-commit-ci,137,False,2026-04-21T04:11:52.801614+00:00 +2026-02-12,semantic-release-bot,868,False,2026-04-21T04:11:57.305788+00:00 +2026-02-12,allcontributors,25,False,2026-04-21T04:12:01.793839+00:00 +2026-02-12,github-actions,163695,False,2026-04-21T04:12:06.235933+00:00 +2026-02-13,Dependabot,15266,False,2026-04-21T04:12:10.641562+00:00 +2026-02-13,Renovate,14170,False,2026-04-21T04:12:15.134394+00:00 +2026-02-13,pre-commit-ci,117,False,2026-04-21T04:12:19.609693+00:00 +2026-02-13,semantic-release-bot,987,False,2026-04-21T04:12:24.063881+00:00 +2026-02-13,allcontributors,20,False,2026-04-21T04:12:28.494885+00:00 +2026-02-13,github-actions,170532,False,2026-04-21T04:12:33.024493+00:00 +2026-02-14,Dependabot,11667,False,2026-04-21T04:12:37.529933+00:00 +2026-02-14,Renovate,11795,False,2026-04-21T04:12:42.036677+00:00 +2026-02-14,pre-commit-ci,93,False,2026-04-21T04:12:46.541098+00:00 +2026-02-14,semantic-release-bot,573,False,2026-04-21T04:12:51.003822+00:00 +2026-02-14,allcontributors,7,False,2026-04-21T04:12:55.407714+00:00 +2026-02-14,github-actions,184493,False,2026-04-21T04:12:59.958229+00:00 +2026-02-15,Dependabot,6644,False,2026-04-21T04:13:04.462446+00:00 +2026-02-15,Renovate,10875,False,2026-04-21T04:13:08.881972+00:00 +2026-02-15,pre-commit-ci,126,False,2026-04-21T04:13:13.347150+00:00 +2026-02-15,semantic-release-bot,684,False,2026-04-21T04:13:17.773568+00:00 +2026-02-15,allcontributors,14,False,2026-04-21T04:13:22.160814+00:00 +2026-02-15,github-actions,182288,False,2026-04-21T04:13:26.601445+00:00 +2026-02-16,Dependabot,32288,False,2026-04-21T04:13:31.180787+00:00 +2026-02-16,Renovate,28747,False,2026-04-21T04:13:35.898329+00:00 +2026-02-16,pre-commit-ci,1038,False,2026-04-21T04:13:40.405530+00:00 +2026-02-16,semantic-release-bot,915,False,2026-04-21T04:13:44.869334+00:00 +2026-02-16,allcontributors,21,False,2026-04-21T04:13:49.312863+00:00 +2026-02-16,github-actions,177016,False,2026-04-21T04:13:53.772385+00:00 +2026-02-17,Dependabot,17531,False,2026-04-21T04:13:58.324572+00:00 +2026-02-17,Renovate,12153,False,2026-04-21T04:14:02.861494+00:00 +2026-02-17,pre-commit-ci,404,False,2026-04-21T04:14:07.335425+00:00 +2026-02-17,semantic-release-bot,859,False,2026-04-21T04:14:11.943503+00:00 +2026-02-17,allcontributors,49,False,2026-04-21T04:14:16.448782+00:00 +2026-02-17,github-actions,174197,False,2026-04-21T04:14:20.954637+00:00 +2026-02-18,Dependabot,14683,False,2026-04-21T04:14:25.470778+00:00 +2026-02-18,Renovate,11342,False,2026-04-21T04:14:29.918105+00:00 +2026-02-18,pre-commit-ci,117,False,2026-04-21T04:14:34.351847+00:00 +2026-02-18,semantic-release-bot,855,False,2026-04-21T04:14:38.746200+00:00 +2026-02-18,allcontributors,22,False,2026-04-21T04:14:43.182808+00:00 +2026-02-18,github-actions,180267,False,2026-04-21T04:14:47.611948+00:00 +2026-02-19,Dependabot,18189,False,2026-04-21T04:14:52.189011+00:00 +2026-02-19,Renovate,11619,False,2026-04-21T04:14:56.637293+00:00 +2026-02-19,pre-commit-ci,100,False,2026-04-21T04:15:01.242442+00:00 +2026-02-19,semantic-release-bot,940,False,2026-04-21T04:15:05.673100+00:00 +2026-02-19,allcontributors,16,False,2026-04-21T04:15:10.107006+00:00 +2026-02-19,github-actions,187028,False,2026-04-21T04:15:14.544163+00:00 +2026-02-20,Dependabot,20922,False,2026-04-21T04:15:18.979712+00:00 +2026-02-20,Renovate,15645,False,2026-04-21T04:15:23.609436+00:00 +2026-02-20,pre-commit-ci,122,False,2026-04-21T04:15:28.129592+00:00 +2026-02-20,semantic-release-bot,971,False,2026-04-21T04:15:32.738067+00:00 +2026-02-20,allcontributors,25,False,2026-04-21T04:15:37.243509+00:00 +2026-02-20,github-actions,197967,False,2026-04-21T04:15:41.702607+00:00 +2026-02-21,Dependabot,9954,False,2026-04-21T04:15:46.248904+00:00 +2026-02-21,Renovate,13382,False,2026-04-21T04:15:50.664927+00:00 +2026-02-21,pre-commit-ci,67,False,2026-04-21T04:15:55.164847+00:00 +2026-02-21,semantic-release-bot,716,False,2026-04-21T04:15:59.608100+00:00 +2026-02-21,allcontributors,36,False,2026-04-21T04:16:04.065653+00:00 +2026-02-21,github-actions,209440,False,2026-04-21T04:16:08.487944+00:00 +2026-02-22,Dependabot,9031,False,2026-04-21T04:16:12.947148+00:00 +2026-02-22,Renovate,9795,False,2026-04-21T04:16:17.426112+00:00 +2026-02-22,pre-commit-ci,123,False,2026-04-21T04:16:21.830655+00:00 +2026-02-22,semantic-release-bot,787,False,2026-04-21T04:16:26.260180+00:00 +2026-02-22,allcontributors,11,False,2026-04-21T04:16:30.799465+00:00 +2026-02-22,github-actions,207118,False,2026-04-21T04:16:35.207411+00:00 +2026-02-23,Dependabot,31571,False,2026-04-21T04:16:39.672293+00:00 +2026-02-23,Renovate,28485,False,2026-04-21T04:16:44.182636+00:00 +2026-02-23,pre-commit-ci,1149,False,2026-04-21T04:16:48.588631+00:00 +2026-02-23,semantic-release-bot,1040,False,2026-04-21T04:16:53.121758+00:00 +2026-02-23,allcontributors,44,False,2026-04-21T04:16:57.564841+00:00 +2026-02-23,github-actions,174071,True,2026-04-21T04:17:02.245494+00:00 +2026-02-24,Dependabot,18946,False,2026-04-21T04:17:06.702907+00:00 +2026-02-24,Renovate,17383,False,2026-04-21T04:17:11.247773+00:00 +2026-02-24,pre-commit-ci,343,False,2026-04-21T04:17:15.660858+00:00 +2026-02-24,semantic-release-bot,1094,False,2026-04-21T04:17:20.104505+00:00 +2026-02-24,allcontributors,67,False,2026-04-21T04:17:24.521366+00:00 +2026-02-24,github-actions,187345,False,2026-04-21T04:17:28.939177+00:00 +2026-02-25,Dependabot,19468,False,2026-04-21T04:17:33.468814+00:00 +2026-02-25,Renovate,13042,False,2026-04-21T04:17:37.975365+00:00 +2026-02-25,pre-commit-ci,158,False,2026-04-21T04:17:42.388493+00:00 +2026-02-25,semantic-release-bot,900,False,2026-04-21T04:17:46.986149+00:00 +2026-02-25,allcontributors,14,False,2026-04-21T04:17:51.475742+00:00 +2026-02-25,github-actions,185197,False,2026-04-21T04:17:55.997213+00:00 +2026-02-26,Dependabot,17848,False,2026-04-21T04:18:00.477355+00:00 +2026-02-26,Renovate,19211,False,2026-04-21T04:18:04.940553+00:00 +2026-02-26,pre-commit-ci,99,False,2026-04-21T04:18:09.404699+00:00 +2026-02-26,semantic-release-bot,925,False,2026-04-21T04:18:13.857120+00:00 +2026-02-26,allcontributors,27,False,2026-04-21T04:18:18.286751+00:00 +2026-02-26,github-actions,191755,False,2026-04-21T04:18:22.813956+00:00 +2026-02-27,Dependabot,21679,False,2026-04-21T04:18:27.318463+00:00 +2026-02-27,Renovate,20976,False,2026-04-21T04:18:31.776802+00:00 +2026-02-27,pre-commit-ci,134,False,2026-04-21T04:18:36.228120+00:00 +2026-02-27,semantic-release-bot,1054,False,2026-04-21T04:18:40.677347+00:00 +2026-02-27,allcontributors,53,False,2026-04-21T04:18:45.237227+00:00 +2026-02-27,github-actions,205983,False,2026-04-21T04:18:49.671446+00:00 +2026-02-28,Dependabot,21287,False,2026-04-21T04:18:54.118596+00:00 +2026-02-28,Renovate,16361,False,2026-04-21T04:18:58.592897+00:00 +2026-02-28,pre-commit-ci,103,False,2026-04-21T04:19:03.053281+00:00 +2026-02-28,semantic-release-bot,812,False,2026-04-21T04:19:07.559565+00:00 +2026-02-28,allcontributors,32,False,2026-04-21T04:19:11.992983+00:00 +2026-02-28,github-actions,228895,False,2026-04-21T04:19:16.468270+00:00 +2026-03-01,Dependabot,25152,False,2026-04-21T04:19:21.178291+00:00 +2026-03-01,Renovate,12872,False,2026-04-21T04:19:25.683419+00:00 +2026-03-01,pre-commit-ci,87,False,2026-04-21T04:19:30.197911+00:00 +2026-03-01,semantic-release-bot,671,False,2026-04-21T04:19:34.607795+00:00 +2026-03-01,allcontributors,20,False,2026-04-21T04:19:39.098353+00:00 +2026-03-01,github-actions,225752,False,2026-04-21T04:19:43.542165+00:00 +2026-03-02,Dependabot,44710,False,2026-04-21T04:19:47.974033+00:00 +2026-03-02,Renovate,24590,False,2026-04-21T04:19:52.429824+00:00 +2026-03-02,pre-commit-ci,1609,False,2026-04-21T04:19:56.855040+00:00 +2026-03-02,semantic-release-bot,1170,False,2026-04-21T04:20:01.290621+00:00 +2026-03-02,allcontributors,26,False,2026-04-21T04:20:05.687014+00:00 +2026-03-02,github-actions,207172,False,2026-04-21T04:20:10.228131+00:00 +2026-03-03,Dependabot,21399,False,2026-04-21T04:20:14.733635+00:00 +2026-03-03,Renovate,16710,False,2026-04-21T04:20:19.168993+00:00 +2026-03-03,pre-commit-ci,620,False,2026-04-21T04:20:23.649277+00:00 +2026-03-03,semantic-release-bot,881,False,2026-04-21T04:20:28.067441+00:00 +2026-03-03,allcontributors,12,False,2026-04-21T04:20:32.678358+00:00 +2026-03-03,github-actions,204616,False,2026-04-21T04:20:37.161929+00:00 +2026-03-04,Dependabot,22760,False,2026-04-21T04:20:41.665081+00:00 +2026-03-04,Renovate,22559,False,2026-04-21T04:20:46.135214+00:00 +2026-03-04,pre-commit-ci,145,False,2026-04-21T04:20:50.586375+00:00 +2026-03-04,semantic-release-bot,862,False,2026-04-21T04:20:55.009423+00:00 +2026-03-04,allcontributors,22,False,2026-04-21T04:20:59.440147+00:00 +2026-03-04,github-actions,215640,False,2026-04-21T04:21:03.890581+00:00 +2026-03-05,Dependabot,25564,False,2026-04-21T04:21:08.347732+00:00 +2026-03-05,Renovate,24655,False,2026-04-21T04:21:12.786059+00:00 +2026-03-05,pre-commit-ci,119,True,2026-04-21T04:21:17.256627+00:00 +2026-03-05,semantic-release-bot,903,False,2026-04-21T04:21:21.713433+00:00 +2026-03-05,allcontributors,27,False,2026-04-21T04:21:26.209968+00:00 +2026-03-05,github-actions,194688,False,2026-04-21T04:21:30.920935+00:00 +2026-03-06,Dependabot,23155,False,2026-04-21T04:21:35.486565+00:00 +2026-03-06,Renovate,18786,True,2026-04-21T04:21:40.032477+00:00 +2026-03-06,pre-commit-ci,125,False,2026-04-21T04:23:15.270522+00:00 +2026-03-06,semantic-release-bot,908,False,2026-04-21T04:23:19.775131+00:00 +2026-03-06,allcontributors,36,False,2026-04-21T04:23:24.258245+00:00 +2026-03-06,github-actions,220510,False,2026-04-21T04:23:28.896449+00:00 +2026-03-07,Dependabot,10377,False,2026-04-21T04:23:33.384318+00:00 +2026-03-07,Renovate,16795,False,2026-04-21T04:23:38.011293+00:00 +2026-03-07,pre-commit-ci,78,False,2026-04-21T04:23:42.514982+00:00 +2026-03-07,semantic-release-bot,689,False,2026-04-21T04:23:47.021974+00:00 +2026-03-07,allcontributors,93,False,2026-04-21T04:23:51.530426+00:00 +2026-03-07,github-actions,239448,False,2026-04-21T04:23:56.033655+00:00 +2026-03-08,Dependabot,8554,False,2026-04-21T04:24:00.532956+00:00 +2026-03-08,Renovate,11063,False,2026-04-21T04:24:04.992595+00:00 +2026-03-08,pre-commit-ci,102,False,2026-04-21T04:24:09.405465+00:00 +2026-03-08,semantic-release-bot,734,False,2026-04-21T04:24:13.901116+00:00 +2026-03-08,allcontributors,18,False,2026-04-21T04:24:18.302613+00:00 +2026-03-08,github-actions,239552,False,2026-04-21T04:24:22.691155+00:00 +2026-03-09,Dependabot,40584,False,2026-04-21T04:24:27.193498+00:00 +2026-03-09,Renovate,23780,False,2026-04-21T04:24:31.648844+00:00 +2026-03-09,pre-commit-ci,1223,False,2026-04-21T04:24:36.052136+00:00 +2026-03-09,semantic-release-bot,998,False,2026-04-21T04:24:40.493272+00:00 +2026-03-09,allcontributors,16,False,2026-04-21T04:24:44.932845+00:00 +2026-03-09,github-actions,217532,False,2026-04-21T04:24:49.384914+00:00 +2026-03-10,Dependabot,20166,False,2026-04-21T04:24:53.989550+00:00 +2026-03-10,Renovate,21707,False,2026-04-21T04:24:58.475023+00:00 +2026-03-10,pre-commit-ci,489,False,2026-04-21T04:25:02.910627+00:00 +2026-03-10,semantic-release-bot,1005,False,2026-04-21T04:25:07.404060+00:00 +2026-03-10,allcontributors,24,False,2026-04-21T04:25:11.912212+00:00 +2026-03-10,github-actions,219886,False,2026-04-21T04:25:16.358293+00:00 +2026-03-11,Dependabot,21199,False,2026-04-21T04:25:20.806342+00:00 +2026-03-11,Renovate,24807,False,2026-04-21T04:25:25.253389+00:00 +2026-03-11,pre-commit-ci,107,False,2026-04-21T04:25:29.672244+00:00 +2026-03-11,semantic-release-bot,892,False,2026-04-21T04:25:34.167842+00:00 +2026-03-11,allcontributors,19,False,2026-04-21T04:25:38.595295+00:00 +2026-03-11,github-actions,222101,False,2026-04-21T04:25:43.144541+00:00 +2026-03-12,Dependabot,21061,False,2026-04-21T04:25:47.668066+00:00 +2026-03-12,Renovate,0,True,2026-04-21T04:25:56.145087+00:00 +2026-03-12,pre-commit-ci,133,False,2026-04-21T04:26:00.602049+00:00 +2026-03-12,semantic-release-bot,1139,False,2026-04-21T04:26:05.102887+00:00 +2026-03-12,allcontributors,47,False,2026-04-21T04:26:09.531531+00:00 +2026-03-12,github-actions,250729,False,2026-04-21T04:26:14.047407+00:00 +2026-03-13,Dependabot,19132,False,2026-04-21T04:26:18.572444+00:00 +2026-03-13,Renovate,22530,False,2026-04-21T04:26:23.078206+00:00 +2026-03-13,pre-commit-ci,125,False,2026-04-21T04:26:27.686183+00:00 +2026-03-13,semantic-release-bot,891,False,2026-04-21T04:26:32.119358+00:00 +2026-03-13,allcontributors,29,False,2026-04-21T04:26:36.697485+00:00 +2026-03-13,github-actions,230199,False,2026-04-21T04:26:41.213550+00:00 +2026-03-14,Dependabot,18950,False,2026-04-21T04:26:45.953998+00:00 +2026-03-14,Renovate,13202,False,2026-04-21T04:26:50.488272+00:00 +2026-03-14,pre-commit-ci,82,False,2026-04-21T04:26:55.030379+00:00 +2026-03-14,semantic-release-bot,829,False,2026-04-21T04:26:59.532904+00:00 +2026-03-14,allcontributors,31,False,2026-04-21T04:27:03.980891+00:00 +2026-03-14,github-actions,272130,False,2026-04-21T04:27:08.433236+00:00 +2026-03-15,Dependabot,9281,False,2026-04-21T04:27:12.947193+00:00 +2026-03-15,Renovate,18760,False,2026-04-21T04:27:17.513202+00:00 +2026-03-15,pre-commit-ci,159,False,2026-04-21T04:27:21.961117+00:00 +2026-03-15,semantic-release-bot,1035,False,2026-04-21T04:27:26.485742+00:00 +2026-03-15,allcontributors,27,False,2026-04-21T04:27:30.859188+00:00 +2026-03-15,github-actions,232957,False,2026-04-21T04:27:35.281682+00:00 +2026-03-16,Dependabot,38537,False,2026-04-21T04:27:39.748913+00:00 +2026-03-16,Renovate,21216,False,2026-04-21T04:27:44.222489+00:00 +2026-03-16,pre-commit-ci,1323,False,2026-04-21T04:27:48.668581+00:00 +2026-03-16,semantic-release-bot,1293,False,2026-04-21T04:27:53.132663+00:00 +2026-03-16,allcontributors,17,False,2026-04-21T04:27:57.541553+00:00 +2026-03-16,github-actions,213674,False,2026-04-21T04:28:02.022985+00:00 +2026-03-17,Dependabot,22247,False,2026-04-21T04:28:06.501488+00:00 +2026-03-17,Renovate,15176,False,2026-04-21T04:28:11.008561+00:00 +2026-03-17,pre-commit-ci,344,False,2026-04-21T04:28:15.385024+00:00 +2026-03-17,semantic-release-bot,1225,False,2026-04-21T04:28:19.808658+00:00 +2026-03-17,allcontributors,26,False,2026-04-21T04:28:24.228074+00:00 +2026-03-17,github-actions,217736,False,2026-04-21T04:28:28.620579+00:00 +2026-03-18,Dependabot,19399,False,2026-04-21T04:28:33.074986+00:00 +2026-03-18,Renovate,12600,False,2026-04-21T04:28:37.508075+00:00 +2026-03-18,pre-commit-ci,128,False,2026-04-21T04:28:42.036067+00:00 +2026-03-18,semantic-release-bot,1009,False,2026-04-21T04:28:46.436754+00:00 +2026-03-18,allcontributors,25,False,2026-04-21T04:28:50.863642+00:00 +2026-03-18,github-actions,219395,False,2026-04-21T04:28:55.347852+00:00 +2026-03-19,Dependabot,24780,False,2026-04-21T04:28:59.779257+00:00 +2026-03-19,Renovate,16910,False,2026-04-21T04:29:04.359573+00:00 +2026-03-19,pre-commit-ci,122,False,2026-04-21T04:29:08.905704+00:00 +2026-03-19,semantic-release-bot,917,False,2026-04-21T04:29:13.347975+00:00 +2026-03-19,allcontributors,23,False,2026-04-21T04:29:17.876398+00:00 +2026-03-19,github-actions,233394,False,2026-04-21T04:29:22.381789+00:00 +2026-03-20,Dependabot,22304,False,2026-04-21T04:29:26.989884+00:00 +2026-03-20,Renovate,17940,False,2026-04-21T04:29:31.403721+00:00 +2026-03-20,pre-commit-ci,106,False,2026-04-21T04:29:35.945475+00:00 +2026-03-20,semantic-release-bot,920,False,2026-04-21T04:29:40.404361+00:00 +2026-03-20,allcontributors,15,False,2026-04-21T04:29:44.808162+00:00 +2026-03-20,github-actions,244340,False,2026-04-21T04:29:49.210251+00:00 +2026-03-21,Dependabot,17206,False,2026-04-21T04:29:53.716845+00:00 +2026-03-21,Renovate,11982,False,2026-04-21T04:29:58.925636+00:00 +2026-03-21,pre-commit-ci,38,False,2026-04-21T04:30:03.352709+00:00 +2026-03-21,semantic-release-bot,694,False,2026-04-21T04:30:07.811913+00:00 +2026-03-21,allcontributors,20,False,2026-04-21T04:30:12.219937+00:00 +2026-03-21,github-actions,254164,False,2026-04-21T04:30:16.716870+00:00 +2026-03-22,Dependabot,9118,False,2026-04-21T04:30:21.262068+00:00 +2026-03-22,Renovate,8343,False,2026-04-21T04:30:25.870056+00:00 +2026-03-22,pre-commit-ci,47,False,2026-04-21T04:30:30.353544+00:00 +2026-03-22,semantic-release-bot,848,False,2026-04-21T04:30:34.794933+00:00 +2026-03-22,allcontributors,51,False,2026-04-21T04:30:39.286167+00:00 +2026-03-22,github-actions,251277,False,2026-04-21T04:30:43.781998+00:00 +2026-03-23,Dependabot,37378,False,2026-04-21T04:30:48.398315+00:00 +2026-03-23,Renovate,18651,False,2026-04-21T04:30:53.006487+00:00 +2026-03-23,pre-commit-ci,938,False,2026-04-21T04:30:57.469876+00:00 +2026-03-23,semantic-release-bot,1132,False,2026-04-21T04:31:02.017563+00:00 +2026-03-23,allcontributors,18,False,2026-04-21T04:31:06.426197+00:00 +2026-03-23,github-actions,228869,False,2026-04-21T04:31:10.926378+00:00 +2026-03-24,Dependabot,20035,False,2026-04-21T04:31:15.377083+00:00 +2026-03-24,Renovate,13134,False,2026-04-21T04:31:19.922814+00:00 +2026-03-24,pre-commit-ci,296,False,2026-04-21T04:31:24.342142+00:00 +2026-03-24,semantic-release-bot,1132,False,2026-04-21T04:31:28.846509+00:00 +2026-03-24,allcontributors,16,False,2026-04-21T04:31:33.290408+00:00 +2026-03-24,github-actions,228522,False,2026-04-21T04:31:37.858094+00:00 +2026-03-25,Dependabot,22431,False,2026-04-21T04:31:42.328028+00:00 +2026-03-25,Renovate,13212,False,2026-04-21T04:31:46.862080+00:00 +2026-03-25,pre-commit-ci,102,False,2026-04-21T04:31:51.374664+00:00 +2026-03-25,semantic-release-bot,976,False,2026-04-21T04:31:55.837615+00:00 +2026-03-25,allcontributors,28,False,2026-04-21T04:32:00.281675+00:00 +2026-03-25,github-actions,230947,False,2026-04-21T04:32:04.789186+00:00 +2026-03-26,Dependabot,37087,False,2026-04-21T04:32:09.248101+00:00 +2026-03-26,Renovate,16727,False,2026-04-21T04:32:13.800671+00:00 +2026-03-26,pre-commit-ci,129,False,2026-04-21T04:32:18.304319+00:00 +2026-03-26,semantic-release-bot,1051,False,2026-04-21T04:32:22.746611+00:00 +2026-03-26,allcontributors,15,False,2026-04-21T04:32:27.168812+00:00 +2026-03-26,github-actions,226045,False,2026-04-21T04:32:31.645322+00:00 +2026-03-27,Dependabot,26531,False,2026-04-21T04:32:36.123919+00:00 +2026-03-27,Renovate,15866,False,2026-04-21T04:32:40.599714+00:00 +2026-03-27,pre-commit-ci,95,False,2026-04-21T04:32:45.135098+00:00 +2026-03-27,semantic-release-bot,972,False,2026-04-21T04:32:49.578286+00:00 +2026-03-27,allcontributors,19,False,2026-04-21T04:32:54.146560+00:00 +2026-03-27,github-actions,237964,False,2026-04-21T04:32:58.651950+00:00 +2026-03-28,Dependabot,13028,False,2026-04-21T04:33:03.260198+00:00 +2026-03-28,Renovate,10937,False,2026-04-21T04:33:07.868967+00:00 +2026-03-28,pre-commit-ci,33,False,2026-04-21T04:33:12.366920+00:00 +2026-03-28,semantic-release-bot,695,False,2026-04-21T04:33:16.841097+00:00 +2026-03-28,allcontributors,7,False,2026-04-21T04:33:21.384967+00:00 +2026-03-28,github-actions,256849,False,2026-04-21T04:33:25.803365+00:00 +2026-03-29,Dependabot,16729,False,2026-04-21T04:33:30.294940+00:00 +2026-03-29,Renovate,8996,False,2026-04-21T04:33:35.004243+00:00 +2026-03-29,pre-commit-ci,51,False,2026-04-21T04:33:39.407330+00:00 +2026-03-29,semantic-release-bot,796,False,2026-04-21T04:33:43.846075+00:00 +2026-03-29,allcontributors,29,False,2026-04-21T04:33:48.362893+00:00 +2026-03-29,github-actions,248280,False,2026-04-21T04:33:52.924518+00:00 +2026-03-30,Dependabot,42791,False,2026-04-21T04:33:57.429989+00:00 +2026-03-30,Renovate,16676,False,2026-04-21T04:34:01.935775+00:00 +2026-03-30,pre-commit-ci,979,False,2026-04-21T04:34:06.463697+00:00 +2026-03-30,semantic-release-bot,1032,False,2026-04-21T04:34:10.893683+00:00 +2026-03-30,allcontributors,17,False,2026-04-21T04:34:15.351148+00:00 +2026-03-30,github-actions,225616,False,2026-04-21T04:34:19.829863+00:00 +2026-03-31,Dependabot,21913,False,2026-04-21T04:34:24.294209+00:00 +2026-03-31,Renovate,14976,False,2026-04-21T04:34:28.870418+00:00 +2026-03-31,pre-commit-ci,316,False,2026-04-21T04:34:33.307982+00:00 +2026-03-31,semantic-release-bot,1002,False,2026-04-21T04:34:37.780509+00:00 +2026-03-31,allcontributors,19,False,2026-04-21T04:34:42.383998+00:00 +2026-03-31,github-actions,232588,False,2026-04-21T04:34:46.889584+00:00 +2026-04-01,Dependabot,28963,False,2026-04-21T04:34:51.348152+00:00 +2026-04-01,Renovate,18748,False,2026-04-21T04:34:55.904933+00:00 +2026-04-01,pre-commit-ci,182,False,2026-04-21T04:35:00.349078+00:00 +2026-04-01,semantic-release-bot,1054,False,2026-04-21T04:35:04.809781+00:00 +2026-04-01,allcontributors,41,False,2026-04-21T04:35:09.267871+00:00 +2026-04-01,github-actions,234881,False,2026-04-21T04:35:13.821071+00:00 +2026-04-02,Dependabot,26599,False,2026-04-21T04:35:18.301207+00:00 +2026-04-02,Renovate,13916,False,2026-04-21T04:35:22.736150+00:00 +2026-04-02,pre-commit-ci,112,False,2026-04-21T04:51:52.632055+00:00 +2026-04-02,semantic-release-bot,1105,False,2026-04-21T04:51:57.132225+00:00 +2026-04-02,allcontributors,21,False,2026-04-21T04:52:01.650493+00:00 +2026-04-02,github-actions,240181,False,2026-04-21T04:52:06.166594+00:00 +2026-04-03,Dependabot,18133,False,2026-04-21T04:52:10.801702+00:00 +2026-04-03,Renovate,13445,False,2026-04-21T04:52:15.614524+00:00 +2026-04-03,pre-commit-ci,97,False,2026-04-21T04:52:20.041270+00:00 +2026-04-03,semantic-release-bot,900,False,2026-04-21T04:52:24.441014+00:00 +2026-04-03,allcontributors,12,False,2026-04-21T04:52:28.880210+00:00 +2026-04-03,github-actions,253090,False,2026-04-21T04:52:33.325566+00:00 +2026-04-04,Dependabot,10899,False,2026-04-21T05:08:44.988783+00:00 +2026-04-04,Renovate,11267,False,2026-04-21T05:08:49.720308+00:00 +2026-04-04,pre-commit-ci,53,False,2026-04-21T05:08:54.234659+00:00 +2026-04-04,semantic-release-bot,748,False,2026-04-21T05:08:58.664909+00:00 +2026-04-04,allcontributors,16,False,2026-04-21T05:09:03.160237+00:00 +2026-04-04,github-actions,260417,False,2026-04-21T05:09:07.781194+00:00 +2026-04-05,Dependabot,8933,False,2026-04-21T05:09:12.256914+00:00 +2026-04-05,Renovate,8456,False,2026-04-21T05:09:16.797187+00:00 +2026-04-05,pre-commit-ci,42,False,2026-04-21T05:09:21.236780+00:00 +2026-04-05,semantic-release-bot,790,False,2026-04-21T05:09:25.743061+00:00 +2026-04-05,allcontributors,8,False,2026-04-21T05:09:30.233595+00:00 +2026-04-05,github-actions,257965,False,2026-04-21T05:09:34.734164+00:00 +2026-04-06,Dependabot,33509,False,2026-04-21T05:09:39.260963+00:00 +2026-04-06,Renovate,14418,False,2026-04-21T05:09:44.066743+00:00 +2026-04-06,pre-commit-ci,1999,False,2026-04-21T05:09:48.579877+00:00 +2026-04-06,semantic-release-bot,1012,False,2026-04-21T05:09:53.115273+00:00 +2026-04-06,allcontributors,24,False,2026-04-21T05:09:57.591262+00:00 +2026-04-06,github-actions,247128,False,2026-04-21T05:10:02.199229+00:00 +2026-04-07,Dependabot,24095,False,2026-04-21T05:10:07.046447+00:00 +2026-04-07,Renovate,15922,False,2026-04-21T05:15:09.412795+00:00 +2026-04-07,pre-commit-ci,686,False,2026-04-21T05:15:14.114791+00:00 +2026-04-07,semantic-release-bot,1045,False,2026-04-21T05:15:18.612374+00:00 +2026-04-07,allcontributors,21,False,2026-04-21T05:15:23.126488+00:00 +2026-04-07,github-actions,241169,False,2026-04-21T05:15:28.020878+00:00 +2026-04-08,Dependabot,30277,False,2026-04-21T05:15:32.760472+00:00 +2026-04-08,Renovate,17375,False,2026-04-21T05:15:37.360019+00:00 +2026-04-08,pre-commit-ci,179,False,2026-04-21T05:15:41.865809+00:00 +2026-04-08,semantic-release-bot,1105,False,2026-04-21T05:15:46.325024+00:00 +2026-04-08,allcontributors,26,False,2026-04-21T05:15:50.789464+00:00 +2026-04-08,github-actions,245031,False,2026-04-21T05:15:55.383882+00:00 +2026-04-09,Dependabot,21745,False,2026-04-21T05:15:59.843770+00:00 +2026-04-09,Renovate,15151,False,2026-04-21T05:16:04.296869+00:00 +2026-04-09,pre-commit-ci,106,False,2026-04-21T05:16:08.735199+00:00 +2026-04-09,semantic-release-bot,1035,False,2026-04-21T05:16:13.206931+00:00 +2026-04-09,allcontributors,22,False,2026-04-21T05:16:17.706676+00:00 +2026-04-09,github-actions,240051,False,2026-04-21T05:16:22.315194+00:00 diff --git a/branch_activity_daily.csv b/branch_activity_daily.csv new file mode 100644 index 0000000..e68c24a --- /dev/null +++ b/branch_activity_daily.csv @@ -0,0 +1,4456 @@ +date,agent,push_events,unique_repos,fetched_at +2026-03-01,Codex,13824,3675,2026-03-31T17:57:22.021824+00:00 +2026-03-01,Copilot,11575,3363,2026-03-31T17:57:22.021824+00:00 +2026-03-01,Claude Code,16607,4437,2026-03-31T17:57:22.021824+00:00 +2026-03-01,Cursor,917,263,2026-03-31T17:57:22.021824+00:00 +2026-03-01,Devin,289,69,2026-03-31T17:57:22.021824+00:00 +2026-03-01,Sweep,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-01,Codegen,11,5,2026-03-31T17:57:22.021824+00:00 +2026-03-01,Jules,55,20,2026-03-31T17:57:22.021824+00:00 +2026-03-01,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-01,OpenHands,3,2,2026-03-31T17:57:22.021824+00:00 +2026-03-01,Open SWE,1,1,2026-03-31T17:57:22.021824+00:00 +2026-03-02,Codex,14397,4183,2026-03-31T17:57:22.021824+00:00 +2026-03-02,Copilot,11117,3679,2026-03-31T17:57:22.021824+00:00 +2026-03-02,Claude Code,11877,3955,2026-03-31T17:57:22.021824+00:00 +2026-03-02,Cursor,1007,320,2026-03-31T17:57:22.021824+00:00 +2026-03-02,Devin,483,92,2026-03-31T17:57:22.021824+00:00 +2026-03-02,Sweep,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-02,Codegen,6,3,2026-03-31T17:57:22.021824+00:00 +2026-03-02,Jules,40,11,2026-03-31T17:57:22.021824+00:00 +2026-03-02,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-02,OpenHands,13,3,2026-03-31T17:57:22.021824+00:00 +2026-03-02,Open SWE,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-03,Codex,14790,4401,2026-03-31T17:57:22.021824+00:00 +2026-03-03,Copilot,11380,3939,2026-03-31T17:57:22.021824+00:00 +2026-03-03,Claude Code,13313,4192,2026-03-31T17:57:22.021824+00:00 +2026-03-03,Cursor,922,291,2026-03-31T17:57:22.021824+00:00 +2026-03-03,Devin,541,117,2026-03-31T17:57:22.021824+00:00 +2026-03-03,Sweep,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-03,Codegen,8,5,2026-03-31T17:57:22.021824+00:00 +2026-03-03,Jules,175,21,2026-03-31T17:57:22.021824+00:00 +2026-03-03,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-03,OpenHands,13,4,2026-03-31T17:57:22.021824+00:00 +2026-03-03,Open SWE,1,1,2026-03-31T17:57:22.021824+00:00 +2026-03-04,Codex,14487,4215,2026-03-31T17:57:22.021824+00:00 +2026-03-04,Copilot,10119,3592,2026-03-31T17:57:22.021824+00:00 +2026-03-04,Claude Code,16827,4687,2026-03-31T17:57:22.021824+00:00 +2026-03-04,Cursor,823,282,2026-03-31T17:57:22.021824+00:00 +2026-03-04,Devin,418,104,2026-03-31T17:57:22.021824+00:00 +2026-03-04,Sweep,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-04,Codegen,12,3,2026-03-31T17:57:22.021824+00:00 +2026-03-04,Jules,56,13,2026-03-31T17:57:22.021824+00:00 +2026-03-04,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-04,OpenHands,4,3,2026-03-31T17:57:22.021824+00:00 +2026-03-04,Open SWE,4,2,2026-03-31T17:57:22.021824+00:00 +2026-03-05,Codex,13921,4127,2026-03-31T17:57:22.021824+00:00 +2026-03-05,Copilot,9750,3719,2026-03-31T17:57:22.021824+00:00 +2026-03-05,Claude Code,17228,4786,2026-03-31T17:57:22.021824+00:00 +2026-03-05,Cursor,1089,339,2026-03-31T17:57:22.021824+00:00 +2026-03-05,Devin,482,117,2026-03-31T17:57:22.021824+00:00 +2026-03-05,Sweep,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-05,Codegen,4,3,2026-03-31T17:57:22.021824+00:00 +2026-03-05,Jules,44,18,2026-03-31T17:57:22.021824+00:00 +2026-03-05,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-05,OpenHands,13,6,2026-03-31T17:57:22.021824+00:00 +2026-03-05,Open SWE,20,4,2026-03-31T17:57:22.021824+00:00 +2026-03-06,Codex,14256,4185,2026-03-31T17:57:22.021824+00:00 +2026-03-06,Copilot,10761,3792,2026-03-31T17:57:22.021824+00:00 +2026-03-06,Claude Code,17795,4830,2026-03-31T17:57:22.021824+00:00 +2026-03-06,Cursor,970,367,2026-03-31T17:57:22.021824+00:00 +2026-03-06,Devin,561,99,2026-03-31T17:57:22.021824+00:00 +2026-03-06,Sweep,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-06,Codegen,9,6,2026-03-31T17:57:22.021824+00:00 +2026-03-06,Jules,42,17,2026-03-31T17:57:22.021824+00:00 +2026-03-06,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-06,OpenHands,19,5,2026-03-31T17:57:22.021824+00:00 +2026-03-06,Open SWE,3,1,2026-03-31T17:57:22.021824+00:00 +2026-03-07,Codex,13376,3792,2026-03-31T17:57:22.021824+00:00 +2026-03-07,Copilot,11355,3456,2026-03-31T17:57:22.021824+00:00 +2026-03-07,Claude Code,19838,5012,2026-03-31T17:57:22.021824+00:00 +2026-03-07,Cursor,951,286,2026-03-31T17:57:22.021824+00:00 +2026-03-07,Devin,364,75,2026-03-31T17:57:22.021824+00:00 +2026-03-07,Sweep,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-07,Codegen,1,1,2026-03-31T17:57:22.021824+00:00 +2026-03-07,Jules,56,23,2026-03-31T17:57:22.021824+00:00 +2026-03-07,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-07,OpenHands,3,1,2026-03-31T17:57:22.021824+00:00 +2026-03-07,Open SWE,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-08,Codex,13301,3671,2026-03-31T17:57:22.021824+00:00 +2026-03-08,Copilot,10772,3316,2026-03-31T17:57:22.021824+00:00 +2026-03-08,Claude Code,20304,5048,2026-03-31T17:57:22.021824+00:00 +2026-03-08,Cursor,983,293,2026-03-31T17:57:22.021824+00:00 +2026-03-08,Devin,383,90,2026-03-31T17:57:22.021824+00:00 +2026-03-08,Sweep,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-08,Codegen,6,1,2026-03-31T17:57:22.021824+00:00 +2026-03-08,Jules,23,13,2026-03-31T17:57:22.021824+00:00 +2026-03-08,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-08,OpenHands,11,5,2026-03-31T17:57:22.021824+00:00 +2026-03-08,Open SWE,10,3,2026-03-31T17:57:22.021824+00:00 +2026-03-09,Codex,13590,4226,2026-03-31T17:57:22.021824+00:00 +2026-03-09,Copilot,10750,3862,2026-03-31T17:57:22.021824+00:00 +2026-03-09,Claude Code,19980,5388,2026-03-31T17:57:22.021824+00:00 +2026-03-09,Cursor,872,304,2026-03-31T17:57:22.021824+00:00 +2026-03-09,Devin,462,117,2026-03-31T17:57:22.021824+00:00 +2026-03-09,Sweep,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-09,Codegen,6,3,2026-03-31T17:57:22.021824+00:00 +2026-03-09,Jules,11,7,2026-03-31T17:57:22.021824+00:00 +2026-03-09,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-09,OpenHands,10,4,2026-03-31T17:57:22.021824+00:00 +2026-03-09,Open SWE,12,3,2026-03-31T17:57:22.021824+00:00 +2026-03-10,Codex,13885,4388,2026-03-31T17:57:22.021824+00:00 +2026-03-10,Copilot,12190,4124,2026-03-31T17:57:22.021824+00:00 +2026-03-10,Claude Code,18511,5285,2026-03-31T17:57:22.021824+00:00 +2026-03-10,Cursor,948,309,2026-03-31T17:57:22.021824+00:00 +2026-03-10,Devin,586,120,2026-03-31T17:57:22.021824+00:00 +2026-03-10,Sweep,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-10,Codegen,13,3,2026-03-31T17:57:22.021824+00:00 +2026-03-10,Jules,44,19,2026-03-31T17:57:22.021824+00:00 +2026-03-10,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-10,OpenHands,6,3,2026-03-31T17:57:22.021824+00:00 +2026-03-10,Open SWE,8,2,2026-03-31T17:57:22.021824+00:00 +2026-03-11,Codex,14135,4471,2026-03-31T17:57:22.021824+00:00 +2026-03-11,Copilot,12097,4062,2026-03-31T17:57:22.021824+00:00 +2026-03-11,Claude Code,18808,5265,2026-03-31T17:57:22.021824+00:00 +2026-03-11,Cursor,922,303,2026-03-31T17:57:22.021824+00:00 +2026-03-11,Devin,507,124,2026-03-31T17:57:22.021824+00:00 +2026-03-11,Sweep,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-11,Codegen,8,2,2026-03-31T17:57:22.021824+00:00 +2026-03-11,Jules,28,15,2026-03-31T17:57:22.021824+00:00 +2026-03-11,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-11,OpenHands,2,1,2026-03-31T17:57:22.021824+00:00 +2026-03-11,Open SWE,17,3,2026-03-31T17:57:22.021824+00:00 +2026-03-12,Codex,13832,4387,2026-03-31T17:57:22.021824+00:00 +2026-03-12,Copilot,10487,3909,2026-03-31T17:57:22.021824+00:00 +2026-03-12,Claude Code,18026,5266,2026-03-31T17:57:22.021824+00:00 +2026-03-12,Cursor,876,268,2026-03-31T17:57:22.021824+00:00 +2026-03-12,Devin,482,124,2026-03-31T17:57:22.021824+00:00 +2026-03-12,Sweep,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-12,Codegen,18,5,2026-03-31T17:57:22.021824+00:00 +2026-03-12,Jules,29,17,2026-03-31T17:57:22.021824+00:00 +2026-03-12,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-12,OpenHands,1,1,2026-03-31T17:57:22.021824+00:00 +2026-03-12,Open SWE,25,2,2026-03-31T17:57:22.021824+00:00 +2026-03-13,Codex,13390,4134,2026-03-31T17:57:22.021824+00:00 +2026-03-13,Copilot,10639,3894,2026-03-31T17:57:22.021824+00:00 +2026-03-13,Claude Code,18439,5423,2026-03-31T17:57:22.021824+00:00 +2026-03-13,Cursor,1047,330,2026-03-31T17:57:22.021824+00:00 +2026-03-13,Devin,440,115,2026-03-31T17:57:22.021824+00:00 +2026-03-13,Sweep,5,1,2026-03-31T17:57:22.021824+00:00 +2026-03-13,Codegen,22,4,2026-03-31T17:57:22.021824+00:00 +2026-03-13,Jules,16,13,2026-03-31T17:57:22.021824+00:00 +2026-03-13,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-13,OpenHands,2,1,2026-03-31T17:57:22.021824+00:00 +2026-03-13,Open SWE,2,1,2026-03-31T17:57:22.021824+00:00 +2026-03-14,Codex,12653,3572,2026-03-31T17:57:22.021824+00:00 +2026-03-14,Copilot,11181,3551,2026-03-31T17:57:22.021824+00:00 +2026-03-14,Claude Code,21256,5370,2026-03-31T17:57:22.021824+00:00 +2026-03-14,Cursor,999,263,2026-03-31T17:57:22.021824+00:00 +2026-03-14,Devin,290,79,2026-03-31T17:57:22.021824+00:00 +2026-03-14,Sweep,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-14,Codegen,3,2,2026-03-31T17:57:22.021824+00:00 +2026-03-14,Jules,25,16,2026-03-31T17:57:22.021824+00:00 +2026-03-14,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-14,OpenHands,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-14,Open SWE,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-15,Codex,12188,3504,2026-03-31T17:57:22.021824+00:00 +2026-03-15,Copilot,11282,3568,2026-03-31T17:57:22.021824+00:00 +2026-03-15,Claude Code,25342,6066,2026-03-31T17:57:22.021824+00:00 +2026-03-15,Cursor,1194,280,2026-03-31T17:57:22.021824+00:00 +2026-03-15,Devin,270,80,2026-03-31T17:57:22.021824+00:00 +2026-03-15,Sweep,1,1,2026-03-31T17:57:22.021824+00:00 +2026-03-15,Codegen,4,3,2026-03-31T17:57:22.021824+00:00 +2026-03-15,Jules,30,13,2026-03-31T17:57:22.021824+00:00 +2026-03-15,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-15,OpenHands,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-15,Open SWE,6,1,2026-03-31T17:57:22.021824+00:00 +2026-03-16,Codex,12192,3855,2026-03-31T17:57:22.021824+00:00 +2026-03-16,Copilot,10430,3916,2026-03-31T17:57:22.021824+00:00 +2026-03-16,Claude Code,24419,6513,2026-03-31T17:57:22.021824+00:00 +2026-03-16,Cursor,1201,362,2026-03-31T17:57:22.021824+00:00 +2026-03-16,Devin,385,109,2026-03-31T17:57:22.021824+00:00 +2026-03-16,Sweep,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-16,Codegen,9,4,2026-03-31T17:57:22.021824+00:00 +2026-03-16,Jules,21,16,2026-03-31T17:57:22.021824+00:00 +2026-03-16,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-16,OpenHands,7,3,2026-03-31T17:57:22.021824+00:00 +2026-03-16,Open SWE,11,1,2026-03-31T17:57:22.021824+00:00 +2026-03-17,Codex,12023,3837,2026-03-31T17:57:22.021824+00:00 +2026-03-17,Copilot,10231,3876,2026-03-31T17:57:22.021824+00:00 +2026-03-17,Claude Code,23178,6312,2026-03-31T17:57:22.021824+00:00 +2026-03-17,Cursor,1335,374,2026-03-31T17:57:22.021824+00:00 +2026-03-17,Devin,431,116,2026-03-31T17:57:22.021824+00:00 +2026-03-17,Sweep,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-17,Codegen,4,3,2026-03-31T17:57:22.021824+00:00 +2026-03-17,Jules,19,12,2026-03-31T17:57:22.021824+00:00 +2026-03-17,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-17,OpenHands,8,2,2026-03-31T17:57:22.021824+00:00 +2026-03-17,Open SWE,10,5,2026-03-31T17:57:22.021824+00:00 +2026-03-18,Codex,11959,3670,2026-03-31T17:57:22.021824+00:00 +2026-03-18,Copilot,9921,3735,2026-03-31T17:57:22.021824+00:00 +2026-03-18,Claude Code,22867,6228,2026-03-31T17:57:22.021824+00:00 +2026-03-18,Cursor,1126,316,2026-03-31T17:57:22.021824+00:00 +2026-03-18,Devin,468,140,2026-03-31T17:57:22.021824+00:00 +2026-03-18,Sweep,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-18,Codegen,10,1,2026-03-31T17:57:22.021824+00:00 +2026-03-18,Jules,29,12,2026-03-31T17:57:22.021824+00:00 +2026-03-18,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-18,OpenHands,3,3,2026-03-31T17:57:22.021824+00:00 +2026-03-18,Open SWE,9,5,2026-03-31T17:57:22.021824+00:00 +2026-03-19,Codex,12884,3708,2026-03-31T17:57:22.021824+00:00 +2026-03-19,Copilot,9339,3563,2026-03-31T17:57:22.021824+00:00 +2026-03-19,Claude Code,21433,5813,2026-03-31T17:57:22.021824+00:00 +2026-03-19,Cursor,1202,351,2026-03-31T17:57:22.021824+00:00 +2026-03-19,Devin,507,125,2026-03-31T17:57:22.021824+00:00 +2026-03-19,Sweep,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-19,Codegen,11,5,2026-03-31T17:57:22.021824+00:00 +2026-03-19,Jules,29,14,2026-03-31T17:57:22.021824+00:00 +2026-03-19,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-19,OpenHands,15,6,2026-03-31T17:57:22.021824+00:00 +2026-03-19,Open SWE,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-20,Codex,11223,3392,2026-03-31T17:57:22.021824+00:00 +2026-03-20,Copilot,9400,3532,2026-03-31T17:57:22.021824+00:00 +2026-03-20,Claude Code,21145,5907,2026-03-31T17:57:22.021824+00:00 +2026-03-20,Cursor,1275,343,2026-03-31T17:57:22.021824+00:00 +2026-03-20,Devin,452,122,2026-03-31T17:57:22.021824+00:00 +2026-03-20,Sweep,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-20,Codegen,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-20,Jules,40,14,2026-03-31T17:57:22.021824+00:00 +2026-03-20,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-20,OpenHands,2,2,2026-03-31T17:57:22.021824+00:00 +2026-03-20,Open SWE,3,2,2026-03-31T17:57:22.021824+00:00 +2026-03-21,Codex,10929,3080,2026-03-31T17:57:22.021824+00:00 +2026-03-21,Copilot,8904,3027,2026-03-31T17:57:22.021824+00:00 +2026-03-21,Claude Code,24240,5862,2026-03-31T17:57:22.021824+00:00 +2026-03-21,Cursor,999,273,2026-03-31T17:57:22.021824+00:00 +2026-03-21,Devin,336,80,2026-03-31T17:57:22.021824+00:00 +2026-03-21,Sweep,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-21,Codegen,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-21,Jules,79,17,2026-03-31T17:57:22.021824+00:00 +2026-03-21,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-21,OpenHands,3,3,2026-03-31T17:57:22.021824+00:00 +2026-03-21,Open SWE,1,1,2026-03-31T17:57:22.021824+00:00 +2026-03-22,Codex,11272,3104,2026-03-31T17:57:22.021824+00:00 +2026-03-22,Copilot,9162,3019,2026-03-31T17:57:22.021824+00:00 +2026-03-22,Claude Code,26783,6169,2026-03-31T17:57:22.021824+00:00 +2026-03-22,Cursor,957,275,2026-03-31T17:57:22.021824+00:00 +2026-03-22,Devin,476,95,2026-03-31T17:57:22.021824+00:00 +2026-03-22,Sweep,2,1,2026-03-31T17:57:22.021824+00:00 +2026-03-22,Codegen,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-22,Jules,11,9,2026-03-31T17:57:22.021824+00:00 +2026-03-22,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-22,OpenHands,5,2,2026-03-31T17:57:22.021824+00:00 +2026-03-22,Open SWE,1,1,2026-03-31T17:57:22.021824+00:00 +2026-03-23,Codex,12272,3691,2026-03-31T17:57:22.021824+00:00 +2026-03-23,Copilot,9801,3630,2026-03-31T17:57:22.021824+00:00 +2026-03-23,Claude Code,24535,6391,2026-03-31T17:57:22.021824+00:00 +2026-03-23,Cursor,1102,370,2026-03-31T17:57:22.021824+00:00 +2026-03-23,Devin,479,127,2026-03-31T17:57:22.021824+00:00 +2026-03-23,Sweep,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-23,Codegen,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-23,Jules,105,24,2026-03-31T17:57:22.021824+00:00 +2026-03-23,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-23,OpenHands,15,5,2026-03-31T17:57:22.021824+00:00 +2026-03-23,Open SWE,7,3,2026-03-31T17:57:22.021824+00:00 +2026-03-24,Codex,13011,3869,2026-03-31T17:57:22.021824+00:00 +2026-03-24,Copilot,9868,3791,2026-03-31T17:57:22.021824+00:00 +2026-03-24,Claude Code,24904,6522,2026-03-31T17:57:22.021824+00:00 +2026-03-24,Cursor,969,315,2026-03-31T17:57:22.021824+00:00 +2026-03-24,Devin,431,124,2026-03-31T17:57:22.021824+00:00 +2026-03-24,Sweep,3,2,2026-03-31T17:57:22.021824+00:00 +2026-03-24,Codegen,6,1,2026-03-31T17:57:22.021824+00:00 +2026-03-24,Jules,55,23,2026-03-31T17:57:22.021824+00:00 +2026-03-24,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-24,OpenHands,8,3,2026-03-31T17:57:22.021824+00:00 +2026-03-24,Open SWE,10,4,2026-03-31T17:57:22.021824+00:00 +2026-03-25,Codex,12720,3872,2026-03-31T17:57:22.021824+00:00 +2026-03-25,Copilot,10141,3774,2026-03-31T17:57:22.021824+00:00 +2026-03-25,Claude Code,24076,6536,2026-03-31T17:57:22.021824+00:00 +2026-03-25,Cursor,952,303,2026-03-31T17:57:22.021824+00:00 +2026-03-25,Devin,533,133,2026-03-31T17:57:22.021824+00:00 +2026-03-25,Sweep,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-25,Codegen,1,1,2026-03-31T17:57:22.021824+00:00 +2026-03-25,Jules,45,21,2026-03-31T17:57:22.021824+00:00 +2026-03-25,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-25,OpenHands,4,4,2026-03-31T17:57:22.021824+00:00 +2026-03-25,Open SWE,14,4,2026-03-31T17:57:22.021824+00:00 +2026-03-26,Codex,12366,3782,2026-03-31T17:57:22.021824+00:00 +2026-03-26,Copilot,9457,3614,2026-03-31T17:57:22.021824+00:00 +2026-03-26,Claude Code,23284,6356,2026-03-31T17:57:22.021824+00:00 +2026-03-26,Cursor,1113,365,2026-03-31T17:57:22.021824+00:00 +2026-03-26,Devin,434,127,2026-03-31T17:57:22.021824+00:00 +2026-03-26,Sweep,1,1,2026-03-31T17:57:22.021824+00:00 +2026-03-26,Codegen,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-26,Jules,40,18,2026-03-31T17:57:22.021824+00:00 +2026-03-26,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-26,OpenHands,7,5,2026-03-31T17:57:22.021824+00:00 +2026-03-26,Open SWE,7,3,2026-03-31T17:57:22.021824+00:00 +2026-03-27,Codex,12184,3697,2026-03-31T17:57:22.021824+00:00 +2026-03-27,Copilot,8465,3193,2026-03-31T17:57:22.021824+00:00 +2026-03-27,Claude Code,22298,6063,2026-03-31T17:57:22.021824+00:00 +2026-03-27,Cursor,878,288,2026-03-31T17:57:22.021824+00:00 +2026-03-27,Devin,362,110,2026-03-31T17:57:22.021824+00:00 +2026-03-27,Sweep,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-27,Codegen,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-27,Jules,38,19,2026-03-31T17:57:22.021824+00:00 +2026-03-27,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-27,OpenHands,14,7,2026-03-31T17:57:22.021824+00:00 +2026-03-27,Open SWE,1,1,2026-03-31T17:57:22.021824+00:00 +2026-03-28,Codex,11792,3314,2026-03-31T17:57:22.021824+00:00 +2026-03-28,Copilot,8642,2943,2026-03-31T17:57:22.021824+00:00 +2026-03-28,Claude Code,24690,6073,2026-03-31T17:57:22.021824+00:00 +2026-03-28,Cursor,798,250,2026-03-31T17:57:22.021824+00:00 +2026-03-28,Devin,321,90,2026-03-31T17:57:22.021824+00:00 +2026-03-28,Sweep,1,1,2026-03-31T17:57:22.021824+00:00 +2026-03-28,Codegen,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-28,Jules,20,14,2026-03-31T17:57:22.021824+00:00 +2026-03-28,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-28,OpenHands,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-28,Open SWE,4,3,2026-03-31T17:57:22.021824+00:00 +2026-03-29,Codex,12536,3370,2026-03-31T17:57:22.021824+00:00 +2026-03-29,Copilot,8969,2926,2026-03-31T17:57:22.021824+00:00 +2026-03-29,Claude Code,22366,5808,2026-03-31T17:57:22.021824+00:00 +2026-03-29,Cursor,777,261,2026-03-31T17:57:22.021824+00:00 +2026-03-29,Devin,334,89,2026-03-31T17:57:22.021824+00:00 +2026-03-29,Sweep,4,1,2026-03-31T17:57:22.021824+00:00 +2026-03-29,Codegen,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-29,Jules,17,9,2026-03-31T17:57:22.021824+00:00 +2026-03-29,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-29,OpenHands,3,3,2026-03-31T17:57:22.021824+00:00 +2026-03-29,Open SWE,5,3,2026-03-31T17:57:22.021824+00:00 +2026-03-30,Codex,12765,3964,2026-03-31T17:57:22.021824+00:00 +2026-03-30,Copilot,9489,3543,2026-03-31T17:57:22.021824+00:00 +2026-03-30,Claude Code,21392,6190,2026-03-31T17:57:22.021824+00:00 +2026-03-30,Cursor,984,337,2026-03-31T17:57:22.021824+00:00 +2026-03-30,Devin,418,112,2026-03-31T17:57:22.021824+00:00 +2026-03-30,Sweep,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-30,Codegen,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-30,Jules,30,15,2026-03-31T17:57:22.021824+00:00 +2026-03-30,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-30,OpenHands,11,7,2026-03-31T17:57:22.021824+00:00 +2026-03-30,Open SWE,14,3,2026-03-31T17:57:22.021824+00:00 +2026-03-31,Codex,8878,3042,2026-03-31T17:57:22.021824+00:00 +2026-03-31,Copilot,6843,2798,2026-03-31T17:57:22.021824+00:00 +2026-03-31,Claude Code,14499,4775,2026-03-31T17:57:22.021824+00:00 +2026-03-31,Cursor,686,226,2026-03-31T17:57:22.021824+00:00 +2026-03-31,Devin,314,91,2026-03-31T17:57:22.021824+00:00 +2026-03-31,Sweep,4,1,2026-03-31T17:57:22.021824+00:00 +2026-03-31,Codegen,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-31,Jules,14,9,2026-03-31T17:57:22.021824+00:00 +2026-03-31,Gru,0,0,2026-03-31T17:57:22.021824+00:00 +2026-03-31,OpenHands,5,3,2026-03-31T17:57:22.021824+00:00 +2026-03-31,Open SWE,25,4,2026-03-31T17:57:22.021824+00:00 +2026-01-01,Codex,6335,1343,2026-03-31T17:58:12.563502+00:00 +2026-01-01,Copilot,12246,2264,2026-03-31T17:58:12.563502+00:00 +2026-01-01,Claude Code,11244,2151,2026-03-31T17:58:12.563502+00:00 +2026-01-01,Cursor,1303,191,2026-03-31T17:58:12.563502+00:00 +2026-01-01,Devin,198,34,2026-03-31T17:58:12.563502+00:00 +2026-01-01,Sweep,0,0,2026-03-31T17:58:12.563502+00:00 +2026-01-01,Codegen,1,1,2026-03-31T17:58:12.563502+00:00 +2026-01-01,Jules,54,22,2026-03-31T17:58:12.563502+00:00 +2026-01-01,Gru,0,0,2026-03-31T17:58:12.563502+00:00 +2026-01-01,OpenHands,1,1,2026-03-31T17:58:12.563502+00:00 +2026-01-01,Open SWE,0,0,2026-03-31T17:58:12.563502+00:00 +2026-04-01,Codex,12057,3805,2026-04-09T23:08:52.091544+00:00 +2026-04-01,Copilot,8887,3529,2026-04-09T23:08:52.091544+00:00 +2026-04-01,Claude Code,19024,5855,2026-04-09T23:08:52.091544+00:00 +2026-04-01,Cursor,902,308,2026-04-09T23:08:52.091544+00:00 +2026-04-01,Devin,499,149,2026-04-09T23:08:52.091544+00:00 +2026-04-01,Sweep,5,2,2026-04-09T23:08:52.091544+00:00 +2026-04-01,Codegen,0,0,2026-04-09T23:08:52.091544+00:00 +2026-04-01,Jules,19,12,2026-04-09T23:08:52.091544+00:00 +2026-04-01,Gru,0,0,2026-04-09T23:08:52.091544+00:00 +2026-04-01,OpenHands,16,6,2026-04-09T23:08:52.091544+00:00 +2026-04-01,Open SWE,2,2,2026-04-09T23:08:52.091544+00:00 +2026-04-02,Codex,12243,3745,2026-04-09T23:08:52.091544+00:00 +2026-04-02,Copilot,8895,3415,2026-04-09T23:08:52.091544+00:00 +2026-04-02,Claude Code,18389,5555,2026-04-09T23:08:52.091544+00:00 +2026-04-02,Cursor,900,295,2026-04-09T23:08:52.091544+00:00 +2026-04-02,Devin,432,135,2026-04-09T23:08:52.091544+00:00 +2026-04-02,Sweep,0,0,2026-04-09T23:08:52.091544+00:00 +2026-04-02,Codegen,0,0,2026-04-09T23:08:52.091544+00:00 +2026-04-02,Jules,27,12,2026-04-09T23:08:52.091544+00:00 +2026-04-02,Gru,0,0,2026-04-09T23:08:52.091544+00:00 +2026-04-02,OpenHands,5,3,2026-04-09T23:08:52.091544+00:00 +2026-04-02,Open SWE,0,0,2026-04-09T23:08:52.091544+00:00 +2026-04-03,Codex,11936,3647,2026-04-09T23:08:52.091544+00:00 +2026-04-03,Copilot,10644,3546,2026-04-09T23:08:52.091544+00:00 +2026-04-03,Claude Code,19315,5537,2026-04-09T23:08:52.091544+00:00 +2026-04-03,Cursor,907,314,2026-04-09T23:08:52.091544+00:00 +2026-04-03,Devin,591,138,2026-04-09T23:08:52.091544+00:00 +2026-04-03,Sweep,2,1,2026-04-09T23:08:52.091544+00:00 +2026-04-03,Codegen,0,0,2026-04-09T23:08:52.091544+00:00 +2026-04-03,Jules,32,19,2026-04-09T23:08:52.091544+00:00 +2026-04-03,Gru,0,0,2026-04-09T23:08:52.091544+00:00 +2026-04-03,OpenHands,11,6,2026-04-09T23:08:52.091544+00:00 +2026-04-03,Open SWE,1,1,2026-04-09T23:08:52.091544+00:00 +2026-04-04,Codex,11601,3227,2026-04-09T23:08:52.091544+00:00 +2026-04-04,Copilot,11536,3346,2026-04-09T23:08:52.091544+00:00 +2026-04-04,Claude Code,21694,5708,2026-04-09T23:08:52.091544+00:00 +2026-04-04,Cursor,1072,328,2026-04-09T23:08:52.091544+00:00 +2026-04-04,Devin,344,89,2026-04-09T23:08:52.091544+00:00 +2026-04-04,Sweep,0,0,2026-04-09T23:08:52.091544+00:00 +2026-04-04,Codegen,0,0,2026-04-09T23:08:52.091544+00:00 +2026-04-04,Jules,47,19,2026-04-09T23:08:52.091544+00:00 +2026-04-04,Gru,0,0,2026-04-09T23:08:52.091544+00:00 +2026-04-04,OpenHands,8,5,2026-04-09T23:08:52.091544+00:00 +2026-04-04,Open SWE,3,1,2026-04-09T23:08:52.091544+00:00 +2026-04-05,Codex,11346,2965,2026-04-09T23:08:52.091544+00:00 +2026-04-05,Copilot,10851,3191,2026-04-09T23:08:52.091544+00:00 +2026-04-05,Claude Code,21066,5645,2026-04-09T23:08:52.091544+00:00 +2026-04-05,Cursor,1220,317,2026-04-09T23:08:52.091544+00:00 +2026-04-05,Devin,379,82,2026-04-09T23:08:52.091544+00:00 +2026-04-05,Sweep,1,1,2026-04-09T23:08:52.091544+00:00 +2026-04-05,Codegen,0,0,2026-04-09T23:08:52.091544+00:00 +2026-04-05,Jules,11,6,2026-04-09T23:08:52.091544+00:00 +2026-04-05,Gru,0,0,2026-04-09T23:08:52.091544+00:00 +2026-04-05,OpenHands,5,1,2026-04-09T23:08:52.091544+00:00 +2026-04-05,Open SWE,4,1,2026-04-09T23:08:52.091544+00:00 +2026-04-06,Codex,10559,3363,2026-04-09T23:08:52.091544+00:00 +2026-04-06,Copilot,10327,3463,2026-04-09T23:08:52.091544+00:00 +2026-04-06,Claude Code,20054,5971,2026-04-09T23:08:52.091544+00:00 +2026-04-06,Cursor,1052,332,2026-04-09T23:08:52.091544+00:00 +2026-04-06,Devin,406,124,2026-04-09T23:08:52.091544+00:00 +2026-04-06,Sweep,3,1,2026-04-09T23:08:52.091544+00:00 +2026-04-06,Codegen,0,0,2026-04-09T23:08:52.091544+00:00 +2026-04-06,Jules,22,9,2026-04-09T23:08:52.091544+00:00 +2026-04-06,Gru,0,0,2026-04-09T23:08:52.091544+00:00 +2026-04-06,OpenHands,6,5,2026-04-09T23:08:52.091544+00:00 +2026-04-06,Open SWE,4,3,2026-04-09T23:08:52.091544+00:00 +2026-04-07,Codex,10771,3602,2026-04-09T23:08:52.091544+00:00 +2026-04-07,Copilot,10678,3800,2026-04-09T23:08:52.091544+00:00 +2026-04-07,Claude Code,19377,5938,2026-04-09T23:08:52.091544+00:00 +2026-04-07,Cursor,1214,387,2026-04-09T23:08:52.091544+00:00 +2026-04-07,Devin,583,146,2026-04-09T23:08:52.091544+00:00 +2026-04-07,Sweep,1,1,2026-04-09T23:08:52.091544+00:00 +2026-04-07,Codegen,0,0,2026-04-09T23:08:52.091544+00:00 +2026-04-07,Jules,32,14,2026-04-09T23:08:52.091544+00:00 +2026-04-07,Gru,0,0,2026-04-09T23:08:52.091544+00:00 +2026-04-07,OpenHands,1,1,2026-04-09T23:08:52.091544+00:00 +2026-04-07,Open SWE,13,3,2026-04-09T23:08:52.091544+00:00 +2026-04-08,Codex,11652,3899,2026-04-09T23:08:52.091544+00:00 +2026-04-08,Copilot,10521,3748,2026-04-09T23:08:52.091544+00:00 +2026-04-08,Claude Code,17970,5805,2026-04-09T23:08:52.091544+00:00 +2026-04-08,Cursor,992,362,2026-04-09T23:08:52.091544+00:00 +2026-04-08,Devin,487,141,2026-04-09T23:08:52.091544+00:00 +2026-04-08,Sweep,2,1,2026-04-09T23:08:52.091544+00:00 +2026-04-08,Codegen,0,0,2026-04-09T23:08:52.091544+00:00 +2026-04-08,Jules,15,9,2026-04-09T23:08:52.091544+00:00 +2026-04-08,Gru,0,0,2026-04-09T23:08:52.091544+00:00 +2026-04-08,OpenHands,7,5,2026-04-09T23:08:52.091544+00:00 +2026-04-08,Open SWE,11,2,2026-04-09T23:08:52.091544+00:00 +2025-07-01,Codex,8773,2258,2026-04-09T23:12:44.115873+00:00 +2025-07-01,Copilot,2061,612,2026-04-09T23:12:44.115873+00:00 +2025-07-01,Claude Code,189,41,2026-04-09T23:12:44.115873+00:00 +2025-07-01,Cursor,1142,415,2026-04-09T23:12:44.115873+00:00 +2025-07-01,Devin,184,52,2026-04-09T23:12:44.115873+00:00 +2025-07-01,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-01,Codegen,23,8,2026-04-09T23:12:44.115873+00:00 +2025-07-01,Jules,47,13,2026-04-09T23:12:44.115873+00:00 +2025-07-01,Gru,4,1,2026-04-09T23:12:44.115873+00:00 +2025-07-01,OpenHands,4,1,2026-04-09T23:12:44.115873+00:00 +2025-07-01,Open SWE,12,3,2026-04-09T23:12:44.115873+00:00 +2025-07-02,Codex,9261,2270,2026-04-09T23:12:44.115873+00:00 +2025-07-02,Copilot,2064,581,2026-04-09T23:12:44.115873+00:00 +2025-07-02,Claude Code,211,42,2026-04-09T23:12:44.115873+00:00 +2025-07-02,Cursor,1138,394,2026-04-09T23:12:44.115873+00:00 +2025-07-02,Devin,250,63,2026-04-09T23:12:44.115873+00:00 +2025-07-02,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-02,Codegen,14,8,2026-04-09T23:12:44.115873+00:00 +2025-07-02,Jules,64,20,2026-04-09T23:12:44.115873+00:00 +2025-07-02,Gru,3,2,2026-04-09T23:12:44.115873+00:00 +2025-07-02,OpenHands,2,1,2026-04-09T23:12:44.115873+00:00 +2025-07-02,Open SWE,12,4,2026-04-09T23:12:44.115873+00:00 +2025-07-03,Codex,9170,2220,2026-04-09T23:12:44.115873+00:00 +2025-07-03,Copilot,2319,660,2026-04-09T23:12:44.115873+00:00 +2025-07-03,Claude Code,142,49,2026-04-09T23:12:44.115873+00:00 +2025-07-03,Cursor,1236,412,2026-04-09T23:12:44.115873+00:00 +2025-07-03,Devin,266,71,2026-04-09T23:12:44.115873+00:00 +2025-07-03,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-03,Codegen,3,3,2026-04-09T23:12:44.115873+00:00 +2025-07-03,Jules,52,20,2026-04-09T23:12:44.115873+00:00 +2025-07-03,Gru,4,2,2026-04-09T23:12:44.115873+00:00 +2025-07-03,OpenHands,6,2,2026-04-09T23:12:44.115873+00:00 +2025-07-03,Open SWE,32,4,2026-04-09T23:12:44.115873+00:00 +2025-07-04,Codex,9151,2137,2026-04-09T23:12:44.115873+00:00 +2025-07-04,Copilot,2312,741,2026-04-09T23:12:44.115873+00:00 +2025-07-04,Claude Code,105,37,2026-04-09T23:12:44.115873+00:00 +2025-07-04,Cursor,1456,462,2026-04-09T23:12:44.115873+00:00 +2025-07-04,Devin,280,58,2026-04-09T23:12:44.115873+00:00 +2025-07-04,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-04,Codegen,14,6,2026-04-09T23:12:44.115873+00:00 +2025-07-04,Jules,54,26,2026-04-09T23:12:44.115873+00:00 +2025-07-04,Gru,2,1,2026-04-09T23:12:44.115873+00:00 +2025-07-04,OpenHands,2,1,2026-04-09T23:12:44.115873+00:00 +2025-07-04,Open SWE,25,1,2026-04-09T23:12:44.115873+00:00 +2025-07-05,Codex,9713,1916,2026-04-09T23:12:44.115873+00:00 +2025-07-05,Copilot,1800,499,2026-04-09T23:12:44.115873+00:00 +2025-07-05,Claude Code,99,29,2026-04-09T23:12:44.115873+00:00 +2025-07-05,Cursor,1543,446,2026-04-09T23:12:44.115873+00:00 +2025-07-05,Devin,147,39,2026-04-09T23:12:44.115873+00:00 +2025-07-05,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-05,Codegen,4,1,2026-04-09T23:12:44.115873+00:00 +2025-07-05,Jules,58,15,2026-04-09T23:12:44.115873+00:00 +2025-07-05,Gru,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-05,OpenHands,18,2,2026-04-09T23:12:44.115873+00:00 +2025-07-05,Open SWE,1,1,2026-04-09T23:12:44.115873+00:00 +2025-07-06,Codex,9820,1946,2026-04-09T23:12:44.115873+00:00 +2025-07-06,Copilot,1615,452,2026-04-09T23:12:44.115873+00:00 +2025-07-06,Claude Code,118,24,2026-04-09T23:12:44.115873+00:00 +2025-07-06,Cursor,1464,436,2026-04-09T23:12:44.115873+00:00 +2025-07-06,Devin,105,28,2026-04-09T23:12:44.115873+00:00 +2025-07-06,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-06,Codegen,20,7,2026-04-09T23:12:44.115873+00:00 +2025-07-06,Jules,45,19,2026-04-09T23:12:44.115873+00:00 +2025-07-06,Gru,2,1,2026-04-09T23:12:44.115873+00:00 +2025-07-06,OpenHands,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-06,Open SWE,13,2,2026-04-09T23:12:44.115873+00:00 +2025-07-07,Codex,8998,2167,2026-04-09T23:12:44.115873+00:00 +2025-07-07,Copilot,2111,668,2026-04-09T23:12:44.115873+00:00 +2025-07-07,Claude Code,125,38,2026-04-09T23:12:44.115873+00:00 +2025-07-07,Cursor,1278,409,2026-04-09T23:12:44.115873+00:00 +2025-07-07,Devin,190,58,2026-04-09T23:12:44.115873+00:00 +2025-07-07,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-07,Codegen,24,6,2026-04-09T23:12:44.115873+00:00 +2025-07-07,Jules,35,13,2026-04-09T23:12:44.115873+00:00 +2025-07-07,Gru,13,1,2026-04-09T23:12:44.115873+00:00 +2025-07-07,OpenHands,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-07,Open SWE,17,6,2026-04-09T23:12:44.115873+00:00 +2025-07-08,Codex,8729,2117,2026-04-09T23:12:44.115873+00:00 +2025-07-08,Copilot,2430,777,2026-04-09T23:12:44.115873+00:00 +2025-07-08,Claude Code,201,53,2026-04-09T23:12:44.115873+00:00 +2025-07-08,Cursor,1342,415,2026-04-09T23:12:44.115873+00:00 +2025-07-08,Devin,161,58,2026-04-09T23:12:44.115873+00:00 +2025-07-08,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-08,Codegen,31,9,2026-04-09T23:12:44.115873+00:00 +2025-07-08,Jules,63,14,2026-04-09T23:12:44.115873+00:00 +2025-07-08,Gru,7,1,2026-04-09T23:12:44.115873+00:00 +2025-07-08,OpenHands,1,1,2026-04-09T23:12:44.115873+00:00 +2025-07-08,Open SWE,68,6,2026-04-09T23:12:44.115873+00:00 +2025-07-09,Codex,8033,1961,2026-04-09T23:12:44.115873+00:00 +2025-07-09,Copilot,2295,737,2026-04-09T23:12:44.115873+00:00 +2025-07-09,Claude Code,194,63,2026-04-09T23:12:44.115873+00:00 +2025-07-09,Cursor,1411,462,2026-04-09T23:12:44.115873+00:00 +2025-07-09,Devin,232,61,2026-04-09T23:12:44.115873+00:00 +2025-07-09,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-09,Codegen,27,10,2026-04-09T23:12:44.115873+00:00 +2025-07-09,Jules,67,17,2026-04-09T23:12:44.115873+00:00 +2025-07-09,Gru,4,1,2026-04-09T23:12:44.115873+00:00 +2025-07-09,OpenHands,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-09,Open SWE,50,3,2026-04-09T23:12:44.115873+00:00 +2025-07-10,Codex,7252,1864,2026-04-09T23:12:44.115873+00:00 +2025-07-10,Copilot,2314,733,2026-04-09T23:12:44.115873+00:00 +2025-07-10,Claude Code,361,83,2026-04-09T23:12:44.115873+00:00 +2025-07-10,Cursor,1444,470,2026-04-09T23:12:44.115873+00:00 +2025-07-10,Devin,250,70,2026-04-09T23:12:44.115873+00:00 +2025-07-10,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-10,Codegen,13,8,2026-04-09T23:12:44.115873+00:00 +2025-07-10,Jules,19,10,2026-04-09T23:12:44.115873+00:00 +2025-07-10,Gru,13,2,2026-04-09T23:12:44.115873+00:00 +2025-07-10,OpenHands,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-10,Open SWE,53,5,2026-04-09T23:12:44.115873+00:00 +2025-07-11,Codex,6955,1787,2026-04-09T23:12:44.115873+00:00 +2025-07-11,Copilot,3147,761,2026-04-09T23:12:44.115873+00:00 +2025-07-11,Claude Code,126,37,2026-04-09T23:12:44.115873+00:00 +2025-07-11,Cursor,1385,452,2026-04-09T23:12:44.115873+00:00 +2025-07-11,Devin,226,53,2026-04-09T23:12:44.115873+00:00 +2025-07-11,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-11,Codegen,11,5,2026-04-09T23:12:44.115873+00:00 +2025-07-11,Jules,30,13,2026-04-09T23:12:44.115873+00:00 +2025-07-11,Gru,3,1,2026-04-09T23:12:44.115873+00:00 +2025-07-11,OpenHands,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-11,Open SWE,71,2,2026-04-09T23:12:44.115873+00:00 +2025-07-12,Codex,7613,1638,2026-04-09T23:12:44.115873+00:00 +2025-07-12,Copilot,2911,684,2026-04-09T23:12:44.115873+00:00 +2025-07-12,Claude Code,159,44,2026-04-09T23:12:44.115873+00:00 +2025-07-12,Cursor,1279,432,2026-04-09T23:12:44.115873+00:00 +2025-07-12,Devin,123,30,2026-04-09T23:12:44.115873+00:00 +2025-07-12,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-12,Codegen,24,6,2026-04-09T23:12:44.115873+00:00 +2025-07-12,Jules,4,3,2026-04-09T23:12:44.115873+00:00 +2025-07-12,Gru,2,1,2026-04-09T23:12:44.115873+00:00 +2025-07-12,OpenHands,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-12,Open SWE,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-13,Codex,8567,1707,2026-04-09T23:12:44.115873+00:00 +2025-07-13,Copilot,3106,608,2026-04-09T23:12:44.115873+00:00 +2025-07-13,Claude Code,201,44,2026-04-09T23:12:44.115873+00:00 +2025-07-13,Cursor,1354,404,2026-04-09T23:12:44.115873+00:00 +2025-07-13,Devin,183,48,2026-04-09T23:12:44.115873+00:00 +2025-07-13,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-13,Codegen,13,5,2026-04-09T23:12:44.115873+00:00 +2025-07-13,Jules,3,2,2026-04-09T23:12:44.115873+00:00 +2025-07-13,Gru,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-13,OpenHands,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-13,Open SWE,48,1,2026-04-09T23:12:44.115873+00:00 +2025-07-14,Codex,7138,1757,2026-04-09T23:12:44.115873+00:00 +2025-07-14,Copilot,3016,755,2026-04-09T23:12:44.115873+00:00 +2025-07-14,Claude Code,283,55,2026-04-09T23:12:44.115873+00:00 +2025-07-14,Cursor,1160,409,2026-04-09T23:12:44.115873+00:00 +2025-07-14,Devin,215,51,2026-04-09T23:12:44.115873+00:00 +2025-07-14,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-14,Codegen,18,6,2026-04-09T23:12:44.115873+00:00 +2025-07-14,Jules,5,4,2026-04-09T23:12:44.115873+00:00 +2025-07-14,Gru,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-14,OpenHands,3,1,2026-04-09T23:12:44.115873+00:00 +2025-07-14,Open SWE,46,5,2026-04-09T23:12:44.115873+00:00 +2025-07-15,Codex,7064,1844,2026-04-09T23:12:44.115873+00:00 +2025-07-15,Copilot,3214,858,2026-04-09T23:12:44.115873+00:00 +2025-07-15,Claude Code,229,44,2026-04-09T23:12:44.115873+00:00 +2025-07-15,Cursor,1341,423,2026-04-09T23:12:44.115873+00:00 +2025-07-15,Devin,259,77,2026-04-09T23:12:44.115873+00:00 +2025-07-15,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-15,Codegen,30,5,2026-04-09T23:12:44.115873+00:00 +2025-07-15,Jules,7,3,2026-04-09T23:12:44.115873+00:00 +2025-07-15,Gru,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-15,OpenHands,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-15,Open SWE,36,9,2026-04-09T23:12:44.115873+00:00 +2025-07-16,Codex,7785,1874,2026-04-09T23:12:44.115873+00:00 +2025-07-16,Copilot,3345,874,2026-04-09T23:12:44.115873+00:00 +2025-07-16,Claude Code,171,45,2026-04-09T23:12:44.115873+00:00 +2025-07-16,Cursor,1619,466,2026-04-09T23:12:44.115873+00:00 +2025-07-16,Devin,342,79,2026-04-09T23:12:44.115873+00:00 +2025-07-16,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-16,Codegen,24,9,2026-04-09T23:12:44.115873+00:00 +2025-07-16,Jules,1,1,2026-04-09T23:12:44.115873+00:00 +2025-07-16,Gru,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-16,OpenHands,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-16,Open SWE,13,3,2026-04-09T23:12:44.115873+00:00 +2025-07-17,Codex,7267,1863,2026-04-09T23:12:44.115873+00:00 +2025-07-17,Copilot,3219,802,2026-04-09T23:12:44.115873+00:00 +2025-07-17,Claude Code,112,34,2026-04-09T23:12:44.115873+00:00 +2025-07-17,Cursor,1339,444,2026-04-09T23:12:44.115873+00:00 +2025-07-17,Devin,329,85,2026-04-09T23:12:44.115873+00:00 +2025-07-17,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-17,Codegen,18,8,2026-04-09T23:12:44.115873+00:00 +2025-07-17,Jules,1,1,2026-04-09T23:12:44.115873+00:00 +2025-07-17,Gru,3,1,2026-04-09T23:12:44.115873+00:00 +2025-07-17,OpenHands,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-17,Open SWE,39,5,2026-04-09T23:12:44.115873+00:00 +2025-07-18,Codex,7258,1800,2026-04-09T23:12:44.115873+00:00 +2025-07-18,Copilot,3585,864,2026-04-09T23:12:44.115873+00:00 +2025-07-18,Claude Code,201,43,2026-04-09T23:12:44.115873+00:00 +2025-07-18,Cursor,1652,446,2026-04-09T23:12:44.115873+00:00 +2025-07-18,Devin,346,85,2026-04-09T23:12:44.115873+00:00 +2025-07-18,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-18,Codegen,35,5,2026-04-09T23:12:44.115873+00:00 +2025-07-18,Jules,5,3,2026-04-09T23:12:44.115873+00:00 +2025-07-18,Gru,1,1,2026-04-09T23:12:44.115873+00:00 +2025-07-18,OpenHands,1,1,2026-04-09T23:12:44.115873+00:00 +2025-07-18,Open SWE,82,9,2026-04-09T23:12:44.115873+00:00 +2025-07-19,Codex,8040,1663,2026-04-09T23:12:44.115873+00:00 +2025-07-19,Copilot,3239,673,2026-04-09T23:12:44.115873+00:00 +2025-07-19,Claude Code,160,29,2026-04-09T23:12:44.115873+00:00 +2025-07-19,Cursor,2246,437,2026-04-09T23:12:44.115873+00:00 +2025-07-19,Devin,232,53,2026-04-09T23:12:44.115873+00:00 +2025-07-19,Sweep,49,1,2026-04-09T23:12:44.115873+00:00 +2025-07-19,Codegen,35,7,2026-04-09T23:12:44.115873+00:00 +2025-07-19,Jules,3,2,2026-04-09T23:12:44.115873+00:00 +2025-07-19,Gru,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-19,OpenHands,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-19,Open SWE,1,1,2026-04-09T23:12:44.115873+00:00 +2025-07-20,Codex,7980,1630,2026-04-09T23:12:44.115873+00:00 +2025-07-20,Copilot,3293,620,2026-04-09T23:12:44.115873+00:00 +2025-07-20,Claude Code,179,35,2026-04-09T23:12:44.115873+00:00 +2025-07-20,Cursor,1814,409,2026-04-09T23:12:44.115873+00:00 +2025-07-20,Devin,160,41,2026-04-09T23:12:44.115873+00:00 +2025-07-20,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-20,Codegen,26,8,2026-04-09T23:12:44.115873+00:00 +2025-07-20,Jules,2,1,2026-04-09T23:12:44.115873+00:00 +2025-07-20,Gru,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-20,OpenHands,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-20,Open SWE,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-21,Codex,7332,1779,2026-04-09T23:12:44.115873+00:00 +2025-07-21,Copilot,3282,807,2026-04-09T23:12:44.115873+00:00 +2025-07-21,Claude Code,127,34,2026-04-09T23:12:44.115873+00:00 +2025-07-21,Cursor,2133,500,2026-04-09T23:12:44.115873+00:00 +2025-07-21,Devin,209,77,2026-04-09T23:12:44.115873+00:00 +2025-07-21,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-21,Codegen,17,5,2026-04-09T23:12:44.115873+00:00 +2025-07-21,Jules,4,4,2026-04-09T23:12:44.115873+00:00 +2025-07-21,Gru,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-21,OpenHands,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-21,Open SWE,26,3,2026-04-09T23:12:44.115873+00:00 +2025-07-22,Codex,7450,1841,2026-04-09T23:12:44.115873+00:00 +2025-07-22,Copilot,3041,706,2026-04-09T23:12:44.115873+00:00 +2025-07-22,Claude Code,121,28,2026-04-09T23:12:44.115873+00:00 +2025-07-22,Cursor,2042,556,2026-04-09T23:12:44.115873+00:00 +2025-07-22,Devin,301,80,2026-04-09T23:12:44.115873+00:00 +2025-07-22,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-22,Codegen,28,12,2026-04-09T23:12:44.115873+00:00 +2025-07-22,Jules,5,1,2026-04-09T23:12:44.115873+00:00 +2025-07-22,Gru,1,1,2026-04-09T23:12:44.115873+00:00 +2025-07-22,OpenHands,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-22,Open SWE,35,4,2026-04-09T23:12:44.115873+00:00 +2025-07-23,Codex,7268,1822,2026-04-09T23:12:44.115873+00:00 +2025-07-23,Copilot,3558,849,2026-04-09T23:12:44.115873+00:00 +2025-07-23,Claude Code,112,36,2026-04-09T23:12:44.115873+00:00 +2025-07-23,Cursor,1509,462,2026-04-09T23:12:44.115873+00:00 +2025-07-23,Devin,261,72,2026-04-09T23:12:44.115873+00:00 +2025-07-23,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-23,Codegen,37,12,2026-04-09T23:12:44.115873+00:00 +2025-07-23,Jules,2,2,2026-04-09T23:12:44.115873+00:00 +2025-07-23,Gru,5,2,2026-04-09T23:12:44.115873+00:00 +2025-07-23,OpenHands,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-23,Open SWE,74,2,2026-04-09T23:12:44.115873+00:00 +2025-07-24,Codex,7848,1858,2026-04-09T23:12:44.115873+00:00 +2025-07-24,Copilot,4035,915,2026-04-09T23:12:44.115873+00:00 +2025-07-24,Claude Code,128,43,2026-04-09T23:12:44.115873+00:00 +2025-07-24,Cursor,1901,489,2026-04-09T23:12:44.115873+00:00 +2025-07-24,Devin,291,81,2026-04-09T23:12:44.115873+00:00 +2025-07-24,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-24,Codegen,32,11,2026-04-09T23:12:44.115873+00:00 +2025-07-24,Jules,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-24,Gru,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-24,OpenHands,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-24,Open SWE,273,11,2026-04-09T23:12:44.115873+00:00 +2025-07-25,Codex,8003,1855,2026-04-09T23:12:44.115873+00:00 +2025-07-25,Copilot,4027,918,2026-04-09T23:12:44.115873+00:00 +2025-07-25,Claude Code,142,37,2026-04-09T23:12:44.115873+00:00 +2025-07-25,Cursor,1621,468,2026-04-09T23:12:44.115873+00:00 +2025-07-25,Devin,257,67,2026-04-09T23:12:44.115873+00:00 +2025-07-25,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-25,Codegen,46,17,2026-04-09T23:12:44.115873+00:00 +2025-07-25,Jules,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-25,Gru,1,1,2026-04-09T23:12:44.115873+00:00 +2025-07-25,OpenHands,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-25,Open SWE,50,6,2026-04-09T23:12:44.115873+00:00 +2025-07-26,Codex,8426,1654,2026-04-09T23:12:44.115873+00:00 +2025-07-26,Copilot,3857,731,2026-04-09T23:12:44.115873+00:00 +2025-07-26,Claude Code,184,48,2026-04-09T23:12:44.115873+00:00 +2025-07-26,Cursor,1758,439,2026-04-09T23:12:44.115873+00:00 +2025-07-26,Devin,147,44,2026-04-09T23:12:44.115873+00:00 +2025-07-26,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-26,Codegen,49,10,2026-04-09T23:12:44.115873+00:00 +2025-07-26,Jules,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-26,Gru,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-26,OpenHands,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-26,Open SWE,45,2,2026-04-09T23:12:44.115873+00:00 +2025-07-27,Codex,8464,1712,2026-04-09T23:12:44.115873+00:00 +2025-07-27,Copilot,4301,747,2026-04-09T23:12:44.115873+00:00 +2025-07-27,Claude Code,114,29,2026-04-09T23:12:44.115873+00:00 +2025-07-27,Cursor,1778,438,2026-04-09T23:12:44.115873+00:00 +2025-07-27,Devin,136,45,2026-04-09T23:12:44.115873+00:00 +2025-07-27,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-27,Codegen,67,11,2026-04-09T23:12:44.115873+00:00 +2025-07-27,Jules,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-27,Gru,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-27,OpenHands,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-27,Open SWE,42,3,2026-04-09T23:12:44.115873+00:00 +2025-07-28,Codex,7660,1878,2026-04-09T23:12:44.115873+00:00 +2025-07-28,Copilot,3895,899,2026-04-09T23:12:44.115873+00:00 +2025-07-28,Claude Code,120,37,2026-04-09T23:12:44.115873+00:00 +2025-07-28,Cursor,1404,445,2026-04-09T23:12:44.115873+00:00 +2025-07-28,Devin,247,72,2026-04-09T23:12:44.115873+00:00 +2025-07-28,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-28,Codegen,35,13,2026-04-09T23:12:44.115873+00:00 +2025-07-28,Jules,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-28,Gru,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-28,OpenHands,3,1,2026-04-09T23:12:44.115873+00:00 +2025-07-28,Open SWE,54,6,2026-04-09T23:12:44.115873+00:00 +2025-07-29,Codex,7542,1863,2026-04-09T23:12:44.115873+00:00 +2025-07-29,Copilot,4176,940,2026-04-09T23:12:44.115873+00:00 +2025-07-29,Claude Code,123,37,2026-04-09T23:12:44.115873+00:00 +2025-07-29,Cursor,1723,470,2026-04-09T23:12:44.115873+00:00 +2025-07-29,Devin,257,77,2026-04-09T23:12:44.115873+00:00 +2025-07-29,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-29,Codegen,54,11,2026-04-09T23:12:44.115873+00:00 +2025-07-29,Jules,3,2,2026-04-09T23:12:44.115873+00:00 +2025-07-29,Gru,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-29,OpenHands,5,2,2026-04-09T23:12:44.115873+00:00 +2025-07-29,Open SWE,158,12,2026-04-09T23:12:44.115873+00:00 +2025-07-30,Codex,7501,1930,2026-04-09T23:12:44.115873+00:00 +2025-07-30,Copilot,4501,959,2026-04-09T23:12:44.115873+00:00 +2025-07-30,Claude Code,71,24,2026-04-09T23:12:44.115873+00:00 +2025-07-30,Cursor,1666,516,2026-04-09T23:12:44.115873+00:00 +2025-07-30,Devin,297,87,2026-04-09T23:12:44.115873+00:00 +2025-07-30,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-30,Codegen,17,11,2026-04-09T23:12:44.115873+00:00 +2025-07-30,Jules,1,1,2026-04-09T23:12:44.115873+00:00 +2025-07-30,Gru,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-30,OpenHands,4,1,2026-04-09T23:12:44.115873+00:00 +2025-07-30,Open SWE,103,6,2026-04-09T23:12:44.115873+00:00 +2025-07-31,Codex,7087,1816,2026-04-09T23:12:44.115873+00:00 +2025-07-31,Copilot,4582,960,2026-04-09T23:12:44.115873+00:00 +2025-07-31,Claude Code,142,44,2026-04-09T23:12:44.115873+00:00 +2025-07-31,Cursor,1914,516,2026-04-09T23:12:44.115873+00:00 +2025-07-31,Devin,348,79,2026-04-09T23:12:44.115873+00:00 +2025-07-31,Sweep,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-31,Codegen,22,10,2026-04-09T23:12:44.115873+00:00 +2025-07-31,Jules,10,6,2026-04-09T23:12:44.115873+00:00 +2025-07-31,Gru,0,0,2026-04-09T23:12:44.115873+00:00 +2025-07-31,OpenHands,2,1,2026-04-09T23:12:44.115873+00:00 +2025-07-31,Open SWE,37,4,2026-04-09T23:12:44.115873+00:00 +2026-02-01,Codex,6335,1746,2026-04-09T23:13:14.552867+00:00 +2026-02-01,Copilot,14616,2990,2026-04-09T23:13:14.552867+00:00 +2026-02-01,Claude Code,12729,3118,2026-04-09T23:13:14.552867+00:00 +2026-02-01,Cursor,789,185,2026-04-09T23:13:14.552867+00:00 +2026-02-01,Devin,102,36,2026-04-09T23:13:14.552867+00:00 +2026-02-01,Sweep,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-01,Codegen,13,2,2026-04-09T23:13:14.552867+00:00 +2026-02-01,Jules,26,13,2026-04-09T23:13:14.552867+00:00 +2026-02-01,Gru,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-01,OpenHands,1,1,2026-04-09T23:13:14.552867+00:00 +2026-02-01,Open SWE,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-02,Codex,6795,2197,2026-04-09T23:13:14.552867+00:00 +2026-02-02,Copilot,11668,2986,2026-04-09T23:13:14.552867+00:00 +2026-02-02,Claude Code,11608,3253,2026-04-09T23:13:14.552867+00:00 +2026-02-02,Cursor,891,228,2026-04-09T23:13:14.552867+00:00 +2026-02-02,Devin,223,52,2026-04-09T23:13:14.552867+00:00 +2026-02-02,Sweep,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-02,Codegen,12,3,2026-04-09T23:13:14.552867+00:00 +2026-02-02,Jules,33,16,2026-04-09T23:13:14.552867+00:00 +2026-02-02,Gru,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-02,OpenHands,5,3,2026-04-09T23:13:14.552867+00:00 +2026-02-02,Open SWE,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-03,Codex,9916,3426,2026-04-09T23:13:14.552867+00:00 +2026-02-03,Copilot,13892,3583,2026-04-09T23:13:14.552867+00:00 +2026-02-03,Claude Code,10766,3117,2026-04-09T23:13:14.552867+00:00 +2026-02-03,Cursor,895,250,2026-04-09T23:13:14.552867+00:00 +2026-02-03,Devin,372,65,2026-04-09T23:13:14.552867+00:00 +2026-02-03,Sweep,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-03,Codegen,6,2,2026-04-09T23:13:14.552867+00:00 +2026-02-03,Jules,24,13,2026-04-09T23:13:14.552867+00:00 +2026-02-03,Gru,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-03,OpenHands,5,2,2026-04-09T23:13:14.552867+00:00 +2026-02-03,Open SWE,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-04,Codex,10226,3437,2026-04-09T23:13:14.552867+00:00 +2026-02-04,Copilot,13386,3458,2026-04-09T23:13:14.552867+00:00 +2026-02-04,Claude Code,10947,3073,2026-04-09T23:13:14.552867+00:00 +2026-02-04,Cursor,866,227,2026-04-09T23:13:14.552867+00:00 +2026-02-04,Devin,251,57,2026-04-09T23:13:14.552867+00:00 +2026-02-04,Sweep,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-04,Codegen,3,2,2026-04-09T23:13:14.552867+00:00 +2026-02-04,Jules,15,11,2026-04-09T23:13:14.552867+00:00 +2026-02-04,Gru,2,1,2026-04-09T23:13:14.552867+00:00 +2026-02-04,OpenHands,4,2,2026-04-09T23:13:14.552867+00:00 +2026-02-04,Open SWE,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-05,Codex,9954,3351,2026-04-09T23:13:14.552867+00:00 +2026-02-05,Copilot,12444,3344,2026-04-09T23:13:14.552867+00:00 +2026-02-05,Claude Code,10868,3285,2026-04-09T23:13:14.552867+00:00 +2026-02-05,Cursor,837,227,2026-04-09T23:13:14.552867+00:00 +2026-02-05,Devin,245,65,2026-04-09T23:13:14.552867+00:00 +2026-02-05,Sweep,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-05,Codegen,13,3,2026-04-09T23:13:14.552867+00:00 +2026-02-05,Jules,23,13,2026-04-09T23:13:14.552867+00:00 +2026-02-05,Gru,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-05,OpenHands,14,4,2026-04-09T23:13:14.552867+00:00 +2026-02-05,Open SWE,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-06,Codex,11498,3726,2026-04-09T23:13:14.552867+00:00 +2026-02-06,Copilot,14511,3569,2026-04-09T23:13:14.552867+00:00 +2026-02-06,Claude Code,12612,3702,2026-04-09T23:13:14.552867+00:00 +2026-02-06,Cursor,829,235,2026-04-09T23:13:14.552867+00:00 +2026-02-06,Devin,275,70,2026-04-09T23:13:14.552867+00:00 +2026-02-06,Sweep,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-06,Codegen,4,1,2026-04-09T23:13:14.552867+00:00 +2026-02-06,Jules,24,13,2026-04-09T23:13:14.552867+00:00 +2026-02-06,Gru,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-06,OpenHands,4,1,2026-04-09T23:13:14.552867+00:00 +2026-02-06,Open SWE,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-07,Codex,11976,3406,2026-04-09T23:13:14.552867+00:00 +2026-02-07,Copilot,15892,3349,2026-04-09T23:13:14.552867+00:00 +2026-02-07,Claude Code,13387,3568,2026-04-09T23:13:14.552867+00:00 +2026-02-07,Cursor,838,193,2026-04-09T23:13:14.552867+00:00 +2026-02-07,Devin,202,46,2026-04-09T23:13:14.552867+00:00 +2026-02-07,Sweep,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-07,Codegen,1,1,2026-04-09T23:13:14.552867+00:00 +2026-02-07,Jules,19,12,2026-04-09T23:13:14.552867+00:00 +2026-02-07,Gru,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-07,OpenHands,4,2,2026-04-09T23:13:14.552867+00:00 +2026-02-07,Open SWE,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-08,Codex,13212,3513,2026-04-09T23:13:14.552867+00:00 +2026-02-08,Copilot,15787,3218,2026-04-09T23:13:14.552867+00:00 +2026-02-08,Claude Code,13283,3580,2026-04-09T23:13:14.552867+00:00 +2026-02-08,Cursor,1215,220,2026-04-09T23:13:14.552867+00:00 +2026-02-08,Devin,221,44,2026-04-09T23:13:14.552867+00:00 +2026-02-08,Sweep,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-08,Codegen,2,2,2026-04-09T23:13:14.552867+00:00 +2026-02-08,Jules,37,14,2026-04-09T23:13:14.552867+00:00 +2026-02-08,Gru,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-08,OpenHands,17,4,2026-04-09T23:13:14.552867+00:00 +2026-02-08,Open SWE,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-09,Codex,10617,3420,2026-04-09T23:13:14.552867+00:00 +2026-02-09,Copilot,12155,3340,2026-04-09T23:13:14.552867+00:00 +2026-02-09,Claude Code,10288,3374,2026-04-09T23:13:14.552867+00:00 +2026-02-09,Cursor,1112,256,2026-04-09T23:13:14.552867+00:00 +2026-02-09,Devin,290,58,2026-04-09T23:13:14.552867+00:00 +2026-02-09,Sweep,1,1,2026-04-09T23:13:14.552867+00:00 +2026-02-09,Codegen,14,5,2026-04-09T23:13:14.552867+00:00 +2026-02-09,Jules,24,11,2026-04-09T23:13:14.552867+00:00 +2026-02-09,Gru,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-09,OpenHands,4,2,2026-04-09T23:13:14.552867+00:00 +2026-02-09,Open SWE,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-10,Codex,11340,3747,2026-04-09T23:13:14.552867+00:00 +2026-02-10,Copilot,13192,3637,2026-04-09T23:13:14.552867+00:00 +2026-02-10,Claude Code,11169,3643,2026-04-09T23:13:14.552867+00:00 +2026-02-10,Cursor,1084,265,2026-04-09T23:13:14.552867+00:00 +2026-02-10,Devin,198,55,2026-04-09T23:13:14.552867+00:00 +2026-02-10,Sweep,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-10,Codegen,5,3,2026-04-09T23:13:14.552867+00:00 +2026-02-10,Jules,40,17,2026-04-09T23:13:14.552867+00:00 +2026-02-10,Gru,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-10,OpenHands,21,2,2026-04-09T23:13:14.552867+00:00 +2026-02-10,Open SWE,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-11,Codex,12170,4024,2026-04-09T23:13:14.552867+00:00 +2026-02-11,Copilot,14986,3775,2026-04-09T23:13:14.552867+00:00 +2026-02-11,Claude Code,12215,3708,2026-04-09T23:13:14.552867+00:00 +2026-02-11,Cursor,1321,269,2026-04-09T23:13:14.552867+00:00 +2026-02-11,Devin,255,92,2026-04-09T23:13:14.552867+00:00 +2026-02-11,Sweep,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-11,Codegen,15,3,2026-04-09T23:13:14.552867+00:00 +2026-02-11,Jules,33,16,2026-04-09T23:13:14.552867+00:00 +2026-02-11,Gru,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-11,OpenHands,20,4,2026-04-09T23:13:14.552867+00:00 +2026-02-11,Open SWE,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-12,Codex,12885,4029,2026-04-09T23:13:14.552867+00:00 +2026-02-12,Copilot,15205,3736,2026-04-09T23:13:14.552867+00:00 +2026-02-12,Claude Code,12411,3783,2026-04-09T23:13:14.552867+00:00 +2026-02-12,Cursor,1749,296,2026-04-09T23:13:14.552867+00:00 +2026-02-12,Devin,219,65,2026-04-09T23:13:14.552867+00:00 +2026-02-12,Sweep,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-12,Codegen,12,3,2026-04-09T23:13:14.552867+00:00 +2026-02-12,Jules,29,15,2026-04-09T23:13:14.552867+00:00 +2026-02-12,Gru,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-12,OpenHands,5,3,2026-04-09T23:13:14.552867+00:00 +2026-02-12,Open SWE,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-13,Codex,13561,4162,2026-04-09T23:13:14.552867+00:00 +2026-02-13,Copilot,14237,3453,2026-04-09T23:13:14.552867+00:00 +2026-02-13,Claude Code,11886,3635,2026-04-09T23:13:14.552867+00:00 +2026-02-13,Cursor,4155,263,2026-04-09T23:13:14.552867+00:00 +2026-02-13,Devin,235,63,2026-04-09T23:13:14.552867+00:00 +2026-02-13,Sweep,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-13,Codegen,10,3,2026-04-09T23:13:14.552867+00:00 +2026-02-13,Jules,26,13,2026-04-09T23:13:14.552867+00:00 +2026-02-13,Gru,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-13,OpenHands,5,2,2026-04-09T23:13:14.552867+00:00 +2026-02-13,Open SWE,272,1,2026-04-09T23:13:14.552867+00:00 +2026-02-14,Codex,14293,3791,2026-04-09T23:13:14.552867+00:00 +2026-02-14,Copilot,14738,3071,2026-04-09T23:13:14.552867+00:00 +2026-02-14,Claude Code,13095,3559,2026-04-09T23:13:14.552867+00:00 +2026-02-14,Cursor,5569,261,2026-04-09T23:13:14.552867+00:00 +2026-02-14,Devin,176,51,2026-04-09T23:13:14.552867+00:00 +2026-02-14,Sweep,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-14,Codegen,3,2,2026-04-09T23:13:14.552867+00:00 +2026-02-14,Jules,22,15,2026-04-09T23:13:14.552867+00:00 +2026-02-14,Gru,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-14,OpenHands,19,3,2026-04-09T23:13:14.552867+00:00 +2026-02-14,Open SWE,1,1,2026-04-09T23:13:14.552867+00:00 +2026-02-15,Codex,14355,3627,2026-04-09T23:13:14.552867+00:00 +2026-02-15,Copilot,16118,3167,2026-04-09T23:13:14.552867+00:00 +2026-02-15,Claude Code,15024,3808,2026-04-09T23:13:14.552867+00:00 +2026-02-15,Cursor,4417,255,2026-04-09T23:13:14.552867+00:00 +2026-02-15,Devin,177,45,2026-04-09T23:13:14.552867+00:00 +2026-02-15,Sweep,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-15,Codegen,10,2,2026-04-09T23:13:14.552867+00:00 +2026-02-15,Jules,50,22,2026-04-09T23:13:14.552867+00:00 +2026-02-15,Gru,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-15,OpenHands,4,2,2026-04-09T23:13:14.552867+00:00 +2026-02-15,Open SWE,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-16,Codex,13309,3842,2026-04-09T23:13:14.552867+00:00 +2026-02-16,Copilot,14757,3447,2026-04-09T23:13:14.552867+00:00 +2026-02-16,Claude Code,12983,3786,2026-04-09T23:13:14.552867+00:00 +2026-02-16,Cursor,4303,279,2026-04-09T23:13:14.552867+00:00 +2026-02-16,Devin,191,62,2026-04-09T23:13:14.552867+00:00 +2026-02-16,Sweep,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-16,Codegen,30,3,2026-04-09T23:13:14.552867+00:00 +2026-02-16,Jules,23,14,2026-04-09T23:13:14.552867+00:00 +2026-02-16,Gru,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-16,OpenHands,2,2,2026-04-09T23:13:14.552867+00:00 +2026-02-16,Open SWE,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-17,Codex,13942,4085,2026-04-09T23:13:14.552867+00:00 +2026-02-17,Copilot,13778,3394,2026-04-09T23:13:14.552867+00:00 +2026-02-17,Claude Code,13917,4044,2026-04-09T23:13:14.552867+00:00 +2026-02-17,Cursor,2773,281,2026-04-09T23:13:14.552867+00:00 +2026-02-17,Devin,228,76,2026-04-09T23:13:14.552867+00:00 +2026-02-17,Sweep,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-17,Codegen,19,4,2026-04-09T23:13:14.552867+00:00 +2026-02-17,Jules,15,11,2026-04-09T23:13:14.552867+00:00 +2026-02-17,Gru,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-17,OpenHands,3,1,2026-04-09T23:13:14.552867+00:00 +2026-02-17,Open SWE,2,1,2026-04-09T23:13:14.552867+00:00 +2026-02-18,Codex,13980,4094,2026-04-09T23:13:14.552867+00:00 +2026-02-18,Copilot,13870,3603,2026-04-09T23:13:14.552867+00:00 +2026-02-18,Claude Code,13009,3875,2026-04-09T23:13:14.552867+00:00 +2026-02-18,Cursor,1301,267,2026-04-09T23:13:14.552867+00:00 +2026-02-18,Devin,262,80,2026-04-09T23:13:14.552867+00:00 +2026-02-18,Sweep,1,1,2026-04-09T23:13:14.552867+00:00 +2026-02-18,Codegen,9,3,2026-04-09T23:13:14.552867+00:00 +2026-02-18,Jules,15,13,2026-04-09T23:13:14.552867+00:00 +2026-02-18,Gru,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-18,OpenHands,14,6,2026-04-09T23:13:14.552867+00:00 +2026-02-18,Open SWE,1,1,2026-04-09T23:13:14.552867+00:00 +2026-02-19,Codex,13573,3971,2026-04-09T23:13:14.552867+00:00 +2026-02-19,Copilot,11375,3238,2026-04-09T23:13:14.552867+00:00 +2026-02-19,Claude Code,13722,4082,2026-04-09T23:13:14.552867+00:00 +2026-02-19,Cursor,1081,250,2026-04-09T23:13:14.552867+00:00 +2026-02-19,Devin,259,74,2026-04-09T23:13:14.552867+00:00 +2026-02-19,Sweep,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-19,Codegen,15,4,2026-04-09T23:13:14.552867+00:00 +2026-02-19,Jules,20,9,2026-04-09T23:13:14.552867+00:00 +2026-02-19,Gru,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-19,OpenHands,13,5,2026-04-09T23:13:14.552867+00:00 +2026-02-19,Open SWE,2,2,2026-04-09T23:13:14.552867+00:00 +2026-02-20,Codex,13704,3983,2026-04-09T23:13:14.552867+00:00 +2026-02-20,Copilot,9567,3105,2026-04-09T23:13:14.552867+00:00 +2026-02-20,Claude Code,14098,4112,2026-04-09T23:13:14.552867+00:00 +2026-02-20,Cursor,1053,266,2026-04-09T23:13:14.552867+00:00 +2026-02-20,Devin,315,99,2026-04-09T23:13:14.552867+00:00 +2026-02-20,Sweep,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-20,Codegen,11,3,2026-04-09T23:13:14.552867+00:00 +2026-02-20,Jules,35,16,2026-04-09T23:13:14.552867+00:00 +2026-02-20,Gru,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-20,OpenHands,4,2,2026-04-09T23:13:14.552867+00:00 +2026-02-20,Open SWE,3,3,2026-04-09T23:13:14.552867+00:00 +2026-02-21,Codex,14327,3864,2026-04-09T23:13:14.552867+00:00 +2026-02-21,Copilot,10116,2918,2026-04-09T23:13:14.552867+00:00 +2026-02-21,Claude Code,15575,4132,2026-04-09T23:13:14.552867+00:00 +2026-02-21,Cursor,1158,234,2026-04-09T23:13:14.552867+00:00 +2026-02-21,Devin,144,48,2026-04-09T23:13:14.552867+00:00 +2026-02-21,Sweep,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-21,Codegen,2,1,2026-04-09T23:13:14.552867+00:00 +2026-02-21,Jules,15,10,2026-04-09T23:13:14.552867+00:00 +2026-02-21,Gru,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-21,OpenHands,5,2,2026-04-09T23:13:14.552867+00:00 +2026-02-21,Open SWE,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-22,Codex,15165,3817,2026-04-09T23:13:14.552867+00:00 +2026-02-22,Copilot,10025,2999,2026-04-09T23:13:14.552867+00:00 +2026-02-22,Claude Code,16040,4165,2026-04-09T23:13:14.552867+00:00 +2026-02-22,Cursor,1154,217,2026-04-09T23:13:14.552867+00:00 +2026-02-22,Devin,161,50,2026-04-09T23:13:14.552867+00:00 +2026-02-22,Sweep,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-22,Codegen,7,1,2026-04-09T23:13:14.552867+00:00 +2026-02-22,Jules,27,14,2026-04-09T23:13:14.552867+00:00 +2026-02-22,Gru,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-22,OpenHands,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-22,Open SWE,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-23,Codex,13873,4115,2026-04-09T23:13:14.552867+00:00 +2026-02-23,Copilot,9559,3218,2026-04-09T23:13:14.552867+00:00 +2026-02-23,Claude Code,11991,3817,2026-04-09T23:13:14.552867+00:00 +2026-02-23,Cursor,952,289,2026-04-09T23:13:14.552867+00:00 +2026-02-23,Devin,307,61,2026-04-09T23:13:14.552867+00:00 +2026-02-23,Sweep,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-23,Codegen,17,5,2026-04-09T23:13:14.552867+00:00 +2026-02-23,Jules,24,11,2026-04-09T23:13:14.552867+00:00 +2026-02-23,Gru,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-23,OpenHands,2,2,2026-04-09T23:13:14.552867+00:00 +2026-02-23,Open SWE,1,1,2026-04-09T23:13:14.552867+00:00 +2026-02-24,Codex,13772,4176,2026-04-09T23:13:14.552867+00:00 +2026-02-24,Copilot,9377,3298,2026-04-09T23:13:14.552867+00:00 +2026-02-24,Claude Code,13251,4060,2026-04-09T23:13:14.552867+00:00 +2026-02-24,Cursor,1097,354,2026-04-09T23:13:14.552867+00:00 +2026-02-24,Devin,364,86,2026-04-09T23:13:14.552867+00:00 +2026-02-24,Sweep,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-24,Codegen,5,4,2026-04-09T23:13:14.552867+00:00 +2026-02-24,Jules,21,9,2026-04-09T23:13:14.552867+00:00 +2026-02-24,Gru,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-24,OpenHands,11,4,2026-04-09T23:13:14.552867+00:00 +2026-02-24,Open SWE,3,1,2026-04-09T23:13:14.552867+00:00 +2026-02-25,Codex,13380,4170,2026-04-09T23:13:14.552867+00:00 +2026-02-25,Copilot,8519,3152,2026-04-09T23:13:14.552867+00:00 +2026-02-25,Claude Code,13194,4251,2026-04-09T23:13:14.552867+00:00 +2026-02-25,Cursor,2134,656,2026-04-09T23:13:14.552867+00:00 +2026-02-25,Devin,344,81,2026-04-09T23:13:14.552867+00:00 +2026-02-25,Sweep,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-25,Codegen,8,3,2026-04-09T23:13:14.552867+00:00 +2026-02-25,Jules,24,15,2026-04-09T23:13:14.552867+00:00 +2026-02-25,Gru,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-25,OpenHands,10,2,2026-04-09T23:13:14.552867+00:00 +2026-02-25,Open SWE,6,2,2026-04-09T23:13:14.552867+00:00 +2026-02-26,Codex,14893,4329,2026-04-09T23:13:14.552867+00:00 +2026-02-26,Copilot,9113,3263,2026-04-09T23:13:14.552867+00:00 +2026-02-26,Claude Code,14275,4332,2026-04-09T23:13:14.552867+00:00 +2026-02-26,Cursor,1901,580,2026-04-09T23:13:14.552867+00:00 +2026-02-26,Devin,438,97,2026-04-09T23:13:14.552867+00:00 +2026-02-26,Sweep,1,1,2026-04-09T23:13:14.552867+00:00 +2026-02-26,Codegen,1,1,2026-04-09T23:13:14.552867+00:00 +2026-02-26,Jules,28,10,2026-04-09T23:13:14.552867+00:00 +2026-02-26,Gru,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-26,OpenHands,6,3,2026-04-09T23:13:14.552867+00:00 +2026-02-26,Open SWE,3,1,2026-04-09T23:13:14.552867+00:00 +2026-02-27,Codex,15483,4525,2026-04-09T23:13:14.552867+00:00 +2026-02-27,Copilot,10008,3385,2026-04-09T23:13:14.552867+00:00 +2026-02-27,Claude Code,15451,4581,2026-04-09T23:13:14.552867+00:00 +2026-02-27,Cursor,1847,495,2026-04-09T23:13:14.552867+00:00 +2026-02-27,Devin,322,81,2026-04-09T23:13:14.552867+00:00 +2026-02-27,Sweep,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-27,Codegen,5,2,2026-04-09T23:13:14.552867+00:00 +2026-02-27,Jules,20,9,2026-04-09T23:13:14.552867+00:00 +2026-02-27,Gru,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-27,OpenHands,9,6,2026-04-09T23:13:14.552867+00:00 +2026-02-27,Open SWE,7,1,2026-04-09T23:13:14.552867+00:00 +2026-02-28,Codex,13772,3840,2026-04-09T23:13:14.552867+00:00 +2026-02-28,Copilot,11074,3423,2026-04-09T23:13:14.552867+00:00 +2026-02-28,Claude Code,15350,4425,2026-04-09T23:13:14.552867+00:00 +2026-02-28,Cursor,1400,357,2026-04-09T23:13:14.552867+00:00 +2026-02-28,Devin,263,56,2026-04-09T23:13:14.552867+00:00 +2026-02-28,Sweep,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-28,Codegen,1,1,2026-04-09T23:13:14.552867+00:00 +2026-02-28,Jules,45,21,2026-04-09T23:13:14.552867+00:00 +2026-02-28,Gru,0,0,2026-04-09T23:13:14.552867+00:00 +2026-02-28,OpenHands,7,2,2026-04-09T23:13:14.552867+00:00 +2026-02-28,Open SWE,0,0,2026-04-09T23:13:14.552867+00:00 +2025-12-01,Codex,11614,2045,2026-04-09T23:13:21.419592+00:00 +2025-12-01,Copilot,8755,2757,2026-04-09T23:13:21.419592+00:00 +2025-12-01,Claude Code,9676,2157,2026-04-09T23:13:21.419592+00:00 +2025-12-01,Cursor,561,184,2026-04-09T23:13:21.419592+00:00 +2025-12-01,Devin,190,46,2026-04-09T23:13:21.419592+00:00 +2025-12-01,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-01,Codegen,10,4,2026-04-09T23:13:21.419592+00:00 +2025-12-01,Jules,166,7,2026-04-09T23:13:21.419592+00:00 +2025-12-01,Gru,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-01,OpenHands,4,2,2026-04-09T23:13:21.419592+00:00 +2025-12-01,Open SWE,18,1,2026-04-09T23:13:21.419592+00:00 +2025-12-02,Codex,13149,2101,2026-04-09T23:13:21.419592+00:00 +2025-12-02,Copilot,9683,2848,2026-04-09T23:13:21.419592+00:00 +2025-12-02,Claude Code,11124,2162,2026-04-09T23:13:21.419592+00:00 +2025-12-02,Cursor,678,200,2026-04-09T23:13:21.419592+00:00 +2025-12-02,Devin,303,53,2026-04-09T23:13:21.419592+00:00 +2025-12-02,Sweep,2,1,2026-04-09T23:13:21.419592+00:00 +2025-12-02,Codegen,14,4,2026-04-09T23:13:21.419592+00:00 +2025-12-02,Jules,215,6,2026-04-09T23:13:21.419592+00:00 +2025-12-02,Gru,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-02,OpenHands,6,2,2026-04-09T23:13:21.419592+00:00 +2025-12-02,Open SWE,3,1,2026-04-09T23:13:21.419592+00:00 +2025-12-03,Codex,8247,2113,2026-04-09T23:13:21.419592+00:00 +2025-12-03,Copilot,10175,2713,2026-04-09T23:13:21.419592+00:00 +2025-12-03,Claude Code,9714,2291,2026-04-09T23:13:21.419592+00:00 +2025-12-03,Cursor,725,219,2026-04-09T23:13:21.419592+00:00 +2025-12-03,Devin,268,70,2026-04-09T23:13:21.419592+00:00 +2025-12-03,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-03,Codegen,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-03,Jules,44,16,2026-04-09T23:13:21.419592+00:00 +2025-12-03,Gru,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-03,OpenHands,14,4,2026-04-09T23:13:21.419592+00:00 +2025-12-03,Open SWE,12,2,2026-04-09T23:13:21.419592+00:00 +2025-12-04,Codex,8282,2017,2026-04-09T23:13:21.419592+00:00 +2025-12-04,Copilot,10218,2771,2026-04-09T23:13:21.419592+00:00 +2025-12-04,Claude Code,9695,2206,2026-04-09T23:13:21.419592+00:00 +2025-12-04,Cursor,946,234,2026-04-09T23:13:21.419592+00:00 +2025-12-04,Devin,272,59,2026-04-09T23:13:21.419592+00:00 +2025-12-04,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-04,Codegen,29,7,2026-04-09T23:13:21.419592+00:00 +2025-12-04,Jules,102,17,2026-04-09T23:13:21.419592+00:00 +2025-12-04,Gru,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-04,OpenHands,10,2,2026-04-09T23:13:21.419592+00:00 +2025-12-04,Open SWE,18,3,2026-04-09T23:13:21.419592+00:00 +2025-12-05,Codex,10913,1922,2026-04-09T23:13:21.419592+00:00 +2025-12-05,Copilot,10516,2802,2026-04-09T23:13:21.419592+00:00 +2025-12-05,Claude Code,9873,2112,2026-04-09T23:13:21.419592+00:00 +2025-12-05,Cursor,848,212,2026-04-09T23:13:21.419592+00:00 +2025-12-05,Devin,284,63,2026-04-09T23:13:21.419592+00:00 +2025-12-05,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-05,Codegen,20,5,2026-04-09T23:13:21.419592+00:00 +2025-12-05,Jules,322,9,2026-04-09T23:13:21.419592+00:00 +2025-12-05,Gru,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-05,OpenHands,3,1,2026-04-09T23:13:21.419592+00:00 +2025-12-05,Open SWE,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-06,Codex,11222,1761,2026-04-09T23:13:21.419592+00:00 +2025-12-06,Copilot,13401,2608,2026-04-09T23:13:21.419592+00:00 +2025-12-06,Claude Code,11054,1997,2026-04-09T23:13:21.419592+00:00 +2025-12-06,Cursor,816,210,2026-04-09T23:13:21.419592+00:00 +2025-12-06,Devin,195,33,2026-04-09T23:13:21.419592+00:00 +2025-12-06,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-06,Codegen,1,1,2026-04-09T23:13:21.419592+00:00 +2025-12-06,Jules,345,20,2026-04-09T23:13:21.419592+00:00 +2025-12-06,Gru,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-06,OpenHands,5,3,2026-04-09T23:13:21.419592+00:00 +2025-12-06,Open SWE,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-07,Codex,12719,1790,2026-04-09T23:13:21.419592+00:00 +2025-12-07,Copilot,13397,2511,2026-04-09T23:13:21.419592+00:00 +2025-12-07,Claude Code,11130,2021,2026-04-09T23:13:21.419592+00:00 +2025-12-07,Cursor,827,187,2026-04-09T23:13:21.419592+00:00 +2025-12-07,Devin,204,47,2026-04-09T23:13:21.419592+00:00 +2025-12-07,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-07,Codegen,27,4,2026-04-09T23:13:21.419592+00:00 +2025-12-07,Jules,502,23,2026-04-09T23:13:21.419592+00:00 +2025-12-07,Gru,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-07,OpenHands,3,1,2026-04-09T23:13:21.419592+00:00 +2025-12-07,Open SWE,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-08,Codex,11435,1921,2026-04-09T23:13:21.419592+00:00 +2025-12-08,Copilot,11839,2866,2026-04-09T23:13:21.419592+00:00 +2025-12-08,Claude Code,9659,2206,2026-04-09T23:13:21.419592+00:00 +2025-12-08,Cursor,788,215,2026-04-09T23:13:21.419592+00:00 +2025-12-08,Devin,276,71,2026-04-09T23:13:21.419592+00:00 +2025-12-08,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-08,Codegen,39,6,2026-04-09T23:13:21.419592+00:00 +2025-12-08,Jules,491,15,2026-04-09T23:13:21.419592+00:00 +2025-12-08,Gru,2,1,2026-04-09T23:13:21.419592+00:00 +2025-12-08,OpenHands,21,4,2026-04-09T23:13:21.419592+00:00 +2025-12-08,Open SWE,6,1,2026-04-09T23:13:21.419592+00:00 +2025-12-09,Codex,13628,1805,2026-04-09T23:13:21.419592+00:00 +2025-12-09,Copilot,12209,2943,2026-04-09T23:13:21.419592+00:00 +2025-12-09,Claude Code,10264,2170,2026-04-09T23:13:21.419592+00:00 +2025-12-09,Cursor,722,230,2026-04-09T23:13:21.419592+00:00 +2025-12-09,Devin,250,59,2026-04-09T23:13:21.419592+00:00 +2025-12-09,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-09,Codegen,33,7,2026-04-09T23:13:21.419592+00:00 +2025-12-09,Jules,747,19,2026-04-09T23:13:21.419592+00:00 +2025-12-09,Gru,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-09,OpenHands,12,3,2026-04-09T23:13:21.419592+00:00 +2025-12-09,Open SWE,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-10,Codex,14133,1882,2026-04-09T23:13:21.419592+00:00 +2025-12-10,Copilot,11751,2849,2026-04-09T23:13:21.419592+00:00 +2025-12-10,Claude Code,10208,2210,2026-04-09T23:13:21.419592+00:00 +2025-12-10,Cursor,712,243,2026-04-09T23:13:21.419592+00:00 +2025-12-10,Devin,247,58,2026-04-09T23:13:21.419592+00:00 +2025-12-10,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-10,Codegen,32,4,2026-04-09T23:13:21.419592+00:00 +2025-12-10,Jules,700,20,2026-04-09T23:13:21.419592+00:00 +2025-12-10,Gru,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-10,OpenHands,13,3,2026-04-09T23:13:21.419592+00:00 +2025-12-10,Open SWE,48,1,2026-04-09T23:13:21.419592+00:00 +2025-12-11,Codex,14015,1903,2026-04-09T23:13:21.419592+00:00 +2025-12-11,Copilot,11277,2836,2026-04-09T23:13:21.419592+00:00 +2025-12-11,Claude Code,10542,2172,2026-04-09T23:13:21.419592+00:00 +2025-12-11,Cursor,697,208,2026-04-09T23:13:21.419592+00:00 +2025-12-11,Devin,283,69,2026-04-09T23:13:21.419592+00:00 +2025-12-11,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-11,Codegen,18,6,2026-04-09T23:13:21.419592+00:00 +2025-12-11,Jules,707,19,2026-04-09T23:13:21.419592+00:00 +2025-12-11,Gru,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-11,OpenHands,6,1,2026-04-09T23:13:21.419592+00:00 +2025-12-11,Open SWE,13,1,2026-04-09T23:13:21.419592+00:00 +2025-12-12,Codex,13785,1850,2026-04-09T23:13:21.419592+00:00 +2025-12-12,Copilot,11446,2855,2026-04-09T23:13:21.419592+00:00 +2025-12-12,Claude Code,9449,1982,2026-04-09T23:13:21.419592+00:00 +2025-12-12,Cursor,809,233,2026-04-09T23:13:21.419592+00:00 +2025-12-12,Devin,244,61,2026-04-09T23:13:21.419592+00:00 +2025-12-12,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-12,Codegen,12,5,2026-04-09T23:13:21.419592+00:00 +2025-12-12,Jules,740,22,2026-04-09T23:13:21.419592+00:00 +2025-12-12,Gru,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-12,OpenHands,4,1,2026-04-09T23:13:21.419592+00:00 +2025-12-12,Open SWE,36,1,2026-04-09T23:13:21.419592+00:00 +2025-12-13,Codex,16317,1688,2026-04-09T23:13:21.419592+00:00 +2025-12-13,Copilot,13646,2490,2026-04-09T23:13:21.419592+00:00 +2025-12-13,Claude Code,11444,1938,2026-04-09T23:13:21.419592+00:00 +2025-12-13,Cursor,841,202,2026-04-09T23:13:21.419592+00:00 +2025-12-13,Devin,227,40,2026-04-09T23:13:21.419592+00:00 +2025-12-13,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-13,Codegen,3,3,2026-04-09T23:13:21.419592+00:00 +2025-12-13,Jules,978,22,2026-04-09T23:13:21.419592+00:00 +2025-12-13,Gru,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-13,OpenHands,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-13,Open SWE,144,2,2026-04-09T23:13:21.419592+00:00 +2025-12-14,Codex,16885,1742,2026-04-09T23:13:21.419592+00:00 +2025-12-14,Copilot,13122,2447,2026-04-09T23:13:21.419592+00:00 +2025-12-14,Claude Code,11083,1867,2026-04-09T23:13:21.419592+00:00 +2025-12-14,Cursor,699,194,2026-04-09T23:13:21.419592+00:00 +2025-12-14,Devin,251,40,2026-04-09T23:13:21.419592+00:00 +2025-12-14,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-14,Codegen,32,9,2026-04-09T23:13:21.419592+00:00 +2025-12-14,Jules,995,26,2026-04-09T23:13:21.419592+00:00 +2025-12-14,Gru,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-14,OpenHands,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-14,Open SWE,25,1,2026-04-09T23:13:21.419592+00:00 +2025-12-15,Codex,11938,1813,2026-04-09T23:13:21.419592+00:00 +2025-12-15,Copilot,10853,2713,2026-04-09T23:13:21.419592+00:00 +2025-12-15,Claude Code,9024,1965,2026-04-09T23:13:21.419592+00:00 +2025-12-15,Cursor,697,226,2026-04-09T23:13:21.419592+00:00 +2025-12-15,Devin,250,53,2026-04-09T23:13:21.419592+00:00 +2025-12-15,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-15,Codegen,16,8,2026-04-09T23:13:21.419592+00:00 +2025-12-15,Jules,644,26,2026-04-09T23:13:21.419592+00:00 +2025-12-15,Gru,1,1,2026-04-09T23:13:21.419592+00:00 +2025-12-15,OpenHands,2,1,2026-04-09T23:13:21.419592+00:00 +2025-12-15,Open SWE,67,1,2026-04-09T23:13:21.419592+00:00 +2025-12-16,Codex,11727,1829,2026-04-09T23:13:21.419592+00:00 +2025-12-16,Copilot,10928,2716,2026-04-09T23:13:21.419592+00:00 +2025-12-16,Claude Code,10301,2212,2026-04-09T23:13:21.419592+00:00 +2025-12-16,Cursor,836,232,2026-04-09T23:13:21.419592+00:00 +2025-12-16,Devin,368,65,2026-04-09T23:13:21.419592+00:00 +2025-12-16,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-16,Codegen,10,6,2026-04-09T23:13:21.419592+00:00 +2025-12-16,Jules,595,25,2026-04-09T23:13:21.419592+00:00 +2025-12-16,Gru,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-16,OpenHands,10,3,2026-04-09T23:13:21.419592+00:00 +2025-12-16,Open SWE,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-17,Codex,6495,1818,2026-04-09T23:13:21.419592+00:00 +2025-12-17,Copilot,11906,2801,2026-04-09T23:13:21.419592+00:00 +2025-12-17,Claude Code,9669,2277,2026-04-09T23:13:21.419592+00:00 +2025-12-17,Cursor,838,237,2026-04-09T23:13:21.419592+00:00 +2025-12-17,Devin,335,86,2026-04-09T23:13:21.419592+00:00 +2025-12-17,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-17,Codegen,17,7,2026-04-09T23:13:21.419592+00:00 +2025-12-17,Jules,69,21,2026-04-09T23:13:21.419592+00:00 +2025-12-17,Gru,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-17,OpenHands,1,1,2026-04-09T23:13:21.419592+00:00 +2025-12-17,Open SWE,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-18,Codex,6894,1808,2026-04-09T23:13:21.419592+00:00 +2025-12-18,Copilot,11130,2687,2026-04-09T23:13:21.419592+00:00 +2025-12-18,Claude Code,9811,2218,2026-04-09T23:13:21.419592+00:00 +2025-12-18,Cursor,809,230,2026-04-09T23:13:21.419592+00:00 +2025-12-18,Devin,321,57,2026-04-09T23:13:21.419592+00:00 +2025-12-18,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-18,Codegen,2,2,2026-04-09T23:13:21.419592+00:00 +2025-12-18,Jules,47,19,2026-04-09T23:13:21.419592+00:00 +2025-12-18,Gru,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-18,OpenHands,9,4,2026-04-09T23:13:21.419592+00:00 +2025-12-18,Open SWE,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-19,Codex,7446,1838,2026-04-09T23:13:21.419592+00:00 +2025-12-19,Copilot,11188,2648,2026-04-09T23:13:21.419592+00:00 +2025-12-19,Claude Code,9133,2021,2026-04-09T23:13:21.419592+00:00 +2025-12-19,Cursor,689,197,2026-04-09T23:13:21.419592+00:00 +2025-12-19,Devin,294,58,2026-04-09T23:13:21.419592+00:00 +2025-12-19,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-19,Codegen,3,3,2026-04-09T23:13:21.419592+00:00 +2025-12-19,Jules,33,18,2026-04-09T23:13:21.419592+00:00 +2025-12-19,Gru,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-19,OpenHands,18,4,2026-04-09T23:13:21.419592+00:00 +2025-12-19,Open SWE,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-20,Codex,8490,1653,2026-04-09T23:13:21.419592+00:00 +2025-12-20,Copilot,11985,2345,2026-04-09T23:13:21.419592+00:00 +2025-12-20,Claude Code,10020,1889,2026-04-09T23:13:21.419592+00:00 +2025-12-20,Cursor,821,175,2026-04-09T23:13:21.419592+00:00 +2025-12-20,Devin,213,37,2026-04-09T23:13:21.419592+00:00 +2025-12-20,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-20,Codegen,23,3,2026-04-09T23:13:21.419592+00:00 +2025-12-20,Jules,36,13,2026-04-09T23:13:21.419592+00:00 +2025-12-20,Gru,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-20,OpenHands,18,3,2026-04-09T23:13:21.419592+00:00 +2025-12-20,Open SWE,1,1,2026-04-09T23:13:21.419592+00:00 +2025-12-21,Codex,8435,1644,2026-04-09T23:13:21.419592+00:00 +2025-12-21,Copilot,12065,2337,2026-04-09T23:13:21.419592+00:00 +2025-12-21,Claude Code,10412,1897,2026-04-09T23:13:21.419592+00:00 +2025-12-21,Cursor,766,192,2026-04-09T23:13:21.419592+00:00 +2025-12-21,Devin,173,32,2026-04-09T23:13:21.419592+00:00 +2025-12-21,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-21,Codegen,18,4,2026-04-09T23:13:21.419592+00:00 +2025-12-21,Jules,52,22,2026-04-09T23:13:21.419592+00:00 +2025-12-21,Gru,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-21,OpenHands,6,1,2026-04-09T23:13:21.419592+00:00 +2025-12-21,Open SWE,19,1,2026-04-09T23:13:21.419592+00:00 +2025-12-22,Codex,7374,1803,2026-04-09T23:13:21.419592+00:00 +2025-12-22,Copilot,10940,2507,2026-04-09T23:13:21.419592+00:00 +2025-12-22,Claude Code,9069,2047,2026-04-09T23:13:21.419592+00:00 +2025-12-22,Cursor,878,204,2026-04-09T23:13:21.419592+00:00 +2025-12-22,Devin,268,51,2026-04-09T23:13:21.419592+00:00 +2025-12-22,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-22,Codegen,12,6,2026-04-09T23:13:21.419592+00:00 +2025-12-22,Jules,33,14,2026-04-09T23:13:21.419592+00:00 +2025-12-22,Gru,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-22,OpenHands,2,1,2026-04-09T23:13:21.419592+00:00 +2025-12-22,Open SWE,120,1,2026-04-09T23:13:21.419592+00:00 +2025-12-23,Codex,7520,1848,2026-04-09T23:13:21.419592+00:00 +2025-12-23,Copilot,10977,2433,2026-04-09T23:13:21.419592+00:00 +2025-12-23,Claude Code,10172,2089,2026-04-09T23:13:21.419592+00:00 +2025-12-23,Cursor,729,195,2026-04-09T23:13:21.419592+00:00 +2025-12-23,Devin,238,56,2026-04-09T23:13:21.419592+00:00 +2025-12-23,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-23,Codegen,12,4,2026-04-09T23:13:21.419592+00:00 +2025-12-23,Jules,39,13,2026-04-09T23:13:21.419592+00:00 +2025-12-23,Gru,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-23,OpenHands,31,4,2026-04-09T23:13:21.419592+00:00 +2025-12-23,Open SWE,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-24,Codex,6495,1640,2026-04-09T23:13:21.419592+00:00 +2025-12-24,Copilot,10672,2234,2026-04-09T23:13:21.419592+00:00 +2025-12-24,Claude Code,10624,2131,2026-04-09T23:13:21.419592+00:00 +2025-12-24,Cursor,842,238,2026-04-09T23:13:21.419592+00:00 +2025-12-24,Devin,176,39,2026-04-09T23:13:21.419592+00:00 +2025-12-24,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-24,Codegen,5,4,2026-04-09T23:13:21.419592+00:00 +2025-12-24,Jules,51,27,2026-04-09T23:13:21.419592+00:00 +2025-12-24,Gru,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-24,OpenHands,15,4,2026-04-09T23:13:21.419592+00:00 +2025-12-24,Open SWE,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-25,Codex,7088,1512,2026-04-09T23:13:21.419592+00:00 +2025-12-25,Copilot,10786,2068,2026-04-09T23:13:21.419592+00:00 +2025-12-25,Claude Code,12056,2132,2026-04-09T23:13:21.419592+00:00 +2025-12-25,Cursor,807,198,2026-04-09T23:13:21.419592+00:00 +2025-12-25,Devin,183,30,2026-04-09T23:13:21.419592+00:00 +2025-12-25,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-25,Codegen,5,2,2026-04-09T23:13:21.419592+00:00 +2025-12-25,Jules,126,36,2026-04-09T23:13:21.419592+00:00 +2025-12-25,Gru,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-25,OpenHands,4,2,2026-04-09T23:13:21.419592+00:00 +2025-12-25,Open SWE,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-26,Codex,7108,1633,2026-04-09T23:13:21.419592+00:00 +2025-12-26,Copilot,11322,2232,2026-04-09T23:13:21.419592+00:00 +2025-12-26,Claude Code,13365,2384,2026-04-09T23:13:21.419592+00:00 +2025-12-26,Cursor,908,217,2026-04-09T23:13:21.419592+00:00 +2025-12-26,Devin,196,34,2026-04-09T23:13:21.419592+00:00 +2025-12-26,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-26,Codegen,26,4,2026-04-09T23:13:21.419592+00:00 +2025-12-26,Jules,91,26,2026-04-09T23:13:21.419592+00:00 +2025-12-26,Gru,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-26,OpenHands,3,3,2026-04-09T23:13:21.419592+00:00 +2025-12-26,Open SWE,3,1,2026-04-09T23:13:21.419592+00:00 +2025-12-27,Codex,8017,1645,2026-04-09T23:13:21.419592+00:00 +2025-12-27,Copilot,12342,2193,2026-04-09T23:13:21.419592+00:00 +2025-12-27,Claude Code,14347,2366,2026-04-09T23:13:21.419592+00:00 +2025-12-27,Cursor,760,178,2026-04-09T23:13:21.419592+00:00 +2025-12-27,Devin,186,26,2026-04-09T23:13:21.419592+00:00 +2025-12-27,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-27,Codegen,18,5,2026-04-09T23:13:21.419592+00:00 +2025-12-27,Jules,57,24,2026-04-09T23:13:21.419592+00:00 +2025-12-27,Gru,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-27,OpenHands,2,1,2026-04-09T23:13:21.419592+00:00 +2025-12-27,Open SWE,6,1,2026-04-09T23:13:21.419592+00:00 +2025-12-28,Codex,7847,1686,2026-04-09T23:13:21.419592+00:00 +2025-12-28,Copilot,12391,2277,2026-04-09T23:13:21.419592+00:00 +2025-12-28,Claude Code,14519,2377,2026-04-09T23:13:21.419592+00:00 +2025-12-28,Cursor,1126,211,2026-04-09T23:13:21.419592+00:00 +2025-12-28,Devin,114,25,2026-04-09T23:13:21.419592+00:00 +2025-12-28,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-28,Codegen,6,4,2026-04-09T23:13:21.419592+00:00 +2025-12-28,Jules,76,25,2026-04-09T23:13:21.419592+00:00 +2025-12-28,Gru,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-28,OpenHands,8,4,2026-04-09T23:13:21.419592+00:00 +2025-12-28,Open SWE,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-29,Codex,8094,1822,2026-04-09T23:13:21.419592+00:00 +2025-12-29,Copilot,11859,2543,2026-04-09T23:13:21.419592+00:00 +2025-12-29,Claude Code,13541,2568,2026-04-09T23:13:21.419592+00:00 +2025-12-29,Cursor,928,226,2026-04-09T23:13:21.419592+00:00 +2025-12-29,Devin,182,36,2026-04-09T23:13:21.419592+00:00 +2025-12-29,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-29,Codegen,14,6,2026-04-09T23:13:21.419592+00:00 +2025-12-29,Jules,86,32,2026-04-09T23:13:21.419592+00:00 +2025-12-29,Gru,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-29,OpenHands,16,5,2026-04-09T23:13:21.419592+00:00 +2025-12-29,Open SWE,12,1,2026-04-09T23:13:21.419592+00:00 +2025-12-30,Codex,7709,1835,2026-04-09T23:13:21.419592+00:00 +2025-12-30,Copilot,11663,2393,2026-04-09T23:13:21.419592+00:00 +2025-12-30,Claude Code,13701,2621,2026-04-09T23:13:21.419592+00:00 +2025-12-30,Cursor,1265,264,2026-04-09T23:13:21.419592+00:00 +2025-12-30,Devin,174,35,2026-04-09T23:13:21.419592+00:00 +2025-12-30,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-30,Codegen,8,4,2026-04-09T23:13:21.419592+00:00 +2025-12-30,Jules,119,28,2026-04-09T23:13:21.419592+00:00 +2025-12-30,Gru,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-30,OpenHands,3,2,2026-04-09T23:13:21.419592+00:00 +2025-12-30,Open SWE,90,4,2026-04-09T23:13:21.419592+00:00 +2025-12-31,Codex,6660,1526,2026-04-09T23:13:21.419592+00:00 +2025-12-31,Copilot,10356,2187,2026-04-09T23:13:21.419592+00:00 +2025-12-31,Claude Code,12255,2383,2026-04-09T23:13:21.419592+00:00 +2025-12-31,Cursor,919,216,2026-04-09T23:13:21.419592+00:00 +2025-12-31,Devin,261,37,2026-04-09T23:13:21.419592+00:00 +2025-12-31,Sweep,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-31,Codegen,17,5,2026-04-09T23:13:21.419592+00:00 +2025-12-31,Jules,84,22,2026-04-09T23:13:21.419592+00:00 +2025-12-31,Gru,0,0,2026-04-09T23:13:21.419592+00:00 +2025-12-31,OpenHands,5,1,2026-04-09T23:13:21.419592+00:00 +2025-12-31,Open SWE,44,1,2026-04-09T23:13:21.419592+00:00 +2025-11-01,Codex,12698,2464,2026-04-10T04:36:46.554990+00:00 +2025-11-01,Copilot,10593,2188,2026-04-10T04:36:46.554990+00:00 +2025-11-01,Claude Code,6141,1377,2026-04-10T04:36:46.554990+00:00 +2025-11-01,Cursor,1685,409,2026-04-10T04:36:46.554990+00:00 +2025-11-01,Devin,172,39,2026-04-10T04:36:46.554990+00:00 +2025-11-01,Sweep,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-01,Codegen,56,9,2026-04-10T04:36:46.554990+00:00 +2025-11-01,Jules,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-01,Gru,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-01,OpenHands,1,1,2026-04-10T04:36:46.554990+00:00 +2025-11-01,Open SWE,3,1,2026-04-10T04:36:46.554990+00:00 +2025-11-02,Codex,10159,2389,2026-04-10T04:36:46.554990+00:00 +2025-11-02,Copilot,11695,2217,2026-04-10T04:36:46.554990+00:00 +2025-11-02,Claude Code,6866,1426,2026-04-10T04:36:46.554990+00:00 +2025-11-02,Cursor,1872,399,2026-04-10T04:36:46.554990+00:00 +2025-11-02,Devin,251,40,2026-04-10T04:36:46.554990+00:00 +2025-11-02,Sweep,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-02,Codegen,52,11,2026-04-10T04:36:46.554990+00:00 +2025-11-02,Jules,4,1,2026-04-10T04:36:46.554990+00:00 +2025-11-02,Gru,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-02,OpenHands,6,2,2026-04-10T04:36:46.554990+00:00 +2025-11-02,Open SWE,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-03,Codex,8063,2545,2026-04-10T04:36:46.554990+00:00 +2025-11-03,Copilot,9830,2515,2026-04-10T04:36:46.554990+00:00 +2025-11-03,Claude Code,6008,1460,2026-04-10T04:36:46.554990+00:00 +2025-11-03,Cursor,1582,443,2026-04-10T04:36:46.554990+00:00 +2025-11-03,Devin,270,53,2026-04-10T04:36:46.554990+00:00 +2025-11-03,Sweep,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-03,Codegen,13,7,2026-04-10T04:36:46.554990+00:00 +2025-11-03,Jules,5,3,2026-04-10T04:36:46.554990+00:00 +2025-11-03,Gru,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-03,OpenHands,24,4,2026-04-10T04:36:46.554990+00:00 +2025-11-03,Open SWE,1,1,2026-04-10T04:36:46.554990+00:00 +2025-11-04,Codex,7186,2430,2026-04-10T04:36:46.554990+00:00 +2025-11-04,Copilot,10813,2639,2026-04-10T04:36:46.554990+00:00 +2025-11-04,Claude Code,8404,2516,2026-04-10T04:36:46.554990+00:00 +2025-11-04,Cursor,1799,478,2026-04-10T04:36:46.554990+00:00 +2025-11-04,Devin,305,56,2026-04-10T04:36:46.554990+00:00 +2025-11-04,Sweep,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-04,Codegen,31,5,2026-04-10T04:36:46.554990+00:00 +2025-11-04,Jules,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-04,Gru,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-04,OpenHands,30,2,2026-04-10T04:36:46.554990+00:00 +2025-11-04,Open SWE,21,2,2026-04-10T04:36:46.554990+00:00 +2025-11-05,Codex,7152,2374,2026-04-10T04:36:46.554990+00:00 +2025-11-05,Copilot,10982,2654,2026-04-10T04:36:46.554990+00:00 +2025-11-05,Claude Code,19022,4666,2026-04-10T04:36:46.554990+00:00 +2025-11-05,Cursor,1664,450,2026-04-10T04:36:46.554990+00:00 +2025-11-05,Devin,273,60,2026-04-10T04:36:46.554990+00:00 +2025-11-05,Sweep,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-05,Codegen,13,4,2026-04-10T04:36:46.554990+00:00 +2025-11-05,Jules,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-05,Gru,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-05,OpenHands,18,5,2026-04-10T04:36:46.554990+00:00 +2025-11-05,Open SWE,5,1,2026-04-10T04:36:46.554990+00:00 +2025-11-06,Codex,8524,2508,2026-04-10T04:36:46.554990+00:00 +2025-11-06,Copilot,10766,2634,2026-04-10T04:36:46.554990+00:00 +2025-11-06,Claude Code,21502,4714,2026-04-10T04:36:46.554990+00:00 +2025-11-06,Cursor,1617,418,2026-04-10T04:36:46.554990+00:00 +2025-11-06,Devin,289,74,2026-04-10T04:36:46.554990+00:00 +2025-11-06,Sweep,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-06,Codegen,18,6,2026-04-10T04:36:46.554990+00:00 +2025-11-06,Jules,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-06,Gru,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-06,OpenHands,4,3,2026-04-10T04:36:46.554990+00:00 +2025-11-06,Open SWE,4,1,2026-04-10T04:36:46.554990+00:00 +2025-11-07,Codex,8652,2481,2026-04-10T04:36:46.554990+00:00 +2025-11-07,Copilot,11017,2583,2026-04-10T04:36:46.554990+00:00 +2025-11-07,Claude Code,23715,4435,2026-04-10T04:36:46.554990+00:00 +2025-11-07,Cursor,1628,445,2026-04-10T04:36:46.554990+00:00 +2025-11-07,Devin,261,53,2026-04-10T04:36:46.554990+00:00 +2025-11-07,Sweep,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-07,Codegen,20,8,2026-04-10T04:36:46.554990+00:00 +2025-11-07,Jules,2,1,2026-04-10T04:36:46.554990+00:00 +2025-11-07,Gru,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-07,OpenHands,15,1,2026-04-10T04:36:46.554990+00:00 +2025-11-07,Open SWE,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-08,Codex,9537,2281,2026-04-10T04:36:46.554990+00:00 +2025-11-08,Copilot,9952,2199,2026-04-10T04:36:46.554990+00:00 +2025-11-08,Claude Code,26778,4365,2026-04-10T04:36:46.554990+00:00 +2025-11-08,Cursor,1779,415,2026-04-10T04:36:46.554990+00:00 +2025-11-08,Devin,205,35,2026-04-10T04:36:46.554990+00:00 +2025-11-08,Sweep,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-08,Codegen,34,12,2026-04-10T04:36:46.554990+00:00 +2025-11-08,Jules,2,1,2026-04-10T04:36:46.554990+00:00 +2025-11-08,Gru,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-08,OpenHands,6,2,2026-04-10T04:36:46.554990+00:00 +2025-11-08,Open SWE,3,1,2026-04-10T04:36:46.554990+00:00 +2025-11-09,Codex,9616,2283,2026-04-10T04:36:46.554990+00:00 +2025-11-09,Copilot,10615,2268,2026-04-10T04:36:46.554990+00:00 +2025-11-09,Claude Code,27426,4487,2026-04-10T04:36:46.554990+00:00 +2025-11-09,Cursor,1583,365,2026-04-10T04:36:46.554990+00:00 +2025-11-09,Devin,263,60,2026-04-10T04:36:46.554990+00:00 +2025-11-09,Sweep,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-09,Codegen,12,5,2026-04-10T04:36:46.554990+00:00 +2025-11-09,Jules,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-09,Gru,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-09,OpenHands,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-09,Open SWE,2,1,2026-04-10T04:36:46.554990+00:00 +2025-11-10,Codex,8449,2403,2026-04-10T04:36:46.554990+00:00 +2025-11-10,Copilot,9028,2613,2026-04-10T04:36:46.554990+00:00 +2025-11-10,Claude Code,21335,4517,2026-04-10T04:36:46.554990+00:00 +2025-11-10,Cursor,1779,443,2026-04-10T04:36:46.554990+00:00 +2025-11-10,Devin,323,57,2026-04-10T04:36:46.554990+00:00 +2025-11-10,Sweep,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-10,Codegen,12,5,2026-04-10T04:36:46.554990+00:00 +2025-11-10,Jules,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-10,Gru,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-10,OpenHands,16,4,2026-04-10T04:36:46.554990+00:00 +2025-11-10,Open SWE,13,2,2026-04-10T04:36:46.554990+00:00 +2025-11-11,Codex,8299,2416,2026-04-10T04:36:46.554990+00:00 +2025-11-11,Copilot,8337,2530,2026-04-10T04:36:46.554990+00:00 +2025-11-11,Claude Code,19058,4375,2026-04-10T04:36:46.554990+00:00 +2025-11-11,Cursor,1585,428,2026-04-10T04:36:46.554990+00:00 +2025-11-11,Devin,307,55,2026-04-10T04:36:46.554990+00:00 +2025-11-11,Sweep,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-11,Codegen,2,2,2026-04-10T04:36:46.554990+00:00 +2025-11-11,Jules,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-11,Gru,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-11,OpenHands,8,2,2026-04-10T04:36:46.554990+00:00 +2025-11-11,Open SWE,9,1,2026-04-10T04:36:46.554990+00:00 +2025-11-12,Codex,8629,2415,2026-04-10T04:36:46.554990+00:00 +2025-11-12,Copilot,8805,2678,2026-04-10T04:36:46.554990+00:00 +2025-11-12,Claude Code,20790,4583,2026-04-10T04:36:46.554990+00:00 +2025-11-12,Cursor,1417,358,2026-04-10T04:36:46.554990+00:00 +2025-11-12,Devin,278,65,2026-04-10T04:36:46.554990+00:00 +2025-11-12,Sweep,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-12,Codegen,20,4,2026-04-10T04:36:46.554990+00:00 +2025-11-12,Jules,4,3,2026-04-10T04:36:46.554990+00:00 +2025-11-12,Gru,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-12,OpenHands,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-12,Open SWE,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-13,Codex,8737,2455,2026-04-10T04:36:46.554990+00:00 +2025-11-13,Copilot,9152,2660,2026-04-10T04:36:46.554990+00:00 +2025-11-13,Claude Code,24354,5505,2026-04-10T04:36:46.554990+00:00 +2025-11-13,Cursor,1182,364,2026-04-10T04:36:46.554990+00:00 +2025-11-13,Devin,298,61,2026-04-10T04:36:46.554990+00:00 +2025-11-13,Sweep,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-13,Codegen,24,7,2026-04-10T04:36:46.554990+00:00 +2025-11-13,Jules,1,1,2026-04-10T04:36:46.554990+00:00 +2025-11-13,Gru,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-13,OpenHands,1,1,2026-04-10T04:36:46.554990+00:00 +2025-11-13,Open SWE,15,1,2026-04-10T04:36:46.554990+00:00 +2025-11-14,Codex,9140,2426,2026-04-10T04:36:46.554990+00:00 +2025-11-14,Copilot,9475,2645,2026-04-10T04:36:46.554990+00:00 +2025-11-14,Claude Code,25861,5571,2026-04-10T04:36:46.554990+00:00 +2025-11-14,Cursor,1337,362,2026-04-10T04:36:46.554990+00:00 +2025-11-14,Devin,290,62,2026-04-10T04:36:46.554990+00:00 +2025-11-14,Sweep,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-14,Codegen,22,8,2026-04-10T04:36:46.554990+00:00 +2025-11-14,Jules,1,1,2026-04-10T04:36:46.554990+00:00 +2025-11-14,Gru,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-14,OpenHands,2,1,2026-04-10T04:36:46.554990+00:00 +2025-11-14,Open SWE,35,2,2026-04-10T04:36:46.554990+00:00 +2025-11-15,Codex,9924,2193,2026-04-10T04:36:46.554990+00:00 +2025-11-15,Copilot,10779,2418,2026-04-10T04:36:46.554990+00:00 +2025-11-15,Claude Code,31655,5657,2026-04-10T04:36:46.554990+00:00 +2025-11-15,Cursor,1314,332,2026-04-10T04:36:46.554990+00:00 +2025-11-15,Devin,193,44,2026-04-10T04:36:46.554990+00:00 +2025-11-15,Sweep,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-15,Codegen,4,1,2026-04-10T04:36:46.554990+00:00 +2025-11-15,Jules,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-15,Gru,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-15,OpenHands,1,1,2026-04-10T04:36:46.554990+00:00 +2025-11-15,Open SWE,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-16,Codex,10257,2326,2026-04-10T04:36:46.554990+00:00 +2025-11-16,Copilot,11146,2454,2026-04-10T04:36:46.554990+00:00 +2025-11-16,Claude Code,36414,6377,2026-04-10T04:36:46.554990+00:00 +2025-11-16,Cursor,1368,312,2026-04-10T04:36:46.554990+00:00 +2025-11-16,Devin,337,52,2026-04-10T04:36:46.554990+00:00 +2025-11-16,Sweep,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-16,Codegen,9,6,2026-04-10T04:36:46.554990+00:00 +2025-11-16,Jules,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-16,Gru,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-16,OpenHands,7,2,2026-04-10T04:36:46.554990+00:00 +2025-11-16,Open SWE,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-17,Codex,9192,2469,2026-04-10T04:36:46.554990+00:00 +2025-11-17,Copilot,9884,2648,2026-04-10T04:36:46.554990+00:00 +2025-11-17,Claude Code,32416,6941,2026-04-10T04:36:46.554990+00:00 +2025-11-17,Cursor,1175,350,2026-04-10T04:36:46.554990+00:00 +2025-11-17,Devin,244,49,2026-04-10T04:36:46.554990+00:00 +2025-11-17,Sweep,4,1,2026-04-10T04:36:46.554990+00:00 +2025-11-17,Codegen,10,3,2026-04-10T04:36:46.554990+00:00 +2025-11-17,Jules,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-17,Gru,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-17,OpenHands,4,2,2026-04-10T04:36:46.554990+00:00 +2025-11-17,Open SWE,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-18,Codex,8139,2353,2026-04-10T04:36:46.554990+00:00 +2025-11-18,Copilot,8903,2602,2026-04-10T04:36:46.554990+00:00 +2025-11-18,Claude Code,33867,7535,2026-04-10T04:36:46.554990+00:00 +2025-11-18,Cursor,1131,318,2026-04-10T04:36:46.554990+00:00 +2025-11-18,Devin,242,59,2026-04-10T04:36:46.554990+00:00 +2025-11-18,Sweep,2,1,2026-04-10T04:36:46.554990+00:00 +2025-11-18,Codegen,32,5,2026-04-10T04:36:46.554990+00:00 +2025-11-18,Jules,4,3,2026-04-10T04:36:46.554990+00:00 +2025-11-18,Gru,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-18,OpenHands,15,5,2026-04-10T04:36:46.554990+00:00 +2025-11-18,Open SWE,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-19,Codex,8097,2369,2026-04-10T04:36:46.554990+00:00 +2025-11-19,Copilot,8658,2587,2026-04-10T04:36:46.554990+00:00 +2025-11-19,Claude Code,27173,5844,2026-04-10T04:36:46.554990+00:00 +2025-11-19,Cursor,632,198,2026-04-10T04:36:46.554990+00:00 +2025-11-19,Devin,237,49,2026-04-10T04:36:46.554990+00:00 +2025-11-19,Sweep,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-19,Codegen,35,7,2026-04-10T04:36:46.554990+00:00 +2025-11-19,Jules,4,3,2026-04-10T04:36:46.554990+00:00 +2025-11-19,Gru,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-19,OpenHands,5,4,2026-04-10T04:36:46.554990+00:00 +2025-11-19,Open SWE,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-20,Codex,8425,2428,2026-04-10T04:36:46.554990+00:00 +2025-11-20,Copilot,9503,2688,2026-04-10T04:36:46.554990+00:00 +2025-11-20,Claude Code,21256,4509,2026-04-10T04:36:46.554990+00:00 +2025-11-20,Cursor,644,192,2026-04-10T04:36:46.554990+00:00 +2025-11-20,Devin,358,72,2026-04-10T04:36:46.554990+00:00 +2025-11-20,Sweep,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-20,Codegen,25,6,2026-04-10T04:36:46.554990+00:00 +2025-11-20,Jules,2,1,2026-04-10T04:36:46.554990+00:00 +2025-11-20,Gru,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-20,OpenHands,3,2,2026-04-10T04:36:46.554990+00:00 +2025-11-20,Open SWE,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-21,Codex,9275,2412,2026-04-10T04:36:46.554990+00:00 +2025-11-21,Copilot,11942,2792,2026-04-10T04:36:46.554990+00:00 +2025-11-21,Claude Code,21457,4252,2026-04-10T04:36:46.554990+00:00 +2025-11-21,Cursor,589,196,2026-04-10T04:36:46.554990+00:00 +2025-11-21,Devin,334,63,2026-04-10T04:36:46.554990+00:00 +2025-11-21,Sweep,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-21,Codegen,21,2,2026-04-10T04:36:46.554990+00:00 +2025-11-21,Jules,5,1,2026-04-10T04:36:46.554990+00:00 +2025-11-21,Gru,1,1,2026-04-10T04:36:46.554990+00:00 +2025-11-21,OpenHands,2,1,2026-04-10T04:36:46.554990+00:00 +2025-11-21,Open SWE,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-22,Codex,10188,2214,2026-04-10T04:36:46.554990+00:00 +2025-11-22,Copilot,12044,2363,2026-04-10T04:36:46.554990+00:00 +2025-11-22,Claude Code,26938,4354,2026-04-10T04:36:46.554990+00:00 +2025-11-22,Cursor,800,184,2026-04-10T04:36:46.554990+00:00 +2025-11-22,Devin,249,53,2026-04-10T04:36:46.554990+00:00 +2025-11-22,Sweep,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-22,Codegen,11,3,2026-04-10T04:36:46.554990+00:00 +2025-11-22,Jules,3,2,2026-04-10T04:36:46.554990+00:00 +2025-11-22,Gru,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-22,OpenHands,2,1,2026-04-10T04:36:46.554990+00:00 +2025-11-22,Open SWE,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-23,Codex,10782,2267,2026-04-10T04:36:46.554990+00:00 +2025-11-23,Copilot,12409,2450,2026-04-10T04:36:46.554990+00:00 +2025-11-23,Claude Code,24421,4604,2026-04-10T04:36:46.554990+00:00 +2025-11-23,Cursor,865,202,2026-04-10T04:36:46.554990+00:00 +2025-11-23,Devin,152,38,2026-04-10T04:36:46.554990+00:00 +2025-11-23,Sweep,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-23,Codegen,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-23,Jules,5,2,2026-04-10T04:36:46.554990+00:00 +2025-11-23,Gru,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-23,OpenHands,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-23,Open SWE,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-24,Codex,9506,2402,2026-04-10T04:36:46.554990+00:00 +2025-11-24,Copilot,10127,2669,2026-04-10T04:36:46.554990+00:00 +2025-11-24,Claude Code,12117,3099,2026-04-10T04:36:46.554990+00:00 +2025-11-24,Cursor,679,222,2026-04-10T04:36:46.554990+00:00 +2025-11-24,Devin,200,53,2026-04-10T04:36:46.554990+00:00 +2025-11-24,Sweep,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-24,Codegen,10,5,2026-04-10T04:36:46.554990+00:00 +2025-11-24,Jules,6,4,2026-04-10T04:36:46.554990+00:00 +2025-11-24,Gru,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-24,OpenHands,2,1,2026-04-10T04:36:46.554990+00:00 +2025-11-24,Open SWE,1,1,2026-04-10T04:36:46.554990+00:00 +2025-11-25,Codex,9175,2364,2026-04-10T04:36:46.554990+00:00 +2025-11-25,Copilot,8375,2584,2026-04-10T04:36:46.554990+00:00 +2025-11-25,Claude Code,11568,2942,2026-04-10T04:36:46.554990+00:00 +2025-11-25,Cursor,572,206,2026-04-10T04:36:46.554990+00:00 +2025-11-25,Devin,280,52,2026-04-10T04:36:46.554990+00:00 +2025-11-25,Sweep,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-25,Codegen,11,3,2026-04-10T04:36:46.554990+00:00 +2025-11-25,Jules,10,7,2026-04-10T04:36:46.554990+00:00 +2025-11-25,Gru,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-25,OpenHands,26,4,2026-04-10T04:36:46.554990+00:00 +2025-11-25,Open SWE,1,1,2026-04-10T04:36:46.554990+00:00 +2025-11-26,Codex,8810,2365,2026-04-10T04:36:46.554990+00:00 +2025-11-26,Copilot,9089,2572,2026-04-10T04:36:46.554990+00:00 +2025-11-26,Claude Code,11733,2762,2026-04-10T04:36:46.554990+00:00 +2025-11-26,Cursor,651,217,2026-04-10T04:36:46.554990+00:00 +2025-11-26,Devin,260,60,2026-04-10T04:36:46.554990+00:00 +2025-11-26,Sweep,3,1,2026-04-10T04:36:46.554990+00:00 +2025-11-26,Codegen,7,5,2026-04-10T04:36:46.554990+00:00 +2025-11-26,Jules,4,2,2026-04-10T04:36:46.554990+00:00 +2025-11-26,Gru,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-26,OpenHands,13,4,2026-04-10T04:36:46.554990+00:00 +2025-11-26,Open SWE,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-27,Codex,7879,2143,2026-04-10T04:36:46.554990+00:00 +2025-11-27,Copilot,8485,2509,2026-04-10T04:36:46.554990+00:00 +2025-11-27,Claude Code,10935,2558,2026-04-10T04:36:46.554990+00:00 +2025-11-27,Cursor,583,186,2026-04-10T04:36:46.554990+00:00 +2025-11-27,Devin,169,42,2026-04-10T04:36:46.554990+00:00 +2025-11-27,Sweep,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-27,Codegen,2,1,2026-04-10T04:36:46.554990+00:00 +2025-11-27,Jules,19,16,2026-04-10T04:36:46.554990+00:00 +2025-11-27,Gru,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-27,OpenHands,2,1,2026-04-10T04:36:46.554990+00:00 +2025-11-27,Open SWE,9,1,2026-04-10T04:36:46.554990+00:00 +2025-11-28,Codex,7557,1953,2026-04-10T04:36:46.554990+00:00 +2025-11-28,Copilot,8772,2406,2026-04-10T04:36:46.554990+00:00 +2025-11-28,Claude Code,10935,2412,2026-04-10T04:36:46.554990+00:00 +2025-11-28,Cursor,775,210,2026-04-10T04:36:46.554990+00:00 +2025-11-28,Devin,127,36,2026-04-10T04:36:46.554990+00:00 +2025-11-28,Sweep,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-28,Codegen,11,4,2026-04-10T04:36:46.554990+00:00 +2025-11-28,Jules,5,4,2026-04-10T04:36:46.554990+00:00 +2025-11-28,Gru,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-28,OpenHands,3,1,2026-04-10T04:36:46.554990+00:00 +2025-11-28,Open SWE,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-29,Codex,7324,1757,2026-04-10T04:36:46.554990+00:00 +2025-11-29,Copilot,9818,2302,2026-04-10T04:36:46.554990+00:00 +2025-11-29,Claude Code,11126,2172,2026-04-10T04:36:46.554990+00:00 +2025-11-29,Cursor,663,166,2026-04-10T04:36:46.554990+00:00 +2025-11-29,Devin,155,32,2026-04-10T04:36:46.554990+00:00 +2025-11-29,Sweep,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-29,Codegen,12,3,2026-04-10T04:36:46.554990+00:00 +2025-11-29,Jules,15,8,2026-04-10T04:36:46.554990+00:00 +2025-11-29,Gru,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-29,OpenHands,3,1,2026-04-10T04:36:46.554990+00:00 +2025-11-29,Open SWE,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-30,Codex,16091,1927,2026-04-10T04:36:46.554990+00:00 +2025-11-30,Copilot,9554,2322,2026-04-10T04:36:46.554990+00:00 +2025-11-30,Claude Code,12744,2071,2026-04-10T04:36:46.554990+00:00 +2025-11-30,Cursor,776,166,2026-04-10T04:36:46.554990+00:00 +2025-11-30,Devin,162,30,2026-04-10T04:36:46.554990+00:00 +2025-11-30,Sweep,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-30,Codegen,9,4,2026-04-10T04:36:46.554990+00:00 +2025-11-30,Jules,248,13,2026-04-10T04:36:46.554990+00:00 +2025-11-30,Gru,0,0,2026-04-10T04:36:46.554990+00:00 +2025-11-30,OpenHands,2,1,2026-04-10T04:36:46.554990+00:00 +2025-11-30,Open SWE,0,0,2026-04-10T04:36:46.554990+00:00 +2025-10-01,Codex,11569,2542,2026-04-10T04:37:06.452634+00:00 +2025-10-01,Copilot,7608,1970,2026-04-10T04:37:06.452634+00:00 +2025-10-01,Claude Code,39,14,2026-04-10T04:37:06.452634+00:00 +2025-10-01,Cursor,890,274,2026-04-10T04:37:06.452634+00:00 +2025-10-01,Devin,123,41,2026-04-10T04:37:06.452634+00:00 +2025-10-01,Sweep,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-01,Codegen,35,11,2026-04-10T04:37:06.452634+00:00 +2025-10-01,Jules,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-01,Gru,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-01,OpenHands,38,1,2026-04-10T04:37:06.452634+00:00 +2025-10-01,Open SWE,6,1,2026-04-10T04:37:06.452634+00:00 +2025-10-02,Codex,12020,2591,2026-04-10T04:37:06.452634+00:00 +2025-10-02,Copilot,8282,2045,2026-04-10T04:37:06.452634+00:00 +2025-10-02,Claude Code,70,25,2026-04-10T04:37:06.452634+00:00 +2025-10-02,Cursor,1009,288,2026-04-10T04:37:06.452634+00:00 +2025-10-02,Devin,116,38,2026-04-10T04:37:06.452634+00:00 +2025-10-02,Sweep,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-02,Codegen,30,8,2026-04-10T04:37:06.452634+00:00 +2025-10-02,Jules,7,3,2026-04-10T04:37:06.452634+00:00 +2025-10-02,Gru,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-02,OpenHands,16,2,2026-04-10T04:37:06.452634+00:00 +2025-10-02,Open SWE,38,2,2026-04-10T04:37:06.452634+00:00 +2025-10-03,Codex,12423,2437,2026-04-10T04:37:06.452634+00:00 +2025-10-03,Copilot,8541,1925,2026-04-10T04:37:06.452634+00:00 +2025-10-03,Claude Code,67,26,2026-04-10T04:37:06.452634+00:00 +2025-10-03,Cursor,1289,367,2026-04-10T04:37:06.452634+00:00 +2025-10-03,Devin,125,43,2026-04-10T04:37:06.452634+00:00 +2025-10-03,Sweep,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-03,Codegen,42,8,2026-04-10T04:37:06.452634+00:00 +2025-10-03,Jules,7,3,2026-04-10T04:37:06.452634+00:00 +2025-10-03,Gru,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-03,OpenHands,6,1,2026-04-10T04:37:06.452634+00:00 +2025-10-03,Open SWE,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-04,Codex,13899,2401,2026-04-10T04:37:06.452634+00:00 +2025-10-04,Copilot,9301,1726,2026-04-10T04:37:06.452634+00:00 +2025-10-04,Claude Code,91,21,2026-04-10T04:37:06.452634+00:00 +2025-10-04,Cursor,1797,409,2026-04-10T04:37:06.452634+00:00 +2025-10-04,Devin,116,31,2026-04-10T04:37:06.452634+00:00 +2025-10-04,Sweep,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-04,Codegen,37,7,2026-04-10T04:37:06.452634+00:00 +2025-10-04,Jules,16,5,2026-04-10T04:37:06.452634+00:00 +2025-10-04,Gru,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-04,OpenHands,1,1,2026-04-10T04:37:06.452634+00:00 +2025-10-04,Open SWE,31,2,2026-04-10T04:37:06.452634+00:00 +2025-10-05,Codex,14012,2405,2026-04-10T04:37:06.452634+00:00 +2025-10-05,Copilot,9078,1664,2026-04-10T04:37:06.452634+00:00 +2025-10-05,Claude Code,51,20,2026-04-10T04:37:06.452634+00:00 +2025-10-05,Cursor,1807,406,2026-04-10T04:37:06.452634+00:00 +2025-10-05,Devin,145,36,2026-04-10T04:37:06.452634+00:00 +2025-10-05,Sweep,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-05,Codegen,24,5,2026-04-10T04:37:06.452634+00:00 +2025-10-05,Jules,6,2,2026-04-10T04:37:06.452634+00:00 +2025-10-05,Gru,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-05,OpenHands,6,1,2026-04-10T04:37:06.452634+00:00 +2025-10-05,Open SWE,10,1,2026-04-10T04:37:06.452634+00:00 +2025-10-06,Codex,12295,2746,2026-04-10T04:37:06.452634+00:00 +2025-10-06,Copilot,7890,1864,2026-04-10T04:37:06.452634+00:00 +2025-10-06,Claude Code,75,23,2026-04-10T04:37:06.452634+00:00 +2025-10-06,Cursor,1797,463,2026-04-10T04:37:06.452634+00:00 +2025-10-06,Devin,139,53,2026-04-10T04:37:06.452634+00:00 +2025-10-06,Sweep,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-06,Codegen,27,6,2026-04-10T04:37:06.452634+00:00 +2025-10-06,Jules,1,1,2026-04-10T04:37:06.452634+00:00 +2025-10-06,Gru,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-06,OpenHands,3,1,2026-04-10T04:37:06.452634+00:00 +2025-10-06,Open SWE,1,1,2026-04-10T04:37:06.452634+00:00 +2025-10-07,Codex,13411,3072,2026-04-10T04:37:06.452634+00:00 +2025-10-07,Copilot,8625,2070,2026-04-10T04:37:06.452634+00:00 +2025-10-07,Claude Code,90,16,2026-04-10T04:37:06.452634+00:00 +2025-10-07,Cursor,1762,412,2026-04-10T04:37:06.452634+00:00 +2025-10-07,Devin,177,46,2026-04-10T04:37:06.452634+00:00 +2025-10-07,Sweep,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-07,Codegen,44,10,2026-04-10T04:37:06.452634+00:00 +2025-10-07,Jules,3,1,2026-04-10T04:37:06.452634+00:00 +2025-10-07,Gru,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-07,OpenHands,2,1,2026-04-10T04:37:06.452634+00:00 +2025-10-07,Open SWE,6,1,2026-04-10T04:37:06.452634+00:00 +2025-10-08,Codex,,,2026-04-10T04:37:06.452634+00:00 +2025-10-08,Copilot,,,2026-04-10T04:37:06.452634+00:00 +2025-10-08,Claude Code,,,2026-04-10T04:37:06.452634+00:00 +2025-10-08,Cursor,,,2026-04-10T04:37:06.452634+00:00 +2025-10-08,Devin,,,2026-04-10T04:37:06.452634+00:00 +2025-10-08,Sweep,,,2026-04-10T04:37:06.452634+00:00 +2025-10-08,Codegen,,,2026-04-10T04:37:06.452634+00:00 +2025-10-08,Jules,,,2026-04-10T04:37:06.452634+00:00 +2025-10-08,Gru,,,2026-04-10T04:37:06.452634+00:00 +2025-10-08,OpenHands,,,2026-04-10T04:37:06.452634+00:00 +2025-10-08,Open SWE,,,2026-04-10T04:37:06.452634+00:00 +2025-10-09,Codex,,,2026-04-10T04:37:06.452634+00:00 +2025-10-09,Copilot,,,2026-04-10T04:37:06.452634+00:00 +2025-10-09,Claude Code,,,2026-04-10T04:37:06.452634+00:00 +2025-10-09,Cursor,,,2026-04-10T04:37:06.452634+00:00 +2025-10-09,Devin,,,2026-04-10T04:37:06.452634+00:00 +2025-10-09,Sweep,,,2026-04-10T04:37:06.452634+00:00 +2025-10-09,Codegen,,,2026-04-10T04:37:06.452634+00:00 +2025-10-09,Jules,,,2026-04-10T04:37:06.452634+00:00 +2025-10-09,Gru,,,2026-04-10T04:37:06.452634+00:00 +2025-10-09,OpenHands,,,2026-04-10T04:37:06.452634+00:00 +2025-10-09,Open SWE,,,2026-04-10T04:37:06.452634+00:00 +2025-10-10,Codex,,,2026-04-10T04:37:06.452634+00:00 +2025-10-10,Copilot,,,2026-04-10T04:37:06.452634+00:00 +2025-10-10,Claude Code,,,2026-04-10T04:37:06.452634+00:00 +2025-10-10,Cursor,,,2026-04-10T04:37:06.452634+00:00 +2025-10-10,Devin,,,2026-04-10T04:37:06.452634+00:00 +2025-10-10,Sweep,,,2026-04-10T04:37:06.452634+00:00 +2025-10-10,Codegen,,,2026-04-10T04:37:06.452634+00:00 +2025-10-10,Jules,,,2026-04-10T04:37:06.452634+00:00 +2025-10-10,Gru,,,2026-04-10T04:37:06.452634+00:00 +2025-10-10,OpenHands,,,2026-04-10T04:37:06.452634+00:00 +2025-10-10,Open SWE,,,2026-04-10T04:37:06.452634+00:00 +2025-10-11,Codex,,,2026-04-10T04:37:06.452634+00:00 +2025-10-11,Copilot,,,2026-04-10T04:37:06.452634+00:00 +2025-10-11,Claude Code,,,2026-04-10T04:37:06.452634+00:00 +2025-10-11,Cursor,,,2026-04-10T04:37:06.452634+00:00 +2025-10-11,Devin,,,2026-04-10T04:37:06.452634+00:00 +2025-10-11,Sweep,,,2026-04-10T04:37:06.452634+00:00 +2025-10-11,Codegen,,,2026-04-10T04:37:06.452634+00:00 +2025-10-11,Jules,,,2026-04-10T04:37:06.452634+00:00 +2025-10-11,Gru,,,2026-04-10T04:37:06.452634+00:00 +2025-10-11,OpenHands,,,2026-04-10T04:37:06.452634+00:00 +2025-10-11,Open SWE,,,2026-04-10T04:37:06.452634+00:00 +2025-10-12,Codex,,,2026-04-10T04:37:06.452634+00:00 +2025-10-12,Copilot,,,2026-04-10T04:37:06.452634+00:00 +2025-10-12,Claude Code,,,2026-04-10T04:37:06.452634+00:00 +2025-10-12,Cursor,,,2026-04-10T04:37:06.452634+00:00 +2025-10-12,Devin,,,2026-04-10T04:37:06.452634+00:00 +2025-10-12,Sweep,,,2026-04-10T04:37:06.452634+00:00 +2025-10-12,Codegen,,,2026-04-10T04:37:06.452634+00:00 +2025-10-12,Jules,,,2026-04-10T04:37:06.452634+00:00 +2025-10-12,Gru,,,2026-04-10T04:37:06.452634+00:00 +2025-10-12,OpenHands,,,2026-04-10T04:37:06.452634+00:00 +2025-10-12,Open SWE,,,2026-04-10T04:37:06.452634+00:00 +2025-10-13,Codex,,,2026-04-10T04:37:06.452634+00:00 +2025-10-13,Copilot,,,2026-04-10T04:37:06.452634+00:00 +2025-10-13,Claude Code,,,2026-04-10T04:37:06.452634+00:00 +2025-10-13,Cursor,,,2026-04-10T04:37:06.452634+00:00 +2025-10-13,Devin,,,2026-04-10T04:37:06.452634+00:00 +2025-10-13,Sweep,,,2026-04-10T04:37:06.452634+00:00 +2025-10-13,Codegen,,,2026-04-10T04:37:06.452634+00:00 +2025-10-13,Jules,,,2026-04-10T04:37:06.452634+00:00 +2025-10-13,Gru,,,2026-04-10T04:37:06.452634+00:00 +2025-10-13,OpenHands,,,2026-04-10T04:37:06.452634+00:00 +2025-10-13,Open SWE,,,2026-04-10T04:37:06.452634+00:00 +2025-10-14,Codex,,,2026-04-10T04:37:06.452634+00:00 +2025-10-14,Copilot,,,2026-04-10T04:37:06.452634+00:00 +2025-10-14,Claude Code,,,2026-04-10T04:37:06.452634+00:00 +2025-10-14,Cursor,,,2026-04-10T04:37:06.452634+00:00 +2025-10-14,Devin,,,2026-04-10T04:37:06.452634+00:00 +2025-10-14,Sweep,,,2026-04-10T04:37:06.452634+00:00 +2025-10-14,Codegen,,,2026-04-10T04:37:06.452634+00:00 +2025-10-14,Jules,,,2026-04-10T04:37:06.452634+00:00 +2025-10-14,Gru,,,2026-04-10T04:37:06.452634+00:00 +2025-10-14,OpenHands,,,2026-04-10T04:37:06.452634+00:00 +2025-10-14,Open SWE,,,2026-04-10T04:37:06.452634+00:00 +2025-10-15,Codex,14008,3087,2026-04-10T04:37:06.452634+00:00 +2025-10-15,Copilot,8325,1977,2026-04-10T04:37:06.452634+00:00 +2025-10-15,Claude Code,43,19,2026-04-10T04:37:06.452634+00:00 +2025-10-15,Cursor,1671,453,2026-04-10T04:37:06.452634+00:00 +2025-10-15,Devin,181,60,2026-04-10T04:37:06.452634+00:00 +2025-10-15,Sweep,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-15,Codegen,59,16,2026-04-10T04:37:06.452634+00:00 +2025-10-15,Jules,1,1,2026-04-10T04:37:06.452634+00:00 +2025-10-15,Gru,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-15,OpenHands,17,2,2026-04-10T04:37:06.452634+00:00 +2025-10-15,Open SWE,27,1,2026-04-10T04:37:06.452634+00:00 +2025-10-16,Codex,13991,3044,2026-04-10T04:37:06.452634+00:00 +2025-10-16,Copilot,6580,1786,2026-04-10T04:37:06.452634+00:00 +2025-10-16,Claude Code,77,24,2026-04-10T04:37:06.452634+00:00 +2025-10-16,Cursor,1330,429,2026-04-10T04:37:06.452634+00:00 +2025-10-16,Devin,190,61,2026-04-10T04:37:06.452634+00:00 +2025-10-16,Sweep,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-16,Codegen,52,14,2026-04-10T04:37:06.452634+00:00 +2025-10-16,Jules,3,3,2026-04-10T04:37:06.452634+00:00 +2025-10-16,Gru,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-16,OpenHands,41,2,2026-04-10T04:37:06.452634+00:00 +2025-10-16,Open SWE,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-17,Codex,13889,2883,2026-04-10T04:37:06.452634+00:00 +2025-10-17,Copilot,6666,1728,2026-04-10T04:37:06.452634+00:00 +2025-10-17,Claude Code,77,23,2026-04-10T04:37:06.452634+00:00 +2025-10-17,Cursor,1305,412,2026-04-10T04:37:06.452634+00:00 +2025-10-17,Devin,192,64,2026-04-10T04:37:06.452634+00:00 +2025-10-17,Sweep,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-17,Codegen,65,16,2026-04-10T04:37:06.452634+00:00 +2025-10-17,Jules,1,1,2026-04-10T04:37:06.452634+00:00 +2025-10-17,Gru,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-17,OpenHands,32,1,2026-04-10T04:37:06.452634+00:00 +2025-10-17,Open SWE,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-18,Codex,14547,2525,2026-04-10T04:37:06.452634+00:00 +2025-10-18,Copilot,7242,1609,2026-04-10T04:37:06.452634+00:00 +2025-10-18,Claude Code,68,31,2026-04-10T04:37:06.452634+00:00 +2025-10-18,Cursor,1351,362,2026-04-10T04:37:06.452634+00:00 +2025-10-18,Devin,164,35,2026-04-10T04:37:06.452634+00:00 +2025-10-18,Sweep,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-18,Codegen,38,9,2026-04-10T04:37:06.452634+00:00 +2025-10-18,Jules,6,4,2026-04-10T04:37:06.452634+00:00 +2025-10-18,Gru,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-18,OpenHands,3,1,2026-04-10T04:37:06.452634+00:00 +2025-10-18,Open SWE,8,1,2026-04-10T04:37:06.452634+00:00 +2025-10-19,Codex,15228,2676,2026-04-10T04:37:06.452634+00:00 +2025-10-19,Copilot,7181,1520,2026-04-10T04:37:06.452634+00:00 +2025-10-19,Claude Code,45,20,2026-04-10T04:37:06.452634+00:00 +2025-10-19,Cursor,1467,385,2026-04-10T04:37:06.452634+00:00 +2025-10-19,Devin,170,38,2026-04-10T04:37:06.452634+00:00 +2025-10-19,Sweep,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-19,Codegen,34,8,2026-04-10T04:37:06.452634+00:00 +2025-10-19,Jules,7,1,2026-04-10T04:37:06.452634+00:00 +2025-10-19,Gru,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-19,OpenHands,11,1,2026-04-10T04:37:06.452634+00:00 +2025-10-19,Open SWE,3,2,2026-04-10T04:37:06.452634+00:00 +2025-10-20,Codex,12888,2935,2026-04-10T04:37:06.452634+00:00 +2025-10-20,Copilot,5519,1607,2026-04-10T04:37:06.452634+00:00 +2025-10-20,Claude Code,731,365,2026-04-10T04:37:06.452634+00:00 +2025-10-20,Cursor,951,303,2026-04-10T04:37:06.452634+00:00 +2025-10-20,Devin,230,54,2026-04-10T04:37:06.452634+00:00 +2025-10-20,Sweep,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-20,Codegen,31,6,2026-04-10T04:37:06.452634+00:00 +2025-10-20,Jules,2,2,2026-04-10T04:37:06.452634+00:00 +2025-10-20,Gru,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-20,OpenHands,15,2,2026-04-10T04:37:06.452634+00:00 +2025-10-20,Open SWE,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-21,Codex,12899,2911,2026-04-10T04:37:06.452634+00:00 +2025-10-21,Copilot,5901,1772,2026-04-10T04:37:06.452634+00:00 +2025-10-21,Claude Code,4129,1455,2026-04-10T04:37:06.452634+00:00 +2025-10-21,Cursor,1298,395,2026-04-10T04:37:06.452634+00:00 +2025-10-21,Devin,329,71,2026-04-10T04:37:06.452634+00:00 +2025-10-21,Sweep,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-21,Codegen,39,9,2026-04-10T04:37:06.452634+00:00 +2025-10-21,Jules,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-21,Gru,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-21,OpenHands,11,4,2026-04-10T04:37:06.452634+00:00 +2025-10-21,Open SWE,9,4,2026-04-10T04:37:06.452634+00:00 +2025-10-22,Codex,13408,3108,2026-04-10T04:37:06.452634+00:00 +2025-10-22,Copilot,6342,1770,2026-04-10T04:37:06.452634+00:00 +2025-10-22,Claude Code,4755,1556,2026-04-10T04:37:06.452634+00:00 +2025-10-22,Cursor,1314,392,2026-04-10T04:37:06.452634+00:00 +2025-10-22,Devin,201,65,2026-04-10T04:37:06.452634+00:00 +2025-10-22,Sweep,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-22,Codegen,24,7,2026-04-10T04:37:06.452634+00:00 +2025-10-22,Jules,2,1,2026-04-10T04:37:06.452634+00:00 +2025-10-22,Gru,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-22,OpenHands,17,2,2026-04-10T04:37:06.452634+00:00 +2025-10-22,Open SWE,11,3,2026-04-10T04:37:06.452634+00:00 +2025-10-23,Codex,13522,3013,2026-04-10T04:37:06.452634+00:00 +2025-10-23,Copilot,6796,1815,2026-04-10T04:37:06.452634+00:00 +2025-10-23,Claude Code,5152,1526,2026-04-10T04:37:06.452634+00:00 +2025-10-23,Cursor,1323,426,2026-04-10T04:37:06.452634+00:00 +2025-10-23,Devin,276,60,2026-04-10T04:37:06.452634+00:00 +2025-10-23,Sweep,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-23,Codegen,19,6,2026-04-10T04:37:06.452634+00:00 +2025-10-23,Jules,3,2,2026-04-10T04:37:06.452634+00:00 +2025-10-23,Gru,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-23,OpenHands,17,1,2026-04-10T04:37:06.452634+00:00 +2025-10-23,Open SWE,2,1,2026-04-10T04:37:06.452634+00:00 +2025-10-24,Codex,13080,2777,2026-04-10T04:37:06.452634+00:00 +2025-10-24,Copilot,6747,1734,2026-04-10T04:37:06.452634+00:00 +2025-10-24,Claude Code,5552,1424,2026-04-10T04:37:06.452634+00:00 +2025-10-24,Cursor,1240,370,2026-04-10T04:37:06.452634+00:00 +2025-10-24,Devin,330,54,2026-04-10T04:37:06.452634+00:00 +2025-10-24,Sweep,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-24,Codegen,14,3,2026-04-10T04:37:06.452634+00:00 +2025-10-24,Jules,3,2,2026-04-10T04:37:06.452634+00:00 +2025-10-24,Gru,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-24,OpenHands,25,2,2026-04-10T04:37:06.452634+00:00 +2025-10-24,Open SWE,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-25,Codex,15229,2554,2026-04-10T04:37:06.452634+00:00 +2025-10-25,Copilot,7696,1564,2026-04-10T04:37:06.452634+00:00 +2025-10-25,Claude Code,6047,1379,2026-04-10T04:37:06.452634+00:00 +2025-10-25,Cursor,828,214,2026-04-10T04:37:06.452634+00:00 +2025-10-25,Devin,187,40,2026-04-10T04:37:06.452634+00:00 +2025-10-25,Sweep,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-25,Codegen,3,2,2026-04-10T04:37:06.452634+00:00 +2025-10-25,Jules,1,1,2026-04-10T04:37:06.452634+00:00 +2025-10-25,Gru,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-25,OpenHands,7,2,2026-04-10T04:37:06.452634+00:00 +2025-10-25,Open SWE,4,1,2026-04-10T04:37:06.452634+00:00 +2025-10-26,Codex,15243,2598,2026-04-10T04:37:06.452634+00:00 +2025-10-26,Copilot,8411,1654,2026-04-10T04:37:06.452634+00:00 +2025-10-26,Claude Code,5863,1316,2026-04-10T04:37:06.452634+00:00 +2025-10-26,Cursor,805,189,2026-04-10T04:37:06.452634+00:00 +2025-10-26,Devin,250,40,2026-04-10T04:37:06.452634+00:00 +2025-10-26,Sweep,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-26,Codegen,7,2,2026-04-10T04:37:06.452634+00:00 +2025-10-26,Jules,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-26,Gru,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-26,OpenHands,3,2,2026-04-10T04:37:06.452634+00:00 +2025-10-26,Open SWE,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-27,Codex,12076,2838,2026-04-10T04:37:06.452634+00:00 +2025-10-27,Copilot,6555,1769,2026-04-10T04:37:06.452634+00:00 +2025-10-27,Claude Code,4789,1394,2026-04-10T04:37:06.452634+00:00 +2025-10-27,Cursor,704,210,2026-04-10T04:37:06.452634+00:00 +2025-10-27,Devin,225,57,2026-04-10T04:37:06.452634+00:00 +2025-10-27,Sweep,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-27,Codegen,33,9,2026-04-10T04:37:06.452634+00:00 +2025-10-27,Jules,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-27,Gru,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-27,OpenHands,8,2,2026-04-10T04:37:06.452634+00:00 +2025-10-27,Open SWE,4,1,2026-04-10T04:37:06.452634+00:00 +2025-10-28,Codex,12255,2962,2026-04-10T04:37:06.452634+00:00 +2025-10-28,Copilot,6964,1990,2026-04-10T04:37:06.452634+00:00 +2025-10-28,Claude Code,4424,1347,2026-04-10T04:37:06.452634+00:00 +2025-10-28,Cursor,1357,334,2026-04-10T04:37:06.452634+00:00 +2025-10-28,Devin,242,53,2026-04-10T04:37:06.452634+00:00 +2025-10-28,Sweep,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-28,Codegen,18,4,2026-04-10T04:37:06.452634+00:00 +2025-10-28,Jules,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-28,Gru,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-28,OpenHands,13,2,2026-04-10T04:37:06.452634+00:00 +2025-10-28,Open SWE,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-29,Codex,12796,2972,2026-04-10T04:37:06.452634+00:00 +2025-10-29,Copilot,8903,2501,2026-04-10T04:37:06.452634+00:00 +2025-10-29,Claude Code,5382,1460,2026-04-10T04:37:06.452634+00:00 +2025-10-29,Cursor,1368,400,2026-04-10T04:37:06.452634+00:00 +2025-10-29,Devin,153,47,2026-04-10T04:37:06.452634+00:00 +2025-10-29,Sweep,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-29,Codegen,25,7,2026-04-10T04:37:06.452634+00:00 +2025-10-29,Jules,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-29,Gru,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-29,OpenHands,6,2,2026-04-10T04:37:06.452634+00:00 +2025-10-29,Open SWE,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-30,Codex,12038,2925,2026-04-10T04:37:06.452634+00:00 +2025-10-30,Copilot,9904,2459,2026-04-10T04:37:06.452634+00:00 +2025-10-30,Claude Code,6108,1584,2026-04-10T04:37:06.452634+00:00 +2025-10-30,Cursor,1760,502,2026-04-10T04:37:06.452634+00:00 +2025-10-30,Devin,247,57,2026-04-10T04:37:06.452634+00:00 +2025-10-30,Sweep,4,1,2026-04-10T04:37:06.452634+00:00 +2025-10-30,Codegen,14,5,2026-04-10T04:37:06.452634+00:00 +2025-10-30,Jules,3,2,2026-04-10T04:37:06.452634+00:00 +2025-10-30,Gru,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-30,OpenHands,6,1,2026-04-10T04:37:06.452634+00:00 +2025-10-30,Open SWE,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-31,Codex,11174,2692,2026-04-10T04:37:06.452634+00:00 +2025-10-31,Copilot,10039,2389,2026-04-10T04:37:06.452634+00:00 +2025-10-31,Claude Code,5698,1477,2026-04-10T04:37:06.452634+00:00 +2025-10-31,Cursor,1769,421,2026-04-10T04:37:06.452634+00:00 +2025-10-31,Devin,243,60,2026-04-10T04:37:06.452634+00:00 +2025-10-31,Sweep,1,1,2026-04-10T04:37:06.452634+00:00 +2025-10-31,Codegen,23,8,2026-04-10T04:37:06.452634+00:00 +2025-10-31,Jules,8,1,2026-04-10T04:37:06.452634+00:00 +2025-10-31,Gru,0,0,2026-04-10T04:37:06.452634+00:00 +2025-10-31,OpenHands,8,2,2026-04-10T04:37:06.452634+00:00 +2025-10-31,Open SWE,10,2,2026-04-10T04:37:06.452634+00:00 +2025-09-01,Codex,10798,1923,2026-04-10T04:37:28.009079+00:00 +2025-09-01,Copilot,6189,1483,2026-04-10T04:37:28.009079+00:00 +2025-09-01,Claude Code,137,34,2026-04-10T04:37:28.009079+00:00 +2025-09-01,Cursor,1190,303,2026-04-10T04:37:28.009079+00:00 +2025-09-01,Devin,142,45,2026-04-10T04:37:28.009079+00:00 +2025-09-01,Sweep,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-01,Codegen,30,8,2026-04-10T04:37:28.009079+00:00 +2025-09-01,Jules,5,4,2026-04-10T04:37:28.009079+00:00 +2025-09-01,Gru,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-01,OpenHands,4,1,2026-04-10T04:37:28.009079+00:00 +2025-09-01,Open SWE,19,5,2026-04-10T04:37:28.009079+00:00 +2025-09-02,Codex,10733,1891,2026-04-10T04:37:28.009079+00:00 +2025-09-02,Copilot,6601,1641,2026-04-10T04:37:28.009079+00:00 +2025-09-02,Claude Code,117,35,2026-04-10T04:37:28.009079+00:00 +2025-09-02,Cursor,1388,308,2026-04-10T04:37:28.009079+00:00 +2025-09-02,Devin,183,48,2026-04-10T04:37:28.009079+00:00 +2025-09-02,Sweep,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-02,Codegen,45,19,2026-04-10T04:37:28.009079+00:00 +2025-09-02,Jules,5,4,2026-04-10T04:37:28.009079+00:00 +2025-09-02,Gru,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-02,OpenHands,4,2,2026-04-10T04:37:28.009079+00:00 +2025-09-02,Open SWE,30,2,2026-04-10T04:37:28.009079+00:00 +2025-09-03,Codex,10258,1938,2026-04-10T04:37:28.009079+00:00 +2025-09-03,Copilot,6156,1549,2026-04-10T04:37:28.009079+00:00 +2025-09-03,Claude Code,100,36,2026-04-10T04:37:28.009079+00:00 +2025-09-03,Cursor,1032,280,2026-04-10T04:37:28.009079+00:00 +2025-09-03,Devin,238,75,2026-04-10T04:37:28.009079+00:00 +2025-09-03,Sweep,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-03,Codegen,210,59,2026-04-10T04:37:28.009079+00:00 +2025-09-03,Jules,10,4,2026-04-10T04:37:28.009079+00:00 +2025-09-03,Gru,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-03,OpenHands,37,2,2026-04-10T04:37:28.009079+00:00 +2025-09-03,Open SWE,29,1,2026-04-10T04:37:28.009079+00:00 +2025-09-04,Codex,9951,1865,2026-04-10T04:37:28.009079+00:00 +2025-09-04,Copilot,5814,1548,2026-04-10T04:37:28.009079+00:00 +2025-09-04,Claude Code,76,32,2026-04-10T04:37:28.009079+00:00 +2025-09-04,Cursor,1155,282,2026-04-10T04:37:28.009079+00:00 +2025-09-04,Devin,159,63,2026-04-10T04:37:28.009079+00:00 +2025-09-04,Sweep,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-04,Codegen,169,66,2026-04-10T04:37:28.009079+00:00 +2025-09-04,Jules,7,4,2026-04-10T04:37:28.009079+00:00 +2025-09-04,Gru,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-04,OpenHands,39,2,2026-04-10T04:37:28.009079+00:00 +2025-09-04,Open SWE,122,5,2026-04-10T04:37:28.009079+00:00 +2025-09-05,Codex,9727,1839,2026-04-10T04:37:28.009079+00:00 +2025-09-05,Copilot,5932,1472,2026-04-10T04:37:28.009079+00:00 +2025-09-05,Claude Code,108,31,2026-04-10T04:37:28.009079+00:00 +2025-09-05,Cursor,1180,289,2026-04-10T04:37:28.009079+00:00 +2025-09-05,Devin,195,58,2026-04-10T04:37:28.009079+00:00 +2025-09-05,Sweep,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-05,Codegen,205,104,2026-04-10T04:37:28.009079+00:00 +2025-09-05,Jules,1,1,2026-04-10T04:37:28.009079+00:00 +2025-09-05,Gru,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-05,OpenHands,8,2,2026-04-10T04:37:28.009079+00:00 +2025-09-05,Open SWE,3,1,2026-04-10T04:37:28.009079+00:00 +2025-09-06,Codex,10783,1637,2026-04-10T04:37:28.009079+00:00 +2025-09-06,Copilot,6535,1328,2026-04-10T04:37:28.009079+00:00 +2025-09-06,Claude Code,107,30,2026-04-10T04:37:28.009079+00:00 +2025-09-06,Cursor,1103,257,2026-04-10T04:37:28.009079+00:00 +2025-09-06,Devin,129,34,2026-04-10T04:37:28.009079+00:00 +2025-09-06,Sweep,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-06,Codegen,93,39,2026-04-10T04:37:28.009079+00:00 +2025-09-06,Jules,4,2,2026-04-10T04:37:28.009079+00:00 +2025-09-06,Gru,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-06,OpenHands,13,1,2026-04-10T04:37:28.009079+00:00 +2025-09-06,Open SWE,184,3,2026-04-10T04:37:28.009079+00:00 +2025-09-07,Codex,11001,1610,2026-04-10T04:37:28.009079+00:00 +2025-09-07,Copilot,5918,1165,2026-04-10T04:37:28.009079+00:00 +2025-09-07,Claude Code,85,23,2026-04-10T04:37:28.009079+00:00 +2025-09-07,Cursor,1147,245,2026-04-10T04:37:28.009079+00:00 +2025-09-07,Devin,107,34,2026-04-10T04:37:28.009079+00:00 +2025-09-07,Sweep,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-07,Codegen,123,41,2026-04-10T04:37:28.009079+00:00 +2025-09-07,Jules,3,3,2026-04-10T04:37:28.009079+00:00 +2025-09-07,Gru,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-07,OpenHands,10,2,2026-04-10T04:37:28.009079+00:00 +2025-09-07,Open SWE,53,5,2026-04-10T04:37:28.009079+00:00 +2025-09-08,Codex,6154,1384,2026-04-10T04:37:28.009079+00:00 +2025-09-08,Copilot,3546,1079,2026-04-10T04:37:28.009079+00:00 +2025-09-08,Claude Code,63,25,2026-04-10T04:37:28.009079+00:00 +2025-09-08,Cursor,723,215,2026-04-10T04:37:28.009079+00:00 +2025-09-08,Devin,94,28,2026-04-10T04:37:28.009079+00:00 +2025-09-08,Sweep,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-08,Codegen,100,59,2026-04-10T04:37:28.009079+00:00 +2025-09-08,Jules,2,2,2026-04-10T04:37:28.009079+00:00 +2025-09-08,Gru,2,1,2026-04-10T04:37:28.009079+00:00 +2025-09-08,OpenHands,4,2,2026-04-10T04:37:28.009079+00:00 +2025-09-08,Open SWE,11,4,2026-04-10T04:37:28.009079+00:00 +2025-09-09,Codex,9696,1882,2026-04-10T04:37:28.009079+00:00 +2025-09-09,Copilot,6694,1819,2026-04-10T04:37:28.009079+00:00 +2025-09-09,Claude Code,70,23,2026-04-10T04:37:28.009079+00:00 +2025-09-09,Cursor,975,306,2026-04-10T04:37:28.009079+00:00 +2025-09-09,Devin,185,50,2026-04-10T04:37:28.009079+00:00 +2025-09-09,Sweep,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-09,Codegen,17,5,2026-04-10T04:37:28.009079+00:00 +2025-09-09,Jules,1,1,2026-04-10T04:37:28.009079+00:00 +2025-09-09,Gru,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-09,OpenHands,33,4,2026-04-10T04:37:28.009079+00:00 +2025-09-09,Open SWE,46,5,2026-04-10T04:37:28.009079+00:00 +2025-09-10,Codex,9627,1845,2026-04-10T04:37:28.009079+00:00 +2025-09-10,Copilot,6867,1968,2026-04-10T04:37:28.009079+00:00 +2025-09-10,Claude Code,68,25,2026-04-10T04:37:28.009079+00:00 +2025-09-10,Cursor,1128,306,2026-04-10T04:37:28.009079+00:00 +2025-09-10,Devin,168,64,2026-04-10T04:37:28.009079+00:00 +2025-09-10,Sweep,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-10,Codegen,28,6,2026-04-10T04:37:28.009079+00:00 +2025-09-10,Jules,4,2,2026-04-10T04:37:28.009079+00:00 +2025-09-10,Gru,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-10,OpenHands,17,1,2026-04-10T04:37:28.009079+00:00 +2025-09-10,Open SWE,72,5,2026-04-10T04:37:28.009079+00:00 +2025-09-11,Codex,10194,1742,2026-04-10T04:37:28.009079+00:00 +2025-09-11,Copilot,6632,1880,2026-04-10T04:37:28.009079+00:00 +2025-09-11,Claude Code,70,26,2026-04-10T04:37:28.009079+00:00 +2025-09-11,Cursor,964,288,2026-04-10T04:37:28.009079+00:00 +2025-09-11,Devin,241,79,2026-04-10T04:37:28.009079+00:00 +2025-09-11,Sweep,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-11,Codegen,24,6,2026-04-10T04:37:28.009079+00:00 +2025-09-11,Jules,11,4,2026-04-10T04:37:28.009079+00:00 +2025-09-11,Gru,1,1,2026-04-10T04:37:28.009079+00:00 +2025-09-11,OpenHands,12,2,2026-04-10T04:37:28.009079+00:00 +2025-09-11,Open SWE,3,1,2026-04-10T04:37:28.009079+00:00 +2025-09-12,Codex,9779,1778,2026-04-10T04:37:28.009079+00:00 +2025-09-12,Copilot,6995,1769,2026-04-10T04:37:28.009079+00:00 +2025-09-12,Claude Code,67,23,2026-04-10T04:37:28.009079+00:00 +2025-09-12,Cursor,963,252,2026-04-10T04:37:28.009079+00:00 +2025-09-12,Devin,223,57,2026-04-10T04:37:28.009079+00:00 +2025-09-12,Sweep,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-12,Codegen,12,7,2026-04-10T04:37:28.009079+00:00 +2025-09-12,Jules,5,4,2026-04-10T04:37:28.009079+00:00 +2025-09-12,Gru,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-12,OpenHands,22,3,2026-04-10T04:37:28.009079+00:00 +2025-09-12,Open SWE,43,2,2026-04-10T04:37:28.009079+00:00 +2025-09-13,Codex,10689,1618,2026-04-10T04:37:28.009079+00:00 +2025-09-13,Copilot,7192,1519,2026-04-10T04:37:28.009079+00:00 +2025-09-13,Claude Code,47,12,2026-04-10T04:37:28.009079+00:00 +2025-09-13,Cursor,1119,238,2026-04-10T04:37:28.009079+00:00 +2025-09-13,Devin,142,34,2026-04-10T04:37:28.009079+00:00 +2025-09-13,Sweep,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-13,Codegen,14,4,2026-04-10T04:37:28.009079+00:00 +2025-09-13,Jules,7,5,2026-04-10T04:37:28.009079+00:00 +2025-09-13,Gru,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-13,OpenHands,7,1,2026-04-10T04:37:28.009079+00:00 +2025-09-13,Open SWE,5,1,2026-04-10T04:37:28.009079+00:00 +2025-09-14,Codex,10634,1628,2026-04-10T04:37:28.009079+00:00 +2025-09-14,Copilot,7142,1494,2026-04-10T04:37:28.009079+00:00 +2025-09-14,Claude Code,46,12,2026-04-10T04:37:28.009079+00:00 +2025-09-14,Cursor,990,215,2026-04-10T04:37:28.009079+00:00 +2025-09-14,Devin,220,47,2026-04-10T04:37:28.009079+00:00 +2025-09-14,Sweep,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-14,Codegen,16,4,2026-04-10T04:37:28.009079+00:00 +2025-09-14,Jules,1,1,2026-04-10T04:37:28.009079+00:00 +2025-09-14,Gru,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-14,OpenHands,17,1,2026-04-10T04:37:28.009079+00:00 +2025-09-14,Open SWE,2,1,2026-04-10T04:37:28.009079+00:00 +2025-09-15,Codex,8410,1868,2026-04-10T04:37:28.009079+00:00 +2025-09-15,Copilot,5996,1808,2026-04-10T04:37:28.009079+00:00 +2025-09-15,Claude Code,79,22,2026-04-10T04:37:28.009079+00:00 +2025-09-15,Cursor,847,233,2026-04-10T04:37:28.009079+00:00 +2025-09-15,Devin,247,66,2026-04-10T04:37:28.009079+00:00 +2025-09-15,Sweep,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-15,Codegen,7,6,2026-04-10T04:37:28.009079+00:00 +2025-09-15,Jules,2,2,2026-04-10T04:37:28.009079+00:00 +2025-09-15,Gru,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-15,OpenHands,14,3,2026-04-10T04:37:28.009079+00:00 +2025-09-15,Open SWE,26,3,2026-04-10T04:37:28.009079+00:00 +2025-09-16,Codex,9973,2364,2026-04-10T04:37:28.009079+00:00 +2025-09-16,Copilot,7212,1937,2026-04-10T04:37:28.009079+00:00 +2025-09-16,Claude Code,65,22,2026-04-10T04:37:28.009079+00:00 +2025-09-16,Cursor,1152,276,2026-04-10T04:37:28.009079+00:00 +2025-09-16,Devin,225,59,2026-04-10T04:37:28.009079+00:00 +2025-09-16,Sweep,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-16,Codegen,23,6,2026-04-10T04:37:28.009079+00:00 +2025-09-16,Jules,8,1,2026-04-10T04:37:28.009079+00:00 +2025-09-16,Gru,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-16,OpenHands,17,3,2026-04-10T04:37:28.009079+00:00 +2025-09-16,Open SWE,23,7,2026-04-10T04:37:28.009079+00:00 +2025-09-17,Codex,9901,2535,2026-04-10T04:37:28.009079+00:00 +2025-09-17,Copilot,6109,1790,2026-04-10T04:37:28.009079+00:00 +2025-09-17,Claude Code,50,16,2026-04-10T04:37:28.009079+00:00 +2025-09-17,Cursor,891,233,2026-04-10T04:37:28.009079+00:00 +2025-09-17,Devin,161,52,2026-04-10T04:37:28.009079+00:00 +2025-09-17,Sweep,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-17,Codegen,14,5,2026-04-10T04:37:28.009079+00:00 +2025-09-17,Jules,4,3,2026-04-10T04:37:28.009079+00:00 +2025-09-17,Gru,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-17,OpenHands,7,1,2026-04-10T04:37:28.009079+00:00 +2025-09-17,Open SWE,21,5,2026-04-10T04:37:28.009079+00:00 +2025-09-18,Codex,9817,2463,2026-04-10T04:37:28.009079+00:00 +2025-09-18,Copilot,6171,1786,2026-04-10T04:37:28.009079+00:00 +2025-09-18,Claude Code,36,15,2026-04-10T04:37:28.009079+00:00 +2025-09-18,Cursor,803,244,2026-04-10T04:37:28.009079+00:00 +2025-09-18,Devin,172,55,2026-04-10T04:37:28.009079+00:00 +2025-09-18,Sweep,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-18,Codegen,16,9,2026-04-10T04:37:28.009079+00:00 +2025-09-18,Jules,2,2,2026-04-10T04:37:28.009079+00:00 +2025-09-18,Gru,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-18,OpenHands,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-18,Open SWE,13,4,2026-04-10T04:37:28.009079+00:00 +2025-09-19,Codex,11339,2707,2026-04-10T04:37:28.009079+00:00 +2025-09-19,Copilot,6749,1883,2026-04-10T04:37:28.009079+00:00 +2025-09-19,Claude Code,60,18,2026-04-10T04:37:28.009079+00:00 +2025-09-19,Cursor,697,194,2026-04-10T04:37:28.009079+00:00 +2025-09-19,Devin,187,56,2026-04-10T04:37:28.009079+00:00 +2025-09-19,Sweep,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-19,Codegen,11,5,2026-04-10T04:37:28.009079+00:00 +2025-09-19,Jules,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-19,Gru,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-19,OpenHands,8,1,2026-04-10T04:37:28.009079+00:00 +2025-09-19,Open SWE,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-20,Codex,12323,2379,2026-04-10T04:37:28.009079+00:00 +2025-09-20,Copilot,6575,1554,2026-04-10T04:37:28.009079+00:00 +2025-09-20,Claude Code,57,14,2026-04-10T04:37:28.009079+00:00 +2025-09-20,Cursor,710,158,2026-04-10T04:37:28.009079+00:00 +2025-09-20,Devin,189,42,2026-04-10T04:37:28.009079+00:00 +2025-09-20,Sweep,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-20,Codegen,14,4,2026-04-10T04:37:28.009079+00:00 +2025-09-20,Jules,1,1,2026-04-10T04:37:28.009079+00:00 +2025-09-20,Gru,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-20,OpenHands,19,1,2026-04-10T04:37:28.009079+00:00 +2025-09-20,Open SWE,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-21,Codex,12619,2476,2026-04-10T04:37:28.009079+00:00 +2025-09-21,Copilot,6923,1519,2026-04-10T04:37:28.009079+00:00 +2025-09-21,Claude Code,31,16,2026-04-10T04:37:28.009079+00:00 +2025-09-21,Cursor,718,167,2026-04-10T04:37:28.009079+00:00 +2025-09-21,Devin,161,36,2026-04-10T04:37:28.009079+00:00 +2025-09-21,Sweep,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-21,Codegen,34,10,2026-04-10T04:37:28.009079+00:00 +2025-09-21,Jules,1,1,2026-04-10T04:37:28.009079+00:00 +2025-09-21,Gru,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-21,OpenHands,13,1,2026-04-10T04:37:28.009079+00:00 +2025-09-21,Open SWE,7,1,2026-04-10T04:37:28.009079+00:00 +2025-09-22,Codex,11075,2712,2026-04-10T04:37:28.009079+00:00 +2025-09-22,Copilot,6473,1774,2026-04-10T04:37:28.009079+00:00 +2025-09-22,Claude Code,74,19,2026-04-10T04:37:28.009079+00:00 +2025-09-22,Cursor,672,196,2026-04-10T04:37:28.009079+00:00 +2025-09-22,Devin,150,50,2026-04-10T04:37:28.009079+00:00 +2025-09-22,Sweep,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-22,Codegen,34,6,2026-04-10T04:37:28.009079+00:00 +2025-09-22,Jules,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-22,Gru,1,1,2026-04-10T04:37:28.009079+00:00 +2025-09-22,OpenHands,23,3,2026-04-10T04:37:28.009079+00:00 +2025-09-22,Open SWE,21,2,2026-04-10T04:37:28.009079+00:00 +2025-09-23,Codex,11567,2805,2026-04-10T04:37:28.009079+00:00 +2025-09-23,Copilot,6803,1866,2026-04-10T04:37:28.009079+00:00 +2025-09-23,Claude Code,80,22,2026-04-10T04:37:28.009079+00:00 +2025-09-23,Cursor,881,268,2026-04-10T04:37:28.009079+00:00 +2025-09-23,Devin,166,61,2026-04-10T04:37:28.009079+00:00 +2025-09-23,Sweep,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-23,Codegen,21,5,2026-04-10T04:37:28.009079+00:00 +2025-09-23,Jules,1,1,2026-04-10T04:37:28.009079+00:00 +2025-09-23,Gru,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-23,OpenHands,31,1,2026-04-10T04:37:28.009079+00:00 +2025-09-23,Open SWE,12,1,2026-04-10T04:37:28.009079+00:00 +2025-09-24,Codex,11170,2743,2026-04-10T04:37:28.009079+00:00 +2025-09-24,Copilot,6646,1942,2026-04-10T04:37:28.009079+00:00 +2025-09-24,Claude Code,60,18,2026-04-10T04:37:28.009079+00:00 +2025-09-24,Cursor,1093,288,2026-04-10T04:37:28.009079+00:00 +2025-09-24,Devin,189,57,2026-04-10T04:37:28.009079+00:00 +2025-09-24,Sweep,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-24,Codegen,9,8,2026-04-10T04:37:28.009079+00:00 +2025-09-24,Jules,2,2,2026-04-10T04:37:28.009079+00:00 +2025-09-24,Gru,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-24,OpenHands,32,2,2026-04-10T04:37:28.009079+00:00 +2025-09-24,Open SWE,10,1,2026-04-10T04:37:28.009079+00:00 +2025-09-25,Codex,11299,2706,2026-04-10T04:37:28.009079+00:00 +2025-09-25,Copilot,6430,1878,2026-04-10T04:37:28.009079+00:00 +2025-09-25,Claude Code,73,15,2026-04-10T04:37:28.009079+00:00 +2025-09-25,Cursor,1074,284,2026-04-10T04:37:28.009079+00:00 +2025-09-25,Devin,206,60,2026-04-10T04:37:28.009079+00:00 +2025-09-25,Sweep,1,1,2026-04-10T04:37:28.009079+00:00 +2025-09-25,Codegen,15,6,2026-04-10T04:37:28.009079+00:00 +2025-09-25,Jules,2,2,2026-04-10T04:37:28.009079+00:00 +2025-09-25,Gru,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-25,OpenHands,13,1,2026-04-10T04:37:28.009079+00:00 +2025-09-25,Open SWE,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-26,Codex,12836,2776,2026-04-10T04:37:28.009079+00:00 +2025-09-26,Copilot,7277,1917,2026-04-10T04:37:28.009079+00:00 +2025-09-26,Claude Code,61,19,2026-04-10T04:37:28.009079+00:00 +2025-09-26,Cursor,1027,264,2026-04-10T04:37:28.009079+00:00 +2025-09-26,Devin,157,54,2026-04-10T04:37:28.009079+00:00 +2025-09-26,Sweep,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-26,Codegen,16,5,2026-04-10T04:37:28.009079+00:00 +2025-09-26,Jules,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-26,Gru,1,1,2026-04-10T04:37:28.009079+00:00 +2025-09-26,OpenHands,1,1,2026-04-10T04:37:28.009079+00:00 +2025-09-26,Open SWE,3,1,2026-04-10T04:37:28.009079+00:00 +2025-09-27,Codex,13379,2409,2026-04-10T04:37:28.009079+00:00 +2025-09-27,Copilot,7005,1582,2026-04-10T04:37:28.009079+00:00 +2025-09-27,Claude Code,69,22,2026-04-10T04:37:28.009079+00:00 +2025-09-27,Cursor,833,214,2026-04-10T04:37:28.009079+00:00 +2025-09-27,Devin,87,29,2026-04-10T04:37:28.009079+00:00 +2025-09-27,Sweep,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-27,Codegen,24,10,2026-04-10T04:37:28.009079+00:00 +2025-09-27,Jules,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-27,Gru,1,1,2026-04-10T04:37:28.009079+00:00 +2025-09-27,OpenHands,6,1,2026-04-10T04:37:28.009079+00:00 +2025-09-27,Open SWE,19,1,2026-04-10T04:37:28.009079+00:00 +2025-09-28,Codex,12910,2423,2026-04-10T04:37:28.009079+00:00 +2025-09-28,Copilot,6783,1656,2026-04-10T04:37:28.009079+00:00 +2025-09-28,Claude Code,15,6,2026-04-10T04:37:28.009079+00:00 +2025-09-28,Cursor,839,243,2026-04-10T04:37:28.009079+00:00 +2025-09-28,Devin,82,22,2026-04-10T04:37:28.009079+00:00 +2025-09-28,Sweep,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-28,Codegen,4,3,2026-04-10T04:37:28.009079+00:00 +2025-09-28,Jules,4,2,2026-04-10T04:37:28.009079+00:00 +2025-09-28,Gru,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-28,OpenHands,6,1,2026-04-10T04:37:28.009079+00:00 +2025-09-28,Open SWE,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-29,Codex,10482,2493,2026-04-10T04:37:28.009079+00:00 +2025-09-29,Copilot,6109,1865,2026-04-10T04:37:28.009079+00:00 +2025-09-29,Claude Code,74,14,2026-04-10T04:37:28.009079+00:00 +2025-09-29,Cursor,818,235,2026-04-10T04:37:28.009079+00:00 +2025-09-29,Devin,172,50,2026-04-10T04:37:28.009079+00:00 +2025-09-29,Sweep,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-29,Codegen,46,10,2026-04-10T04:37:28.009079+00:00 +2025-09-29,Jules,2,1,2026-04-10T04:37:28.009079+00:00 +2025-09-29,Gru,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-29,OpenHands,30,1,2026-04-10T04:37:28.009079+00:00 +2025-09-29,Open SWE,20,3,2026-04-10T04:37:28.009079+00:00 +2025-09-30,Codex,11292,2547,2026-04-10T04:37:28.009079+00:00 +2025-09-30,Copilot,6957,1888,2026-04-10T04:37:28.009079+00:00 +2025-09-30,Claude Code,53,17,2026-04-10T04:37:28.009079+00:00 +2025-09-30,Cursor,908,280,2026-04-10T04:37:28.009079+00:00 +2025-09-30,Devin,174,44,2026-04-10T04:37:28.009079+00:00 +2025-09-30,Sweep,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-30,Codegen,62,6,2026-04-10T04:37:28.009079+00:00 +2025-09-30,Jules,1,1,2026-04-10T04:37:28.009079+00:00 +2025-09-30,Gru,0,0,2026-04-10T04:37:28.009079+00:00 +2025-09-30,OpenHands,28,1,2026-04-10T04:37:28.009079+00:00 +2025-09-30,Open SWE,54,3,2026-04-10T04:37:28.009079+00:00 +2025-08-01,Codex,7060,1721,2026-04-10T04:37:45.589016+00:00 +2025-08-01,Copilot,4858,1004,2026-04-10T04:37:45.589016+00:00 +2025-08-01,Claude Code,91,35,2026-04-10T04:37:45.589016+00:00 +2025-08-01,Cursor,1620,470,2026-04-10T04:37:45.589016+00:00 +2025-08-01,Devin,380,71,2026-04-10T04:37:45.589016+00:00 +2025-08-01,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-01,Codegen,72,13,2026-04-10T04:37:45.589016+00:00 +2025-08-01,Jules,4,3,2026-04-10T04:37:45.589016+00:00 +2025-08-01,Gru,2,1,2026-04-10T04:37:45.589016+00:00 +2025-08-01,OpenHands,1,1,2026-04-10T04:37:45.589016+00:00 +2025-08-01,Open SWE,95,5,2026-04-10T04:37:45.589016+00:00 +2025-08-02,Codex,8271,1618,2026-04-10T04:37:45.589016+00:00 +2025-08-02,Copilot,4352,779,2026-04-10T04:37:45.589016+00:00 +2025-08-02,Claude Code,68,32,2026-04-10T04:37:45.589016+00:00 +2025-08-02,Cursor,2220,478,2026-04-10T04:37:45.589016+00:00 +2025-08-02,Devin,358,72,2026-04-10T04:37:45.589016+00:00 +2025-08-02,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-02,Codegen,10,2,2026-04-10T04:37:45.589016+00:00 +2025-08-02,Jules,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-02,Gru,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-02,OpenHands,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-02,Open SWE,23,3,2026-04-10T04:37:45.589016+00:00 +2025-08-03,Codex,9959,1735,2026-04-10T04:37:45.589016+00:00 +2025-08-03,Copilot,4122,779,2026-04-10T04:37:45.589016+00:00 +2025-08-03,Claude Code,63,29,2026-04-10T04:37:45.589016+00:00 +2025-08-03,Cursor,2607,472,2026-04-10T04:37:45.589016+00:00 +2025-08-03,Devin,210,53,2026-04-10T04:37:45.589016+00:00 +2025-08-03,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-03,Codegen,25,11,2026-04-10T04:37:45.589016+00:00 +2025-08-03,Jules,20,2,2026-04-10T04:37:45.589016+00:00 +2025-08-03,Gru,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-03,OpenHands,1,1,2026-04-10T04:37:45.589016+00:00 +2025-08-03,Open SWE,22,2,2026-04-10T04:37:45.589016+00:00 +2025-08-04,Codex,7695,1798,2026-04-10T04:37:45.589016+00:00 +2025-08-04,Copilot,3563,889,2026-04-10T04:37:45.589016+00:00 +2025-08-04,Claude Code,117,45,2026-04-10T04:37:45.589016+00:00 +2025-08-04,Cursor,1430,439,2026-04-10T04:37:45.589016+00:00 +2025-08-04,Devin,299,69,2026-04-10T04:37:45.589016+00:00 +2025-08-04,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-04,Codegen,13,7,2026-04-10T04:37:45.589016+00:00 +2025-08-04,Jules,2,1,2026-04-10T04:37:45.589016+00:00 +2025-08-04,Gru,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-04,OpenHands,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-04,Open SWE,8,3,2026-04-10T04:37:45.589016+00:00 +2025-08-05,Codex,8210,1874,2026-04-10T04:37:45.589016+00:00 +2025-08-05,Copilot,4325,984,2026-04-10T04:37:45.589016+00:00 +2025-08-05,Claude Code,134,37,2026-04-10T04:37:45.589016+00:00 +2025-08-05,Cursor,1903,510,2026-04-10T04:37:45.589016+00:00 +2025-08-05,Devin,360,85,2026-04-10T04:37:45.589016+00:00 +2025-08-05,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-05,Codegen,38,8,2026-04-10T04:37:45.589016+00:00 +2025-08-05,Jules,6,2,2026-04-10T04:37:45.589016+00:00 +2025-08-05,Gru,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-05,OpenHands,5,2,2026-04-10T04:37:45.589016+00:00 +2025-08-05,Open SWE,6,1,2026-04-10T04:37:45.589016+00:00 +2025-08-06,Codex,8449,1899,2026-04-10T04:37:45.589016+00:00 +2025-08-06,Copilot,4084,951,2026-04-10T04:37:45.589016+00:00 +2025-08-06,Claude Code,142,37,2026-04-10T04:37:45.589016+00:00 +2025-08-06,Cursor,2253,573,2026-04-10T04:37:45.589016+00:00 +2025-08-06,Devin,463,88,2026-04-10T04:37:45.589016+00:00 +2025-08-06,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-06,Codegen,18,4,2026-04-10T04:37:45.589016+00:00 +2025-08-06,Jules,3,3,2026-04-10T04:37:45.589016+00:00 +2025-08-06,Gru,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-06,OpenHands,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-06,Open SWE,226,16,2026-04-10T04:37:45.589016+00:00 +2025-08-07,Codex,8697,2108,2026-04-10T04:37:45.589016+00:00 +2025-08-07,Copilot,4614,1003,2026-04-10T04:37:45.589016+00:00 +2025-08-07,Claude Code,154,47,2026-04-10T04:37:45.589016+00:00 +2025-08-07,Cursor,2261,578,2026-04-10T04:37:45.589016+00:00 +2025-08-07,Devin,449,98,2026-04-10T04:37:45.589016+00:00 +2025-08-07,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-07,Codegen,33,9,2026-04-10T04:37:45.589016+00:00 +2025-08-07,Jules,3,3,2026-04-10T04:37:45.589016+00:00 +2025-08-07,Gru,5,2,2026-04-10T04:37:45.589016+00:00 +2025-08-07,OpenHands,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-07,Open SWE,536,60,2026-04-10T04:37:45.589016+00:00 +2025-08-08,Codex,10317,2769,2026-04-10T04:37:45.589016+00:00 +2025-08-08,Copilot,4855,1070,2026-04-10T04:37:45.589016+00:00 +2025-08-08,Claude Code,128,37,2026-04-10T04:37:45.589016+00:00 +2025-08-08,Cursor,2565,743,2026-04-10T04:37:45.589016+00:00 +2025-08-08,Devin,372,87,2026-04-10T04:37:45.589016+00:00 +2025-08-08,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-08,Codegen,37,8,2026-04-10T04:37:45.589016+00:00 +2025-08-08,Jules,11,4,2026-04-10T04:37:45.589016+00:00 +2025-08-08,Gru,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-08,OpenHands,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-08,Open SWE,601,59,2026-04-10T04:37:45.589016+00:00 +2025-08-09,Codex,11041,2480,2026-04-10T04:37:45.589016+00:00 +2025-08-09,Copilot,5539,928,2026-04-10T04:37:45.589016+00:00 +2025-08-09,Claude Code,152,38,2026-04-10T04:37:45.589016+00:00 +2025-08-09,Cursor,2834,656,2026-04-10T04:37:45.589016+00:00 +2025-08-09,Devin,294,65,2026-04-10T04:37:45.589016+00:00 +2025-08-09,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-09,Codegen,36,7,2026-04-10T04:37:45.589016+00:00 +2025-08-09,Jules,10,2,2026-04-10T04:37:45.589016+00:00 +2025-08-09,Gru,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-09,OpenHands,1,1,2026-04-10T04:37:45.589016+00:00 +2025-08-09,Open SWE,494,43,2026-04-10T04:37:45.589016+00:00 +2025-08-10,Codex,10592,2259,2026-04-10T04:37:45.589016+00:00 +2025-08-10,Copilot,5391,939,2026-04-10T04:37:45.589016+00:00 +2025-08-10,Claude Code,113,29,2026-04-10T04:37:45.589016+00:00 +2025-08-10,Cursor,2893,622,2026-04-10T04:37:45.589016+00:00 +2025-08-10,Devin,274,60,2026-04-10T04:37:45.589016+00:00 +2025-08-10,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-10,Codegen,32,10,2026-04-10T04:37:45.589016+00:00 +2025-08-10,Jules,3,3,2026-04-10T04:37:45.589016+00:00 +2025-08-10,Gru,4,1,2026-04-10T04:37:45.589016+00:00 +2025-08-10,OpenHands,2,1,2026-04-10T04:37:45.589016+00:00 +2025-08-10,Open SWE,401,37,2026-04-10T04:37:45.589016+00:00 +2025-08-11,Codex,9714,2424,2026-04-10T04:37:45.589016+00:00 +2025-08-11,Copilot,4584,1042,2026-04-10T04:37:45.589016+00:00 +2025-08-11,Claude Code,112,37,2026-04-10T04:37:45.589016+00:00 +2025-08-11,Cursor,2446,605,2026-04-10T04:37:45.589016+00:00 +2025-08-11,Devin,304,73,2026-04-10T04:37:45.589016+00:00 +2025-08-11,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-11,Codegen,38,11,2026-04-10T04:37:45.589016+00:00 +2025-08-11,Jules,1,1,2026-04-10T04:37:45.589016+00:00 +2025-08-11,Gru,3,1,2026-04-10T04:37:45.589016+00:00 +2025-08-11,OpenHands,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-11,Open SWE,461,39,2026-04-10T04:37:45.589016+00:00 +2025-08-12,Codex,10331,2362,2026-04-10T04:37:45.589016+00:00 +2025-08-12,Copilot,4658,1036,2026-04-10T04:37:45.589016+00:00 +2025-08-12,Claude Code,124,33,2026-04-10T04:37:45.589016+00:00 +2025-08-12,Cursor,2541,651,2026-04-10T04:37:45.589016+00:00 +2025-08-12,Devin,262,71,2026-04-10T04:37:45.589016+00:00 +2025-08-12,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-12,Codegen,34,10,2026-04-10T04:37:45.589016+00:00 +2025-08-12,Jules,7,4,2026-04-10T04:37:45.589016+00:00 +2025-08-12,Gru,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-12,OpenHands,2,1,2026-04-10T04:37:45.589016+00:00 +2025-08-12,Open SWE,377,30,2026-04-10T04:37:45.589016+00:00 +2025-08-13,Codex,10583,2334,2026-04-10T04:37:45.589016+00:00 +2025-08-13,Copilot,4590,1061,2026-04-10T04:37:45.589016+00:00 +2025-08-13,Claude Code,118,33,2026-04-10T04:37:45.589016+00:00 +2025-08-13,Cursor,2656,652,2026-04-10T04:37:45.589016+00:00 +2025-08-13,Devin,264,78,2026-04-10T04:37:45.589016+00:00 +2025-08-13,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-13,Codegen,68,15,2026-04-10T04:37:45.589016+00:00 +2025-08-13,Jules,18,6,2026-04-10T04:37:45.589016+00:00 +2025-08-13,Gru,1,1,2026-04-10T04:37:45.589016+00:00 +2025-08-13,OpenHands,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-13,Open SWE,330,28,2026-04-10T04:37:45.589016+00:00 +2025-08-14,Codex,11885,2376,2026-04-10T04:37:45.589016+00:00 +2025-08-14,Copilot,4360,1055,2026-04-10T04:37:45.589016+00:00 +2025-08-14,Claude Code,131,36,2026-04-10T04:37:45.589016+00:00 +2025-08-14,Cursor,2131,617,2026-04-10T04:37:45.589016+00:00 +2025-08-14,Devin,345,80,2026-04-10T04:37:45.589016+00:00 +2025-08-14,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-14,Codegen,38,5,2026-04-10T04:37:45.589016+00:00 +2025-08-14,Jules,5,4,2026-04-10T04:37:45.589016+00:00 +2025-08-14,Gru,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-14,OpenHands,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-14,Open SWE,230,23,2026-04-10T04:37:45.589016+00:00 +2025-08-15,Codex,11668,2213,2026-04-10T04:37:45.589016+00:00 +2025-08-15,Copilot,4592,979,2026-04-10T04:37:45.589016+00:00 +2025-08-15,Claude Code,136,27,2026-04-10T04:37:45.589016+00:00 +2025-08-15,Cursor,2304,539,2026-04-10T04:37:45.589016+00:00 +2025-08-15,Devin,300,69,2026-04-10T04:37:45.589016+00:00 +2025-08-15,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-15,Codegen,51,9,2026-04-10T04:37:45.589016+00:00 +2025-08-15,Jules,5,4,2026-04-10T04:37:45.589016+00:00 +2025-08-15,Gru,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-15,OpenHands,3,1,2026-04-10T04:37:45.589016+00:00 +2025-08-15,Open SWE,81,6,2026-04-10T04:37:45.589016+00:00 +2025-08-16,Codex,13704,2085,2026-04-10T04:37:45.589016+00:00 +2025-08-16,Copilot,4877,801,2026-04-10T04:37:45.589016+00:00 +2025-08-16,Claude Code,112,26,2026-04-10T04:37:45.589016+00:00 +2025-08-16,Cursor,2370,521,2026-04-10T04:37:45.589016+00:00 +2025-08-16,Devin,279,68,2026-04-10T04:37:45.589016+00:00 +2025-08-16,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-16,Codegen,33,5,2026-04-10T04:37:45.589016+00:00 +2025-08-16,Jules,7,6,2026-04-10T04:37:45.589016+00:00 +2025-08-16,Gru,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-16,OpenHands,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-16,Open SWE,76,14,2026-04-10T04:37:45.589016+00:00 +2025-08-17,Codex,12411,2045,2026-04-10T04:37:45.589016+00:00 +2025-08-17,Copilot,4721,859,2026-04-10T04:37:45.589016+00:00 +2025-08-17,Claude Code,109,22,2026-04-10T04:37:45.589016+00:00 +2025-08-17,Cursor,2661,541,2026-04-10T04:37:45.589016+00:00 +2025-08-17,Devin,364,62,2026-04-10T04:37:45.589016+00:00 +2025-08-17,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-17,Codegen,474,10,2026-04-10T04:37:45.589016+00:00 +2025-08-17,Jules,22,7,2026-04-10T04:37:45.589016+00:00 +2025-08-17,Gru,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-17,OpenHands,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-17,Open SWE,61,11,2026-04-10T04:37:45.589016+00:00 +2025-08-18,Codex,10954,2305,2026-04-10T04:37:45.589016+00:00 +2025-08-18,Copilot,4318,1068,2026-04-10T04:37:45.589016+00:00 +2025-08-18,Claude Code,76,24,2026-04-10T04:37:45.589016+00:00 +2025-08-18,Cursor,2366,580,2026-04-10T04:37:45.589016+00:00 +2025-08-18,Devin,267,74,2026-04-10T04:37:45.589016+00:00 +2025-08-18,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-18,Codegen,44,9,2026-04-10T04:37:45.589016+00:00 +2025-08-18,Jules,11,4,2026-04-10T04:37:45.589016+00:00 +2025-08-18,Gru,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-18,OpenHands,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-18,Open SWE,219,17,2026-04-10T04:37:45.589016+00:00 +2025-08-19,Codex,11184,2377,2026-04-10T04:37:45.589016+00:00 +2025-08-19,Copilot,5467,1395,2026-04-10T04:37:45.589016+00:00 +2025-08-19,Claude Code,191,39,2026-04-10T04:37:45.589016+00:00 +2025-08-19,Cursor,2466,660,2026-04-10T04:37:45.589016+00:00 +2025-08-19,Devin,290,78,2026-04-10T04:37:45.589016+00:00 +2025-08-19,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-19,Codegen,28,9,2026-04-10T04:37:45.589016+00:00 +2025-08-19,Jules,25,6,2026-04-10T04:37:45.589016+00:00 +2025-08-19,Gru,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-19,OpenHands,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-19,Open SWE,284,13,2026-04-10T04:37:45.589016+00:00 +2025-08-20,Codex,11062,2358,2026-04-10T04:37:45.589016+00:00 +2025-08-20,Copilot,6960,2008,2026-04-10T04:37:45.589016+00:00 +2025-08-20,Claude Code,152,39,2026-04-10T04:37:45.589016+00:00 +2025-08-20,Cursor,1136,349,2026-04-10T04:37:45.589016+00:00 +2025-08-20,Devin,256,77,2026-04-10T04:37:45.589016+00:00 +2025-08-20,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-20,Codegen,42,11,2026-04-10T04:37:45.589016+00:00 +2025-08-20,Jules,3,3,2026-04-10T04:37:45.589016+00:00 +2025-08-20,Gru,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-20,OpenHands,1,1,2026-04-10T04:37:45.589016+00:00 +2025-08-20,Open SWE,245,16,2026-04-10T04:37:45.589016+00:00 +2025-08-21,Codex,11294,2214,2026-04-10T04:37:45.589016+00:00 +2025-08-21,Copilot,6565,1719,2026-04-10T04:37:45.589016+00:00 +2025-08-21,Claude Code,137,40,2026-04-10T04:37:45.589016+00:00 +2025-08-21,Cursor,2047,533,2026-04-10T04:37:45.589016+00:00 +2025-08-21,Devin,272,58,2026-04-10T04:37:45.589016+00:00 +2025-08-21,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-21,Codegen,34,7,2026-04-10T04:37:45.589016+00:00 +2025-08-21,Jules,9,5,2026-04-10T04:37:45.589016+00:00 +2025-08-21,Gru,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-21,OpenHands,9,2,2026-04-10T04:37:45.589016+00:00 +2025-08-21,Open SWE,74,11,2026-04-10T04:37:45.589016+00:00 +2025-08-22,Codex,11927,2269,2026-04-10T04:37:45.589016+00:00 +2025-08-22,Copilot,6769,1615,2026-04-10T04:37:45.589016+00:00 +2025-08-22,Claude Code,93,31,2026-04-10T04:37:45.589016+00:00 +2025-08-22,Cursor,2292,556,2026-04-10T04:37:45.589016+00:00 +2025-08-22,Devin,194,68,2026-04-10T04:37:45.589016+00:00 +2025-08-22,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-22,Codegen,30,11,2026-04-10T04:37:45.589016+00:00 +2025-08-22,Jules,4,3,2026-04-10T04:37:45.589016+00:00 +2025-08-22,Gru,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-22,OpenHands,9,2,2026-04-10T04:37:45.589016+00:00 +2025-08-22,Open SWE,79,6,2026-04-10T04:37:45.589016+00:00 +2025-08-23,Codex,12777,2060,2026-04-10T04:37:45.589016+00:00 +2025-08-23,Copilot,5912,1206,2026-04-10T04:37:45.589016+00:00 +2025-08-23,Claude Code,118,25,2026-04-10T04:37:45.589016+00:00 +2025-08-23,Cursor,2352,544,2026-04-10T04:37:45.589016+00:00 +2025-08-23,Devin,198,41,2026-04-10T04:37:45.589016+00:00 +2025-08-23,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-23,Codegen,23,8,2026-04-10T04:37:45.589016+00:00 +2025-08-23,Jules,14,4,2026-04-10T04:37:45.589016+00:00 +2025-08-23,Gru,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-23,OpenHands,1,1,2026-04-10T04:37:45.589016+00:00 +2025-08-23,Open SWE,10,3,2026-04-10T04:37:45.589016+00:00 +2025-08-24,Codex,13023,2031,2026-04-10T04:37:45.589016+00:00 +2025-08-24,Copilot,5721,1217,2026-04-10T04:37:45.589016+00:00 +2025-08-24,Claude Code,141,32,2026-04-10T04:37:45.589016+00:00 +2025-08-24,Cursor,2006,501,2026-04-10T04:37:45.589016+00:00 +2025-08-24,Devin,158,46,2026-04-10T04:37:45.589016+00:00 +2025-08-24,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-24,Codegen,30,9,2026-04-10T04:37:45.589016+00:00 +2025-08-24,Jules,4,3,2026-04-10T04:37:45.589016+00:00 +2025-08-24,Gru,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-24,OpenHands,8,1,2026-04-10T04:37:45.589016+00:00 +2025-08-24,Open SWE,27,1,2026-04-10T04:37:45.589016+00:00 +2025-08-25,Codex,11888,2327,2026-04-10T04:37:45.589016+00:00 +2025-08-25,Copilot,5917,1457,2026-04-10T04:37:45.589016+00:00 +2025-08-25,Claude Code,171,38,2026-04-10T04:37:45.589016+00:00 +2025-08-25,Cursor,1326,413,2026-04-10T04:37:45.589016+00:00 +2025-08-25,Devin,220,55,2026-04-10T04:37:45.589016+00:00 +2025-08-25,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-25,Codegen,9,7,2026-04-10T04:37:45.589016+00:00 +2025-08-25,Jules,1,1,2026-04-10T04:37:45.589016+00:00 +2025-08-25,Gru,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-25,OpenHands,8,3,2026-04-10T04:37:45.589016+00:00 +2025-08-25,Open SWE,58,5,2026-04-10T04:37:45.589016+00:00 +2025-08-26,Codex,12456,2327,2026-04-10T04:37:45.589016+00:00 +2025-08-26,Copilot,6102,1554,2026-04-10T04:37:45.589016+00:00 +2025-08-26,Claude Code,90,29,2026-04-10T04:37:45.589016+00:00 +2025-08-26,Cursor,2402,532,2026-04-10T04:37:45.589016+00:00 +2025-08-26,Devin,196,69,2026-04-10T04:37:45.589016+00:00 +2025-08-26,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-26,Codegen,24,6,2026-04-10T04:37:45.589016+00:00 +2025-08-26,Jules,16,5,2026-04-10T04:37:45.589016+00:00 +2025-08-26,Gru,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-26,OpenHands,2,1,2026-04-10T04:37:45.589016+00:00 +2025-08-26,Open SWE,122,4,2026-04-10T04:37:45.589016+00:00 +2025-08-27,Codex,12655,2319,2026-04-10T04:37:45.589016+00:00 +2025-08-27,Copilot,5837,1484,2026-04-10T04:37:45.589016+00:00 +2025-08-27,Claude Code,101,36,2026-04-10T04:37:45.589016+00:00 +2025-08-27,Cursor,2088,534,2026-04-10T04:37:45.589016+00:00 +2025-08-27,Devin,256,74,2026-04-10T04:37:45.589016+00:00 +2025-08-27,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-27,Codegen,18,6,2026-04-10T04:37:45.589016+00:00 +2025-08-27,Jules,5,4,2026-04-10T04:37:45.589016+00:00 +2025-08-27,Gru,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-27,OpenHands,3,1,2026-04-10T04:37:45.589016+00:00 +2025-08-27,Open SWE,8,5,2026-04-10T04:37:45.589016+00:00 +2025-08-28,Codex,10329,1898,2026-04-10T04:37:45.589016+00:00 +2025-08-28,Copilot,6220,1495,2026-04-10T04:37:45.589016+00:00 +2025-08-28,Claude Code,125,35,2026-04-10T04:37:45.589016+00:00 +2025-08-28,Cursor,2075,513,2026-04-10T04:37:45.589016+00:00 +2025-08-28,Devin,355,90,2026-04-10T04:37:45.589016+00:00 +2025-08-28,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-28,Codegen,32,10,2026-04-10T04:37:45.589016+00:00 +2025-08-28,Jules,4,2,2026-04-10T04:37:45.589016+00:00 +2025-08-28,Gru,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-28,OpenHands,6,3,2026-04-10T04:37:45.589016+00:00 +2025-08-28,Open SWE,54,3,2026-04-10T04:37:45.589016+00:00 +2025-08-29,Codex,11024,1985,2026-04-10T04:37:45.589016+00:00 +2025-08-29,Copilot,6388,1456,2026-04-10T04:37:45.589016+00:00 +2025-08-29,Claude Code,104,28,2026-04-10T04:37:45.589016+00:00 +2025-08-29,Cursor,1701,361,2026-04-10T04:37:45.589016+00:00 +2025-08-29,Devin,289,87,2026-04-10T04:37:45.589016+00:00 +2025-08-29,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-29,Codegen,22,8,2026-04-10T04:37:45.589016+00:00 +2025-08-29,Jules,2,2,2026-04-10T04:37:45.589016+00:00 +2025-08-29,Gru,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-29,OpenHands,4,1,2026-04-10T04:37:45.589016+00:00 +2025-08-29,Open SWE,16,3,2026-04-10T04:37:45.589016+00:00 +2025-08-30,Codex,11124,1592,2026-04-10T04:37:45.589016+00:00 +2025-08-30,Copilot,6003,1200,2026-04-10T04:37:45.589016+00:00 +2025-08-30,Claude Code,135,27,2026-04-10T04:37:45.589016+00:00 +2025-08-30,Cursor,1706,290,2026-04-10T04:37:45.589016+00:00 +2025-08-30,Devin,232,63,2026-04-10T04:37:45.589016+00:00 +2025-08-30,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-30,Codegen,27,6,2026-04-10T04:37:45.589016+00:00 +2025-08-30,Jules,3,2,2026-04-10T04:37:45.589016+00:00 +2025-08-30,Gru,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-30,OpenHands,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-30,Open SWE,5,1,2026-04-10T04:37:45.589016+00:00 +2025-08-31,Codex,11469,1709,2026-04-10T04:37:45.589016+00:00 +2025-08-31,Copilot,6915,1295,2026-04-10T04:37:45.589016+00:00 +2025-08-31,Claude Code,127,28,2026-04-10T04:37:45.589016+00:00 +2025-08-31,Cursor,1488,327,2026-04-10T04:37:45.589016+00:00 +2025-08-31,Devin,130,43,2026-04-10T04:37:45.589016+00:00 +2025-08-31,Sweep,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-31,Codegen,44,8,2026-04-10T04:37:45.589016+00:00 +2025-08-31,Jules,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-31,Gru,0,0,2026-04-10T04:37:45.589016+00:00 +2025-08-31,OpenHands,1,1,2026-04-10T04:37:45.589016+00:00 +2025-08-31,Open SWE,11,1,2026-04-10T04:37:45.589016+00:00 +2026-01-02,Codex,7623,1662,2026-04-10T04:58:16.798687+00:00 +2026-01-02,Copilot,13328,2687,2026-04-10T04:58:16.798687+00:00 +2026-01-02,Claude Code,11765,2353,2026-04-10T04:58:16.798687+00:00 +2026-01-02,Cursor,933,192,2026-04-10T04:58:16.798687+00:00 +2026-01-02,Devin,278,49,2026-04-10T04:58:16.798687+00:00 +2026-01-02,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-02,Codegen,7,1,2026-04-10T04:58:16.798687+00:00 +2026-01-02,Jules,62,34,2026-04-10T04:58:16.798687+00:00 +2026-01-02,Gru,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-02,OpenHands,5,2,2026-04-10T04:58:16.798687+00:00 +2026-01-02,Open SWE,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-03,Codex,7583,1636,2026-04-10T04:58:16.798687+00:00 +2026-01-03,Copilot,13756,2502,2026-04-10T04:58:16.798687+00:00 +2026-01-03,Claude Code,12334,2470,2026-04-10T04:58:16.798687+00:00 +2026-01-03,Cursor,1169,192,2026-04-10T04:58:16.798687+00:00 +2026-01-03,Devin,185,44,2026-04-10T04:58:16.798687+00:00 +2026-01-03,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-03,Codegen,4,4,2026-04-10T04:58:16.798687+00:00 +2026-01-03,Jules,41,23,2026-04-10T04:58:16.798687+00:00 +2026-01-03,Gru,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-03,OpenHands,6,2,2026-04-10T04:58:16.798687+00:00 +2026-01-03,Open SWE,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-04,Codex,8000,1763,2026-04-10T04:58:16.798687+00:00 +2026-01-04,Copilot,14354,2546,2026-04-10T04:58:16.798687+00:00 +2026-01-04,Claude Code,12756,2586,2026-04-10T04:58:16.798687+00:00 +2026-01-04,Cursor,825,186,2026-04-10T04:58:16.798687+00:00 +2026-01-04,Devin,219,38,2026-04-10T04:58:16.798687+00:00 +2026-01-04,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-04,Codegen,1,1,2026-04-10T04:58:16.798687+00:00 +2026-01-04,Jules,37,21,2026-04-10T04:58:16.798687+00:00 +2026-01-04,Gru,1,1,2026-04-10T04:58:16.798687+00:00 +2026-01-04,OpenHands,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-04,Open SWE,1,1,2026-04-10T04:58:16.798687+00:00 +2026-01-05,Codex,7136,1865,2026-04-10T04:58:16.798687+00:00 +2026-01-05,Copilot,12188,2788,2026-04-10T04:58:16.798687+00:00 +2026-01-05,Claude Code,10635,2608,2026-04-10T04:58:16.798687+00:00 +2026-01-05,Cursor,680,188,2026-04-10T04:58:16.798687+00:00 +2026-01-05,Devin,275,61,2026-04-10T04:58:16.798687+00:00 +2026-01-05,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-05,Codegen,4,2,2026-04-10T04:58:16.798687+00:00 +2026-01-05,Jules,74,26,2026-04-10T04:58:16.798687+00:00 +2026-01-05,Gru,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-05,OpenHands,14,2,2026-04-10T04:58:16.798687+00:00 +2026-01-05,Open SWE,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-06,Codex,7066,1863,2026-04-10T04:58:16.798687+00:00 +2026-01-06,Copilot,12698,2844,2026-04-10T04:58:16.798687+00:00 +2026-01-06,Claude Code,11026,2611,2026-04-10T04:58:16.798687+00:00 +2026-01-06,Cursor,804,201,2026-04-10T04:58:16.798687+00:00 +2026-01-06,Devin,203,57,2026-04-10T04:58:16.798687+00:00 +2026-01-06,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-06,Codegen,18,8,2026-04-10T04:58:16.798687+00:00 +2026-01-06,Jules,53,28,2026-04-10T04:58:16.798687+00:00 +2026-01-06,Gru,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-06,OpenHands,13,4,2026-04-10T04:58:16.798687+00:00 +2026-01-06,Open SWE,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-07,Codex,6982,1842,2026-04-10T04:58:16.798687+00:00 +2026-01-07,Copilot,12178,2909,2026-04-10T04:58:16.798687+00:00 +2026-01-07,Claude Code,10744,2597,2026-04-10T04:58:16.798687+00:00 +2026-01-07,Cursor,800,204,2026-04-10T04:58:16.798687+00:00 +2026-01-07,Devin,281,57,2026-04-10T04:58:16.798687+00:00 +2026-01-07,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-07,Codegen,22,3,2026-04-10T04:58:16.798687+00:00 +2026-01-07,Jules,59,32,2026-04-10T04:58:16.798687+00:00 +2026-01-07,Gru,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-07,OpenHands,15,4,2026-04-10T04:58:16.798687+00:00 +2026-01-07,Open SWE,79,1,2026-04-10T04:58:16.798687+00:00 +2026-01-08,Codex,6984,1894,2026-04-10T04:58:16.798687+00:00 +2026-01-08,Copilot,11871,2896,2026-04-10T04:58:16.798687+00:00 +2026-01-08,Claude Code,10972,2630,2026-04-10T04:58:16.798687+00:00 +2026-01-08,Cursor,875,251,2026-04-10T04:58:16.798687+00:00 +2026-01-08,Devin,326,68,2026-04-10T04:58:16.798687+00:00 +2026-01-08,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-08,Codegen,6,4,2026-04-10T04:58:16.798687+00:00 +2026-01-08,Jules,44,21,2026-04-10T04:58:16.798687+00:00 +2026-01-08,Gru,1,1,2026-04-10T04:58:16.798687+00:00 +2026-01-08,OpenHands,6,2,2026-04-10T04:58:16.798687+00:00 +2026-01-08,Open SWE,2,1,2026-04-10T04:58:16.798687+00:00 +2026-01-09,Codex,7370,1896,2026-04-10T04:58:16.798687+00:00 +2026-01-09,Copilot,11911,2794,2026-04-10T04:58:16.798687+00:00 +2026-01-09,Claude Code,11612,2713,2026-04-10T04:58:16.798687+00:00 +2026-01-09,Cursor,819,209,2026-04-10T04:58:16.798687+00:00 +2026-01-09,Devin,223,60,2026-04-10T04:58:16.798687+00:00 +2026-01-09,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-09,Codegen,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-09,Jules,63,33,2026-04-10T04:58:16.798687+00:00 +2026-01-09,Gru,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-09,OpenHands,6,4,2026-04-10T04:58:16.798687+00:00 +2026-01-09,Open SWE,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-10,Codex,7722,1679,2026-04-10T04:58:16.798687+00:00 +2026-01-10,Copilot,11516,2411,2026-04-10T04:58:16.798687+00:00 +2026-01-10,Claude Code,12595,2810,2026-04-10T04:58:16.798687+00:00 +2026-01-10,Cursor,714,162,2026-04-10T04:58:16.798687+00:00 +2026-01-10,Devin,192,40,2026-04-10T04:58:16.798687+00:00 +2026-01-10,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-10,Codegen,4,2,2026-04-10T04:58:16.798687+00:00 +2026-01-10,Jules,77,35,2026-04-10T04:58:16.798687+00:00 +2026-01-10,Gru,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-10,OpenHands,7,3,2026-04-10T04:58:16.798687+00:00 +2026-01-10,Open SWE,3,2,2026-04-10T04:58:16.798687+00:00 +2026-01-11,Codex,7923,1718,2026-04-10T04:58:16.798687+00:00 +2026-01-11,Copilot,12633,2407,2026-04-10T04:58:16.798687+00:00 +2026-01-11,Claude Code,13490,2811,2026-04-10T04:58:16.798687+00:00 +2026-01-11,Cursor,734,183,2026-04-10T04:58:16.798687+00:00 +2026-01-11,Devin,213,41,2026-04-10T04:58:16.798687+00:00 +2026-01-11,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-11,Codegen,12,6,2026-04-10T04:58:16.798687+00:00 +2026-01-11,Jules,73,36,2026-04-10T04:58:16.798687+00:00 +2026-01-11,Gru,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-11,OpenHands,6,1,2026-04-10T04:58:16.798687+00:00 +2026-01-11,Open SWE,5,2,2026-04-10T04:58:16.798687+00:00 +2026-01-12,Codex,7124,1900,2026-04-10T04:58:16.798687+00:00 +2026-01-12,Copilot,11788,2810,2026-04-10T04:58:16.798687+00:00 +2026-01-12,Claude Code,10383,2732,2026-04-10T04:58:16.798687+00:00 +2026-01-12,Cursor,556,184,2026-04-10T04:58:16.798687+00:00 +2026-01-12,Devin,257,55,2026-04-10T04:58:16.798687+00:00 +2026-01-12,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-12,Codegen,8,4,2026-04-10T04:58:16.798687+00:00 +2026-01-12,Jules,70,38,2026-04-10T04:58:16.798687+00:00 +2026-01-12,Gru,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-12,OpenHands,18,2,2026-04-10T04:58:16.798687+00:00 +2026-01-12,Open SWE,3,1,2026-04-10T04:58:16.798687+00:00 +2026-01-13,Codex,6860,1960,2026-04-10T04:58:16.798687+00:00 +2026-01-13,Copilot,10537,2715,2026-04-10T04:58:16.798687+00:00 +2026-01-13,Claude Code,10188,2686,2026-04-10T04:58:16.798687+00:00 +2026-01-13,Cursor,788,236,2026-04-10T04:58:16.798687+00:00 +2026-01-13,Devin,238,49,2026-04-10T04:58:16.798687+00:00 +2026-01-13,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-13,Codegen,6,3,2026-04-10T04:58:16.798687+00:00 +2026-01-13,Jules,67,36,2026-04-10T04:58:16.798687+00:00 +2026-01-13,Gru,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-13,OpenHands,5,2,2026-04-10T04:58:16.798687+00:00 +2026-01-13,Open SWE,11,2,2026-04-10T04:58:16.798687+00:00 +2026-01-14,Codex,6773,1863,2026-04-10T04:58:16.798687+00:00 +2026-01-14,Copilot,11076,2758,2026-04-10T04:58:16.798687+00:00 +2026-01-14,Claude Code,10491,2788,2026-04-10T04:58:16.798687+00:00 +2026-01-14,Cursor,746,249,2026-04-10T04:58:16.798687+00:00 +2026-01-14,Devin,303,57,2026-04-10T04:58:16.798687+00:00 +2026-01-14,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-14,Codegen,7,2,2026-04-10T04:58:16.798687+00:00 +2026-01-14,Jules,49,21,2026-04-10T04:58:16.798687+00:00 +2026-01-14,Gru,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-14,OpenHands,10,4,2026-04-10T04:58:16.798687+00:00 +2026-01-14,Open SWE,1,1,2026-04-10T04:58:16.798687+00:00 +2026-01-15,Codex,6256,1851,2026-04-10T04:58:16.798687+00:00 +2026-01-15,Copilot,11334,2771,2026-04-10T04:58:16.798687+00:00 +2026-01-15,Claude Code,10615,2768,2026-04-10T04:58:16.798687+00:00 +2026-01-15,Cursor,767,212,2026-04-10T04:58:16.798687+00:00 +2026-01-15,Devin,274,55,2026-04-10T04:58:16.798687+00:00 +2026-01-15,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-15,Codegen,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-15,Jules,56,30,2026-04-10T04:58:16.798687+00:00 +2026-01-15,Gru,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-15,OpenHands,9,2,2026-04-10T04:58:16.798687+00:00 +2026-01-15,Open SWE,24,2,2026-04-10T04:58:16.798687+00:00 +2026-01-16,Codex,6692,1901,2026-04-10T04:58:16.798687+00:00 +2026-01-16,Copilot,11953,2740,2026-04-10T04:58:16.798687+00:00 +2026-01-16,Claude Code,11955,2700,2026-04-10T04:58:16.798687+00:00 +2026-01-16,Cursor,819,237,2026-04-10T04:58:16.798687+00:00 +2026-01-16,Devin,309,63,2026-04-10T04:58:16.798687+00:00 +2026-01-16,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-16,Codegen,1,1,2026-04-10T04:58:16.798687+00:00 +2026-01-16,Jules,46,25,2026-04-10T04:58:16.798687+00:00 +2026-01-16,Gru,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-16,OpenHands,14,6,2026-04-10T04:58:16.798687+00:00 +2026-01-16,Open SWE,4,2,2026-04-10T04:58:16.798687+00:00 +2026-01-17,Codex,7147,1779,2026-04-10T04:58:16.798687+00:00 +2026-01-17,Copilot,12805,2545,2026-04-10T04:58:16.798687+00:00 +2026-01-17,Claude Code,11753,2615,2026-04-10T04:58:16.798687+00:00 +2026-01-17,Cursor,930,196,2026-04-10T04:58:16.798687+00:00 +2026-01-17,Devin,259,43,2026-04-10T04:58:16.798687+00:00 +2026-01-17,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-17,Codegen,1,1,2026-04-10T04:58:16.798687+00:00 +2026-01-17,Jules,41,24,2026-04-10T04:58:16.798687+00:00 +2026-01-17,Gru,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-17,OpenHands,6,3,2026-04-10T04:58:16.798687+00:00 +2026-01-17,Open SWE,26,1,2026-04-10T04:58:16.798687+00:00 +2026-01-18,Codex,8003,1815,2026-04-10T04:58:16.798687+00:00 +2026-01-18,Copilot,12665,2457,2026-04-10T04:58:16.798687+00:00 +2026-01-18,Claude Code,13417,2830,2026-04-10T04:58:16.798687+00:00 +2026-01-18,Cursor,739,169,2026-04-10T04:58:16.798687+00:00 +2026-01-18,Devin,282,49,2026-04-10T04:58:16.798687+00:00 +2026-01-18,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-18,Codegen,7,2,2026-04-10T04:58:16.798687+00:00 +2026-01-18,Jules,31,20,2026-04-10T04:58:16.798687+00:00 +2026-01-18,Gru,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-18,OpenHands,1,1,2026-04-10T04:58:16.798687+00:00 +2026-01-18,Open SWE,2,1,2026-04-10T04:58:16.798687+00:00 +2026-01-19,Codex,7132,1962,2026-04-10T04:58:16.798687+00:00 +2026-01-19,Copilot,11302,2728,2026-04-10T04:58:16.798687+00:00 +2026-01-19,Claude Code,13563,2973,2026-04-10T04:58:16.798687+00:00 +2026-01-19,Cursor,759,212,2026-04-10T04:58:16.798687+00:00 +2026-01-19,Devin,281,62,2026-04-10T04:58:16.798687+00:00 +2026-01-19,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-19,Codegen,9,3,2026-04-10T04:58:16.798687+00:00 +2026-01-19,Jules,47,27,2026-04-10T04:58:16.798687+00:00 +2026-01-19,Gru,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-19,OpenHands,2,1,2026-04-10T04:58:16.798687+00:00 +2026-01-19,Open SWE,15,2,2026-04-10T04:58:16.798687+00:00 +2026-01-20,Codex,7600,2045,2026-04-10T04:58:16.798687+00:00 +2026-01-20,Copilot,10139,2773,2026-04-10T04:58:16.798687+00:00 +2026-01-20,Claude Code,12162,2972,2026-04-10T04:58:16.798687+00:00 +2026-01-20,Cursor,784,221,2026-04-10T04:58:16.798687+00:00 +2026-01-20,Devin,302,69,2026-04-10T04:58:16.798687+00:00 +2026-01-20,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-20,Codegen,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-20,Jules,41,24,2026-04-10T04:58:16.798687+00:00 +2026-01-20,Gru,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-20,OpenHands,9,4,2026-04-10T04:58:16.798687+00:00 +2026-01-20,Open SWE,14,2,2026-04-10T04:58:16.798687+00:00 +2026-01-21,Codex,7041,1951,2026-04-10T04:58:16.798687+00:00 +2026-01-21,Copilot,10240,2668,2026-04-10T04:58:16.798687+00:00 +2026-01-21,Claude Code,11511,2826,2026-04-10T04:58:16.798687+00:00 +2026-01-21,Cursor,914,215,2026-04-10T04:58:16.798687+00:00 +2026-01-21,Devin,284,63,2026-04-10T04:58:16.798687+00:00 +2026-01-21,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-21,Codegen,4,3,2026-04-10T04:58:16.798687+00:00 +2026-01-21,Jules,37,17,2026-04-10T04:58:16.798687+00:00 +2026-01-21,Gru,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-21,OpenHands,7,6,2026-04-10T04:58:16.798687+00:00 +2026-01-21,Open SWE,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-22,Codex,6850,1989,2026-04-10T04:58:16.798687+00:00 +2026-01-22,Copilot,10378,2761,2026-04-10T04:58:16.798687+00:00 +2026-01-22,Claude Code,10652,2790,2026-04-10T04:58:16.798687+00:00 +2026-01-22,Cursor,849,249,2026-04-10T04:58:16.798687+00:00 +2026-01-22,Devin,296,70,2026-04-10T04:58:16.798687+00:00 +2026-01-22,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-22,Codegen,6,3,2026-04-10T04:58:16.798687+00:00 +2026-01-22,Jules,36,13,2026-04-10T04:58:16.798687+00:00 +2026-01-22,Gru,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-22,OpenHands,13,3,2026-04-10T04:58:16.798687+00:00 +2026-01-22,Open SWE,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-23,Codex,6702,1916,2026-04-10T04:58:16.798687+00:00 +2026-01-23,Copilot,10349,2610,2026-04-10T04:58:16.798687+00:00 +2026-01-23,Claude Code,10727,2761,2026-04-10T04:58:16.798687+00:00 +2026-01-23,Cursor,958,247,2026-04-10T04:58:16.798687+00:00 +2026-01-23,Devin,309,64,2026-04-10T04:58:16.798687+00:00 +2026-01-23,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-23,Codegen,3,1,2026-04-10T04:58:16.798687+00:00 +2026-01-23,Jules,28,15,2026-04-10T04:58:16.798687+00:00 +2026-01-23,Gru,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-23,OpenHands,10,5,2026-04-10T04:58:16.798687+00:00 +2026-01-23,Open SWE,5,1,2026-04-10T04:58:16.798687+00:00 +2026-01-24,Codex,6424,1709,2026-04-10T04:58:16.798687+00:00 +2026-01-24,Copilot,10202,2275,2026-04-10T04:58:16.798687+00:00 +2026-01-24,Claude Code,11868,2740,2026-04-10T04:58:16.798687+00:00 +2026-01-24,Cursor,801,173,2026-04-10T04:58:16.798687+00:00 +2026-01-24,Devin,278,47,2026-04-10T04:58:16.798687+00:00 +2026-01-24,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-24,Codegen,32,4,2026-04-10T04:58:16.798687+00:00 +2026-01-24,Jules,15,11,2026-04-10T04:58:16.798687+00:00 +2026-01-24,Gru,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-24,OpenHands,12,3,2026-04-10T04:58:16.798687+00:00 +2026-01-24,Open SWE,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-25,Codex,7101,1813,2026-04-10T04:58:16.798687+00:00 +2026-01-25,Copilot,11166,2340,2026-04-10T04:58:16.798687+00:00 +2026-01-25,Claude Code,12807,2919,2026-04-10T04:58:16.798687+00:00 +2026-01-25,Cursor,700,182,2026-04-10T04:58:16.798687+00:00 +2026-01-25,Devin,118,34,2026-04-10T04:58:16.798687+00:00 +2026-01-25,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-25,Codegen,34,5,2026-04-10T04:58:16.798687+00:00 +2026-01-25,Jules,18,11,2026-04-10T04:58:16.798687+00:00 +2026-01-25,Gru,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-25,OpenHands,1,1,2026-04-10T04:58:16.798687+00:00 +2026-01-25,Open SWE,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-26,Codex,7158,1945,2026-04-10T04:58:16.798687+00:00 +2026-01-26,Copilot,10190,2753,2026-04-10T04:58:16.798687+00:00 +2026-01-26,Claude Code,11527,3055,2026-04-10T04:58:16.798687+00:00 +2026-01-26,Cursor,775,232,2026-04-10T04:58:16.798687+00:00 +2026-01-26,Devin,258,43,2026-04-10T04:58:16.798687+00:00 +2026-01-26,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-26,Codegen,14,2,2026-04-10T04:58:16.798687+00:00 +2026-01-26,Jules,23,8,2026-04-10T04:58:16.798687+00:00 +2026-01-26,Gru,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-26,OpenHands,6,2,2026-04-10T04:58:16.798687+00:00 +2026-01-26,Open SWE,3,2,2026-04-10T04:58:16.798687+00:00 +2026-01-27,Codex,6058,1905,2026-04-10T04:58:16.798687+00:00 +2026-01-27,Copilot,11040,2856,2026-04-10T04:58:16.798687+00:00 +2026-01-27,Claude Code,9773,2857,2026-04-10T04:58:16.798687+00:00 +2026-01-27,Cursor,942,260,2026-04-10T04:58:16.798687+00:00 +2026-01-27,Devin,286,74,2026-04-10T04:58:16.798687+00:00 +2026-01-27,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-27,Codegen,3,3,2026-04-10T04:58:16.798687+00:00 +2026-01-27,Jules,21,9,2026-04-10T04:58:16.798687+00:00 +2026-01-27,Gru,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-27,OpenHands,19,4,2026-04-10T04:58:16.798687+00:00 +2026-01-27,Open SWE,1,1,2026-04-10T04:58:16.798687+00:00 +2026-01-28,Codex,6593,1924,2026-04-10T04:58:16.798687+00:00 +2026-01-28,Copilot,11843,3072,2026-04-10T04:58:16.798687+00:00 +2026-01-28,Claude Code,9447,2847,2026-04-10T04:58:16.798687+00:00 +2026-01-28,Cursor,795,222,2026-04-10T04:58:16.798687+00:00 +2026-01-28,Devin,265,64,2026-04-10T04:58:16.798687+00:00 +2026-01-28,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-28,Codegen,2,1,2026-04-10T04:58:16.798687+00:00 +2026-01-28,Jules,28,14,2026-04-10T04:58:16.798687+00:00 +2026-01-28,Gru,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-28,OpenHands,13,3,2026-04-10T04:58:16.798687+00:00 +2026-01-28,Open SWE,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-29,Codex,6696,1965,2026-04-10T04:58:16.798687+00:00 +2026-01-29,Copilot,12989,3006,2026-04-10T04:58:16.798687+00:00 +2026-01-29,Claude Code,9986,2829,2026-04-10T04:58:16.798687+00:00 +2026-01-29,Cursor,891,248,2026-04-10T04:58:16.798687+00:00 +2026-01-29,Devin,330,72,2026-04-10T04:58:16.798687+00:00 +2026-01-29,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-29,Codegen,16,5,2026-04-10T04:58:16.798687+00:00 +2026-01-29,Jules,37,13,2026-04-10T04:58:16.798687+00:00 +2026-01-29,Gru,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-29,OpenHands,6,4,2026-04-10T04:58:16.798687+00:00 +2026-01-29,Open SWE,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-30,Codex,6671,1894,2026-04-10T04:58:16.798687+00:00 +2026-01-30,Copilot,11954,3051,2026-04-10T04:58:16.798687+00:00 +2026-01-30,Claude Code,10501,2903,2026-04-10T04:58:16.798687+00:00 +2026-01-30,Cursor,882,204,2026-04-10T04:58:16.798687+00:00 +2026-01-30,Devin,286,57,2026-04-10T04:58:16.798687+00:00 +2026-01-30,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-30,Codegen,10,4,2026-04-10T04:58:16.798687+00:00 +2026-01-30,Jules,32,18,2026-04-10T04:58:16.798687+00:00 +2026-01-30,Gru,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-30,OpenHands,3,2,2026-04-10T04:58:16.798687+00:00 +2026-01-30,Open SWE,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-31,Codex,6777,1736,2026-04-10T04:58:16.798687+00:00 +2026-01-31,Copilot,13431,2739,2026-04-10T04:58:16.798687+00:00 +2026-01-31,Claude Code,11573,2841,2026-04-10T04:58:16.798687+00:00 +2026-01-31,Cursor,882,211,2026-04-10T04:58:16.798687+00:00 +2026-01-31,Devin,192,47,2026-04-10T04:58:16.798687+00:00 +2026-01-31,Sweep,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-31,Codegen,16,6,2026-04-10T04:58:16.798687+00:00 +2026-01-31,Jules,35,14,2026-04-10T04:58:16.798687+00:00 +2026-01-31,Gru,0,0,2026-04-10T04:58:16.798687+00:00 +2026-01-31,OpenHands,5,3,2026-04-10T04:58:16.798687+00:00 +2026-01-31,Open SWE,0,0,2026-04-10T04:58:16.798687+00:00 +2025-06-01,Codex,2604,516,2026-04-10T04:58:31.549842+00:00 +2025-06-01,Copilot,968,141,2026-04-10T04:58:31.549842+00:00 +2025-06-01,Claude Code,213,62,2026-04-10T04:58:31.549842+00:00 +2025-06-01,Cursor,29,12,2026-04-10T04:58:31.549842+00:00 +2025-06-01,Devin,248,57,2026-04-10T04:58:31.549842+00:00 +2025-06-01,Sweep,13,2,2026-04-10T04:58:31.549842+00:00 +2025-06-01,Codegen,40,5,2026-04-10T04:58:31.549842+00:00 +2025-06-01,Jules,1,1,2026-04-10T04:58:31.549842+00:00 +2025-06-01,Gru,3,1,2026-04-10T04:58:31.549842+00:00 +2025-06-01,OpenHands,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-01,Open SWE,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-02,Codex,2281,561,2026-04-10T04:58:31.549842+00:00 +2025-06-02,Copilot,1116,214,2026-04-10T04:58:31.549842+00:00 +2025-06-02,Claude Code,125,54,2026-04-10T04:58:31.549842+00:00 +2025-06-02,Cursor,37,13,2026-04-10T04:58:31.549842+00:00 +2025-06-02,Devin,160,51,2026-04-10T04:58:31.549842+00:00 +2025-06-02,Sweep,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-02,Codegen,22,6,2026-04-10T04:58:31.549842+00:00 +2025-06-02,Jules,1,1,2026-04-10T04:58:31.549842+00:00 +2025-06-02,Gru,5,4,2026-04-10T04:58:31.549842+00:00 +2025-06-02,OpenHands,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-02,Open SWE,4,1,2026-04-10T04:58:31.549842+00:00 +2025-06-03,Codex,6575,2582,2026-04-10T04:58:31.549842+00:00 +2025-06-03,Copilot,1025,219,2026-04-10T04:58:31.549842+00:00 +2025-06-03,Claude Code,109,54,2026-04-10T04:58:31.549842+00:00 +2025-06-03,Cursor,29,13,2026-04-10T04:58:31.549842+00:00 +2025-06-03,Devin,232,61,2026-04-10T04:58:31.549842+00:00 +2025-06-03,Sweep,2,2,2026-04-10T04:58:31.549842+00:00 +2025-06-03,Codegen,41,14,2026-04-10T04:58:31.549842+00:00 +2025-06-03,Jules,2,1,2026-04-10T04:58:31.549842+00:00 +2025-06-03,Gru,5,1,2026-04-10T04:58:31.549842+00:00 +2025-06-03,OpenHands,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-03,Open SWE,1,1,2026-04-10T04:58:31.549842+00:00 +2025-06-04,Codex,20464,7141,2026-04-10T04:58:31.549842+00:00 +2025-06-04,Copilot,1068,221,2026-04-10T04:58:31.549842+00:00 +2025-06-04,Claude Code,194,65,2026-04-10T04:58:31.549842+00:00 +2025-06-04,Cursor,47,21,2026-04-10T04:58:31.549842+00:00 +2025-06-04,Devin,228,63,2026-04-10T04:58:31.549842+00:00 +2025-06-04,Sweep,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-04,Codegen,23,10,2026-04-10T04:58:31.549842+00:00 +2025-06-04,Jules,2,1,2026-04-10T04:58:31.549842+00:00 +2025-06-04,Gru,3,1,2026-04-10T04:58:31.549842+00:00 +2025-06-04,OpenHands,1,1,2026-04-10T04:58:31.549842+00:00 +2025-06-04,Open SWE,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-05,Codex,17876,5480,2026-04-10T04:58:31.549842+00:00 +2025-06-05,Copilot,906,208,2026-04-10T04:58:31.549842+00:00 +2025-06-05,Claude Code,124,49,2026-04-10T04:58:31.549842+00:00 +2025-06-05,Cursor,110,54,2026-04-10T04:58:31.549842+00:00 +2025-06-05,Devin,218,60,2026-04-10T04:58:31.549842+00:00 +2025-06-05,Sweep,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-05,Codegen,44,6,2026-04-10T04:58:31.549842+00:00 +2025-06-05,Jules,4,2,2026-04-10T04:58:31.549842+00:00 +2025-06-05,Gru,20,2,2026-04-10T04:58:31.549842+00:00 +2025-06-05,OpenHands,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-05,Open SWE,1,1,2026-04-10T04:58:31.549842+00:00 +2025-06-06,Codex,16337,4396,2026-04-10T04:58:31.549842+00:00 +2025-06-06,Copilot,1219,212,2026-04-10T04:58:31.549842+00:00 +2025-06-06,Claude Code,143,49,2026-04-10T04:58:31.549842+00:00 +2025-06-06,Cursor,106,42,2026-04-10T04:58:31.549842+00:00 +2025-06-06,Devin,215,56,2026-04-10T04:58:31.549842+00:00 +2025-06-06,Sweep,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-06,Codegen,66,6,2026-04-10T04:58:31.549842+00:00 +2025-06-06,Jules,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-06,Gru,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-06,OpenHands,5,2,2026-04-10T04:58:31.549842+00:00 +2025-06-06,Open SWE,1,1,2026-04-10T04:58:31.549842+00:00 +2025-06-07,Codex,16894,3885,2026-04-10T04:58:31.549842+00:00 +2025-06-07,Copilot,1270,193,2026-04-10T04:58:31.549842+00:00 +2025-06-07,Claude Code,224,53,2026-04-10T04:58:31.549842+00:00 +2025-06-07,Cursor,128,47,2026-04-10T04:58:31.549842+00:00 +2025-06-07,Devin,244,66,2026-04-10T04:58:31.549842+00:00 +2025-06-07,Sweep,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-07,Codegen,55,7,2026-04-10T04:58:31.549842+00:00 +2025-06-07,Jules,3,1,2026-04-10T04:58:31.549842+00:00 +2025-06-07,Gru,1,1,2026-04-10T04:58:31.549842+00:00 +2025-06-07,OpenHands,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-07,Open SWE,2,1,2026-04-10T04:58:31.549842+00:00 +2025-06-08,Codex,16745,3661,2026-04-10T04:58:31.549842+00:00 +2025-06-08,Copilot,1034,138,2026-04-10T04:58:31.549842+00:00 +2025-06-08,Claude Code,241,54,2026-04-10T04:58:31.549842+00:00 +2025-06-08,Cursor,148,44,2026-04-10T04:58:31.549842+00:00 +2025-06-08,Devin,149,47,2026-04-10T04:58:31.549842+00:00 +2025-06-08,Sweep,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-08,Codegen,111,12,2026-04-10T04:58:31.549842+00:00 +2025-06-08,Jules,4,3,2026-04-10T04:58:31.549842+00:00 +2025-06-08,Gru,7,1,2026-04-10T04:58:31.549842+00:00 +2025-06-08,OpenHands,7,1,2026-04-10T04:58:31.549842+00:00 +2025-06-08,Open SWE,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-09,Codex,14722,3823,2026-04-10T04:58:31.549842+00:00 +2025-06-09,Copilot,1103,192,2026-04-10T04:58:31.549842+00:00 +2025-06-09,Claude Code,157,41,2026-04-10T04:58:31.549842+00:00 +2025-06-09,Cursor,210,48,2026-04-10T04:58:31.549842+00:00 +2025-06-09,Devin,193,54,2026-04-10T04:58:31.549842+00:00 +2025-06-09,Sweep,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-09,Codegen,73,16,2026-04-10T04:58:31.549842+00:00 +2025-06-09,Jules,2,1,2026-04-10T04:58:31.549842+00:00 +2025-06-09,Gru,4,2,2026-04-10T04:58:31.549842+00:00 +2025-06-09,OpenHands,9,1,2026-04-10T04:58:31.549842+00:00 +2025-06-09,Open SWE,26,1,2026-04-10T04:58:31.549842+00:00 +2025-06-10,Codex,14305,3821,2026-04-10T04:58:31.549842+00:00 +2025-06-10,Copilot,1149,257,2026-04-10T04:58:31.549842+00:00 +2025-06-10,Claude Code,226,58,2026-04-10T04:58:31.549842+00:00 +2025-06-10,Cursor,166,46,2026-04-10T04:58:31.549842+00:00 +2025-06-10,Devin,255,69,2026-04-10T04:58:31.549842+00:00 +2025-06-10,Sweep,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-10,Codegen,72,15,2026-04-10T04:58:31.549842+00:00 +2025-06-10,Jules,9,3,2026-04-10T04:58:31.549842+00:00 +2025-06-10,Gru,13,5,2026-04-10T04:58:31.549842+00:00 +2025-06-10,OpenHands,2,1,2026-04-10T04:58:31.549842+00:00 +2025-06-10,Open SWE,1,1,2026-04-10T04:58:31.549842+00:00 +2025-06-11,Codex,14834,3663,2026-04-10T04:58:31.549842+00:00 +2025-06-11,Copilot,1442,277,2026-04-10T04:58:31.549842+00:00 +2025-06-11,Claude Code,177,49,2026-04-10T04:58:31.549842+00:00 +2025-06-11,Cursor,146,48,2026-04-10T04:58:31.549842+00:00 +2025-06-11,Devin,206,52,2026-04-10T04:58:31.549842+00:00 +2025-06-11,Sweep,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-11,Codegen,77,11,2026-04-10T04:58:31.549842+00:00 +2025-06-11,Jules,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-11,Gru,7,4,2026-04-10T04:58:31.549842+00:00 +2025-06-11,OpenHands,1,1,2026-04-10T04:58:31.549842+00:00 +2025-06-11,Open SWE,14,1,2026-04-10T04:58:31.549842+00:00 +2025-06-12,Codex,12516,3200,2026-04-10T04:58:31.549842+00:00 +2025-06-12,Copilot,1168,242,2026-04-10T04:58:31.549842+00:00 +2025-06-12,Claude Code,147,38,2026-04-10T04:58:31.549842+00:00 +2025-06-12,Cursor,133,48,2026-04-10T04:58:31.549842+00:00 +2025-06-12,Devin,160,67,2026-04-10T04:58:31.549842+00:00 +2025-06-12,Sweep,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-12,Codegen,43,8,2026-04-10T04:58:31.549842+00:00 +2025-06-12,Jules,6,3,2026-04-10T04:58:31.549842+00:00 +2025-06-12,Gru,19,1,2026-04-10T04:58:31.549842+00:00 +2025-06-12,OpenHands,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-12,Open SWE,28,2,2026-04-10T04:58:31.549842+00:00 +2025-06-13,Codex,13629,3160,2026-04-10T04:58:31.549842+00:00 +2025-06-13,Copilot,1584,278,2026-04-10T04:58:31.549842+00:00 +2025-06-13,Claude Code,181,59,2026-04-10T04:58:31.549842+00:00 +2025-06-13,Cursor,163,50,2026-04-10T04:58:31.549842+00:00 +2025-06-13,Devin,157,59,2026-04-10T04:58:31.549842+00:00 +2025-06-13,Sweep,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-13,Codegen,29,7,2026-04-10T04:58:31.549842+00:00 +2025-06-13,Jules,4,3,2026-04-10T04:58:31.549842+00:00 +2025-06-13,Gru,7,2,2026-04-10T04:58:31.549842+00:00 +2025-06-13,OpenHands,25,1,2026-04-10T04:58:31.549842+00:00 +2025-06-13,Open SWE,12,1,2026-04-10T04:58:31.549842+00:00 +2025-06-14,Codex,13339,2929,2026-04-10T04:58:31.549842+00:00 +2025-06-14,Copilot,1149,163,2026-04-10T04:58:31.549842+00:00 +2025-06-14,Claude Code,275,49,2026-04-10T04:58:31.549842+00:00 +2025-06-14,Cursor,130,36,2026-04-10T04:58:31.549842+00:00 +2025-06-14,Devin,229,47,2026-04-10T04:58:31.549842+00:00 +2025-06-14,Sweep,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-14,Codegen,32,10,2026-04-10T04:58:31.549842+00:00 +2025-06-14,Jules,3,1,2026-04-10T04:58:31.549842+00:00 +2025-06-14,Gru,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-14,OpenHands,19,1,2026-04-10T04:58:31.549842+00:00 +2025-06-14,Open SWE,43,2,2026-04-10T04:58:31.549842+00:00 +2025-06-15,Codex,13786,2803,2026-04-10T04:58:31.549842+00:00 +2025-06-15,Copilot,1302,171,2026-04-10T04:58:31.549842+00:00 +2025-06-15,Claude Code,208,47,2026-04-10T04:58:31.549842+00:00 +2025-06-15,Cursor,163,51,2026-04-10T04:58:31.549842+00:00 +2025-06-15,Devin,185,42,2026-04-10T04:58:31.549842+00:00 +2025-06-15,Sweep,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-15,Codegen,61,10,2026-04-10T04:58:31.549842+00:00 +2025-06-15,Jules,2,1,2026-04-10T04:58:31.549842+00:00 +2025-06-15,Gru,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-15,OpenHands,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-15,Open SWE,8,2,2026-04-10T04:58:31.549842+00:00 +2025-06-16,Codex,12336,3072,2026-04-10T04:58:31.549842+00:00 +2025-06-16,Copilot,1197,257,2026-04-10T04:58:31.549842+00:00 +2025-06-16,Claude Code,180,54,2026-04-10T04:58:31.549842+00:00 +2025-06-16,Cursor,174,41,2026-04-10T04:58:31.549842+00:00 +2025-06-16,Devin,189,69,2026-04-10T04:58:31.549842+00:00 +2025-06-16,Sweep,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-16,Codegen,12,6,2026-04-10T04:58:31.549842+00:00 +2025-06-16,Jules,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-16,Gru,3,3,2026-04-10T04:58:31.549842+00:00 +2025-06-16,OpenHands,8,1,2026-04-10T04:58:31.549842+00:00 +2025-06-16,Open SWE,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-17,Codex,11445,2993,2026-04-10T04:58:31.549842+00:00 +2025-06-17,Copilot,1167,252,2026-04-10T04:58:31.549842+00:00 +2025-06-17,Claude Code,148,54,2026-04-10T04:58:31.549842+00:00 +2025-06-17,Cursor,139,47,2026-04-10T04:58:31.549842+00:00 +2025-06-17,Devin,209,67,2026-04-10T04:58:31.549842+00:00 +2025-06-17,Sweep,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-17,Codegen,17,6,2026-04-10T04:58:31.549842+00:00 +2025-06-17,Jules,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-17,Gru,2,2,2026-04-10T04:58:31.549842+00:00 +2025-06-17,OpenHands,12,1,2026-04-10T04:58:31.549842+00:00 +2025-06-17,Open SWE,5,1,2026-04-10T04:58:31.549842+00:00 +2025-06-18,Codex,12491,2959,2026-04-10T04:58:31.549842+00:00 +2025-06-18,Copilot,1228,231,2026-04-10T04:58:31.549842+00:00 +2025-06-18,Claude Code,146,52,2026-04-10T04:58:31.549842+00:00 +2025-06-18,Cursor,196,61,2026-04-10T04:58:31.549842+00:00 +2025-06-18,Devin,197,75,2026-04-10T04:58:31.549842+00:00 +2025-06-18,Sweep,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-18,Codegen,3,3,2026-04-10T04:58:31.549842+00:00 +2025-06-18,Jules,5,1,2026-04-10T04:58:31.549842+00:00 +2025-06-18,Gru,16,1,2026-04-10T04:58:31.549842+00:00 +2025-06-18,OpenHands,4,1,2026-04-10T04:58:31.549842+00:00 +2025-06-18,Open SWE,44,2,2026-04-10T04:58:31.549842+00:00 +2025-06-19,Codex,13092,2943,2026-04-10T04:58:31.549842+00:00 +2025-06-19,Copilot,1143,262,2026-04-10T04:58:31.549842+00:00 +2025-06-19,Claude Code,141,57,2026-04-10T04:58:31.549842+00:00 +2025-06-19,Cursor,226,79,2026-04-10T04:58:31.549842+00:00 +2025-06-19,Devin,281,69,2026-04-10T04:58:31.549842+00:00 +2025-06-19,Sweep,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-19,Codegen,24,11,2026-04-10T04:58:31.549842+00:00 +2025-06-19,Jules,15,5,2026-04-10T04:58:31.549842+00:00 +2025-06-19,Gru,7,1,2026-04-10T04:58:31.549842+00:00 +2025-06-19,OpenHands,2,1,2026-04-10T04:58:31.549842+00:00 +2025-06-19,Open SWE,4,2,2026-04-10T04:58:31.549842+00:00 +2025-06-20,Codex,12257,2763,2026-04-10T04:58:31.549842+00:00 +2025-06-20,Copilot,909,239,2026-04-10T04:58:31.549842+00:00 +2025-06-20,Claude Code,160,55,2026-04-10T04:58:31.549842+00:00 +2025-06-20,Cursor,360,100,2026-04-10T04:58:31.549842+00:00 +2025-06-20,Devin,259,66,2026-04-10T04:58:31.549842+00:00 +2025-06-20,Sweep,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-20,Codegen,50,11,2026-04-10T04:58:31.549842+00:00 +2025-06-20,Jules,8,4,2026-04-10T04:58:31.549842+00:00 +2025-06-20,Gru,4,1,2026-04-10T04:58:31.549842+00:00 +2025-06-20,OpenHands,5,2,2026-04-10T04:58:31.549842+00:00 +2025-06-20,Open SWE,4,1,2026-04-10T04:58:31.549842+00:00 +2025-06-21,Codex,13227,2431,2026-04-10T04:58:31.549842+00:00 +2025-06-21,Copilot,1064,179,2026-04-10T04:58:31.549842+00:00 +2025-06-21,Claude Code,130,42,2026-04-10T04:58:31.549842+00:00 +2025-06-21,Cursor,305,84,2026-04-10T04:58:31.549842+00:00 +2025-06-21,Devin,250,58,2026-04-10T04:58:31.549842+00:00 +2025-06-21,Sweep,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-21,Codegen,52,8,2026-04-10T04:58:31.549842+00:00 +2025-06-21,Jules,22,9,2026-04-10T04:58:31.549842+00:00 +2025-06-21,Gru,2,1,2026-04-10T04:58:31.549842+00:00 +2025-06-21,OpenHands,11,1,2026-04-10T04:58:31.549842+00:00 +2025-06-21,Open SWE,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-22,Codex,13339,2531,2026-04-10T04:58:31.549842+00:00 +2025-06-22,Copilot,937,169,2026-04-10T04:58:31.549842+00:00 +2025-06-22,Claude Code,124,35,2026-04-10T04:58:31.549842+00:00 +2025-06-22,Cursor,343,68,2026-04-10T04:58:31.549842+00:00 +2025-06-22,Devin,159,56,2026-04-10T04:58:31.549842+00:00 +2025-06-22,Sweep,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-22,Codegen,34,7,2026-04-10T04:58:31.549842+00:00 +2025-06-22,Jules,36,8,2026-04-10T04:58:31.549842+00:00 +2025-06-22,Gru,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-22,OpenHands,2,1,2026-04-10T04:58:31.549842+00:00 +2025-06-22,Open SWE,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-23,Codex,10795,2773,2026-04-10T04:58:31.549842+00:00 +2025-06-23,Copilot,805,232,2026-04-10T04:58:31.549842+00:00 +2025-06-23,Claude Code,215,51,2026-04-10T04:58:31.549842+00:00 +2025-06-23,Cursor,388,94,2026-04-10T04:58:31.549842+00:00 +2025-06-23,Devin,201,66,2026-04-10T04:58:31.549842+00:00 +2025-06-23,Sweep,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-23,Codegen,54,9,2026-04-10T04:58:31.549842+00:00 +2025-06-23,Jules,28,11,2026-04-10T04:58:31.549842+00:00 +2025-06-23,Gru,2,1,2026-04-10T04:58:31.549842+00:00 +2025-06-23,OpenHands,9,1,2026-04-10T04:58:31.549842+00:00 +2025-06-23,Open SWE,7,1,2026-04-10T04:58:31.549842+00:00 +2025-06-24,Codex,11031,2693,2026-04-10T04:58:31.549842+00:00 +2025-06-24,Copilot,1094,252,2026-04-10T04:58:31.549842+00:00 +2025-06-24,Claude Code,194,49,2026-04-10T04:58:31.549842+00:00 +2025-06-24,Cursor,281,86,2026-04-10T04:58:31.549842+00:00 +2025-06-24,Devin,178,56,2026-04-10T04:58:31.549842+00:00 +2025-06-24,Sweep,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-24,Codegen,10,6,2026-04-10T04:58:31.549842+00:00 +2025-06-24,Jules,14,10,2026-04-10T04:58:31.549842+00:00 +2025-06-24,Gru,1,1,2026-04-10T04:58:31.549842+00:00 +2025-06-24,OpenHands,3,1,2026-04-10T04:58:31.549842+00:00 +2025-06-24,Open SWE,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-25,Codex,11029,2573,2026-04-10T04:58:31.549842+00:00 +2025-06-25,Copilot,1039,285,2026-04-10T04:58:31.549842+00:00 +2025-06-25,Claude Code,104,38,2026-04-10T04:58:31.549842+00:00 +2025-06-25,Cursor,312,99,2026-04-10T04:58:31.549842+00:00 +2025-06-25,Devin,296,77,2026-04-10T04:58:31.549842+00:00 +2025-06-25,Sweep,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-25,Codegen,18,4,2026-04-10T04:58:31.549842+00:00 +2025-06-25,Jules,35,10,2026-04-10T04:58:31.549842+00:00 +2025-06-25,Gru,1,1,2026-04-10T04:58:31.549842+00:00 +2025-06-25,OpenHands,9,1,2026-04-10T04:58:31.549842+00:00 +2025-06-25,Open SWE,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-26,Codex,10502,2493,2026-04-10T04:58:31.549842+00:00 +2025-06-26,Copilot,1413,362,2026-04-10T04:58:31.549842+00:00 +2025-06-26,Claude Code,129,43,2026-04-10T04:58:31.549842+00:00 +2025-06-26,Cursor,304,88,2026-04-10T04:58:31.549842+00:00 +2025-06-26,Devin,310,64,2026-04-10T04:58:31.549842+00:00 +2025-06-26,Sweep,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-26,Codegen,9,3,2026-04-10T04:58:31.549842+00:00 +2025-06-26,Jules,28,14,2026-04-10T04:58:31.549842+00:00 +2025-06-26,Gru,14,1,2026-04-10T04:58:31.549842+00:00 +2025-06-26,OpenHands,3,1,2026-04-10T04:58:31.549842+00:00 +2025-06-26,Open SWE,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-27,Codex,10360,2364,2026-04-10T04:58:31.549842+00:00 +2025-06-27,Copilot,1424,379,2026-04-10T04:58:31.549842+00:00 +2025-06-27,Claude Code,114,37,2026-04-10T04:58:31.549842+00:00 +2025-06-27,Cursor,261,76,2026-04-10T04:58:31.549842+00:00 +2025-06-27,Devin,279,66,2026-04-10T04:58:31.549842+00:00 +2025-06-27,Sweep,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-27,Codegen,1,1,2026-04-10T04:58:31.549842+00:00 +2025-06-27,Jules,22,11,2026-04-10T04:58:31.549842+00:00 +2025-06-27,Gru,8,1,2026-04-10T04:58:31.549842+00:00 +2025-06-27,OpenHands,7,2,2026-04-10T04:58:31.549842+00:00 +2025-06-27,Open SWE,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-28,Codex,10341,2067,2026-04-10T04:58:31.549842+00:00 +2025-06-28,Copilot,1197,279,2026-04-10T04:58:31.549842+00:00 +2025-06-28,Claude Code,93,31,2026-04-10T04:58:31.549842+00:00 +2025-06-28,Cursor,224,58,2026-04-10T04:58:31.549842+00:00 +2025-06-28,Devin,185,51,2026-04-10T04:58:31.549842+00:00 +2025-06-28,Sweep,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-28,Codegen,21,5,2026-04-10T04:58:31.549842+00:00 +2025-06-28,Jules,67,16,2026-04-10T04:58:31.549842+00:00 +2025-06-28,Gru,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-28,OpenHands,10,2,2026-04-10T04:58:31.549842+00:00 +2025-06-28,Open SWE,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-29,Codex,10735,2110,2026-04-10T04:58:31.549842+00:00 +2025-06-29,Copilot,1394,300,2026-04-10T04:58:31.549842+00:00 +2025-06-29,Claude Code,227,33,2026-04-10T04:58:31.549842+00:00 +2025-06-29,Cursor,218,66,2026-04-10T04:58:31.549842+00:00 +2025-06-29,Devin,125,36,2026-04-10T04:58:31.549842+00:00 +2025-06-29,Sweep,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-29,Codegen,22,7,2026-04-10T04:58:31.549842+00:00 +2025-06-29,Jules,58,18,2026-04-10T04:58:31.549842+00:00 +2025-06-29,Gru,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-29,OpenHands,3,2,2026-04-10T04:58:31.549842+00:00 +2025-06-29,Open SWE,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-30,Codex,9677,2366,2026-04-10T04:58:31.549842+00:00 +2025-06-30,Copilot,1688,425,2026-04-10T04:58:31.549842+00:00 +2025-06-30,Claude Code,104,41,2026-04-10T04:58:31.549842+00:00 +2025-06-30,Cursor,518,182,2026-04-10T04:58:31.549842+00:00 +2025-06-30,Devin,185,57,2026-04-10T04:58:31.549842+00:00 +2025-06-30,Sweep,0,0,2026-04-10T04:58:31.549842+00:00 +2025-06-30,Codegen,10,4,2026-04-10T04:58:31.549842+00:00 +2025-06-30,Jules,20,12,2026-04-10T04:58:31.549842+00:00 +2025-06-30,Gru,5,1,2026-04-10T04:58:31.549842+00:00 +2025-06-30,OpenHands,2,1,2026-04-10T04:58:31.549842+00:00 +2025-06-30,Open SWE,9,4,2026-04-10T04:58:31.549842+00:00 +2025-05-01,Codex,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-01,Copilot,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-01,Claude Code,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-01,Cursor,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-01,Devin,475,66,2026-04-10T04:58:38.230973+00:00 +2025-05-01,Sweep,15,1,2026-04-10T04:58:38.230973+00:00 +2025-05-01,Codegen,13,5,2026-04-10T04:58:38.230973+00:00 +2025-05-01,Jules,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-01,Gru,2,2,2026-04-10T04:58:38.230973+00:00 +2025-05-01,OpenHands,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-01,Open SWE,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-02,Codex,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-02,Copilot,2,1,2026-04-10T04:58:38.230973+00:00 +2025-05-02,Claude Code,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-02,Cursor,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-02,Devin,566,89,2026-04-10T04:58:38.230973+00:00 +2025-05-02,Sweep,4,2,2026-04-10T04:58:38.230973+00:00 +2025-05-02,Codegen,15,6,2026-04-10T04:58:38.230973+00:00 +2025-05-02,Jules,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-02,Gru,9,1,2026-04-10T04:58:38.230973+00:00 +2025-05-02,OpenHands,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-02,Open SWE,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-03,Codex,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-03,Copilot,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-03,Claude Code,3,1,2026-04-10T04:58:38.230973+00:00 +2025-05-03,Cursor,4,2,2026-04-10T04:58:38.230973+00:00 +2025-05-03,Devin,480,72,2026-04-10T04:58:38.230973+00:00 +2025-05-03,Sweep,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-03,Codegen,201,6,2026-04-10T04:58:38.230973+00:00 +2025-05-03,Jules,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-03,Gru,18,3,2026-04-10T04:58:38.230973+00:00 +2025-05-03,OpenHands,3,1,2026-04-10T04:58:38.230973+00:00 +2025-05-03,Open SWE,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-04,Codex,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-04,Copilot,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-04,Claude Code,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-04,Cursor,1,1,2026-04-10T04:58:38.230973+00:00 +2025-05-04,Devin,412,54,2026-04-10T04:58:38.230973+00:00 +2025-05-04,Sweep,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-04,Codegen,147,10,2026-04-10T04:58:38.230973+00:00 +2025-05-04,Jules,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-04,Gru,9,2,2026-04-10T04:58:38.230973+00:00 +2025-05-04,OpenHands,1,1,2026-04-10T04:58:38.230973+00:00 +2025-05-04,Open SWE,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-05,Codex,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-05,Copilot,1,1,2026-04-10T04:58:38.230973+00:00 +2025-05-05,Claude Code,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-05,Cursor,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-05,Devin,547,73,2026-04-10T04:58:38.230973+00:00 +2025-05-05,Sweep,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-05,Codegen,5,2,2026-04-10T04:58:38.230973+00:00 +2025-05-05,Jules,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-05,Gru,1,1,2026-04-10T04:58:38.230973+00:00 +2025-05-05,OpenHands,10,2,2026-04-10T04:58:38.230973+00:00 +2025-05-05,Open SWE,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-06,Codex,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-06,Copilot,1,1,2026-04-10T04:58:38.230973+00:00 +2025-05-06,Claude Code,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-06,Cursor,1,1,2026-04-10T04:58:38.230973+00:00 +2025-05-06,Devin,560,81,2026-04-10T04:58:38.230973+00:00 +2025-05-06,Sweep,4,2,2026-04-10T04:58:38.230973+00:00 +2025-05-06,Codegen,100,8,2026-04-10T04:58:38.230973+00:00 +2025-05-06,Jules,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-06,Gru,10,2,2026-04-10T04:58:38.230973+00:00 +2025-05-06,OpenHands,3,1,2026-04-10T04:58:38.230973+00:00 +2025-05-06,Open SWE,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-07,Codex,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-07,Copilot,1,1,2026-04-10T04:58:38.230973+00:00 +2025-05-07,Claude Code,2,1,2026-04-10T04:58:38.230973+00:00 +2025-05-07,Cursor,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-07,Devin,651,92,2026-04-10T04:58:38.230973+00:00 +2025-05-07,Sweep,1,1,2026-04-10T04:58:38.230973+00:00 +2025-05-07,Codegen,15,5,2026-04-10T04:58:38.230973+00:00 +2025-05-07,Jules,1,1,2026-04-10T04:58:38.230973+00:00 +2025-05-07,Gru,7,3,2026-04-10T04:58:38.230973+00:00 +2025-05-07,OpenHands,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-07,Open SWE,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-08,Codex,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-08,Copilot,1,1,2026-04-10T04:58:38.230973+00:00 +2025-05-08,Claude Code,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-08,Cursor,1,1,2026-04-10T04:58:38.230973+00:00 +2025-05-08,Devin,565,72,2026-04-10T04:58:38.230973+00:00 +2025-05-08,Sweep,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-08,Codegen,37,5,2026-04-10T04:58:38.230973+00:00 +2025-05-08,Jules,1,1,2026-04-10T04:58:38.230973+00:00 +2025-05-08,Gru,36,5,2026-04-10T04:58:38.230973+00:00 +2025-05-08,OpenHands,1,1,2026-04-10T04:58:38.230973+00:00 +2025-05-08,Open SWE,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-09,Codex,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-09,Copilot,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-09,Claude Code,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-09,Cursor,1,1,2026-04-10T04:58:38.230973+00:00 +2025-05-09,Devin,609,90,2026-04-10T04:58:38.230973+00:00 +2025-05-09,Sweep,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-09,Codegen,12,3,2026-04-10T04:58:38.230973+00:00 +2025-05-09,Jules,2,1,2026-04-10T04:58:38.230973+00:00 +2025-05-09,Gru,10,3,2026-04-10T04:58:38.230973+00:00 +2025-05-09,OpenHands,6,2,2026-04-10T04:58:38.230973+00:00 +2025-05-09,Open SWE,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-10,Codex,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-10,Copilot,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-10,Claude Code,21,1,2026-04-10T04:58:38.230973+00:00 +2025-05-10,Cursor,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-10,Devin,409,70,2026-04-10T04:58:38.230973+00:00 +2025-05-10,Sweep,14,2,2026-04-10T04:58:38.230973+00:00 +2025-05-10,Codegen,40,5,2026-04-10T04:58:38.230973+00:00 +2025-05-10,Jules,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-10,Gru,2,2,2026-04-10T04:58:38.230973+00:00 +2025-05-10,OpenHands,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-10,Open SWE,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-11,Codex,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-11,Copilot,5,2,2026-04-10T04:58:38.230973+00:00 +2025-05-11,Claude Code,2,1,2026-04-10T04:58:38.230973+00:00 +2025-05-11,Cursor,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-11,Devin,448,67,2026-04-10T04:58:38.230973+00:00 +2025-05-11,Sweep,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-11,Codegen,13,3,2026-04-10T04:58:38.230973+00:00 +2025-05-11,Jules,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-11,Gru,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-11,OpenHands,1,1,2026-04-10T04:58:38.230973+00:00 +2025-05-11,Open SWE,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-12,Codex,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-12,Copilot,8,2,2026-04-10T04:58:38.230973+00:00 +2025-05-12,Claude Code,7,1,2026-04-10T04:58:38.230973+00:00 +2025-05-12,Cursor,1,1,2026-04-10T04:58:38.230973+00:00 +2025-05-12,Devin,655,83,2026-04-10T04:58:38.230973+00:00 +2025-05-12,Sweep,6,1,2026-04-10T04:58:38.230973+00:00 +2025-05-12,Codegen,25,4,2026-04-10T04:58:38.230973+00:00 +2025-05-12,Jules,2,2,2026-04-10T04:58:38.230973+00:00 +2025-05-12,Gru,13,2,2026-04-10T04:58:38.230973+00:00 +2025-05-12,OpenHands,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-12,Open SWE,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-13,Codex,2,1,2026-04-10T04:58:38.230973+00:00 +2025-05-13,Copilot,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-13,Claude Code,9,1,2026-04-10T04:58:38.230973+00:00 +2025-05-13,Cursor,1,1,2026-04-10T04:58:38.230973+00:00 +2025-05-13,Devin,792,92,2026-04-10T04:58:38.230973+00:00 +2025-05-13,Sweep,2,1,2026-04-10T04:58:38.230973+00:00 +2025-05-13,Codegen,3,3,2026-04-10T04:58:38.230973+00:00 +2025-05-13,Jules,1,1,2026-04-10T04:58:38.230973+00:00 +2025-05-13,Gru,6,2,2026-04-10T04:58:38.230973+00:00 +2025-05-13,OpenHands,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-13,Open SWE,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-14,Codex,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-14,Copilot,7,4,2026-04-10T04:58:38.230973+00:00 +2025-05-14,Claude Code,5,1,2026-04-10T04:58:38.230973+00:00 +2025-05-14,Cursor,12,3,2026-04-10T04:58:38.230973+00:00 +2025-05-14,Devin,633,88,2026-04-10T04:58:38.230973+00:00 +2025-05-14,Sweep,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-14,Codegen,8,4,2026-04-10T04:58:38.230973+00:00 +2025-05-14,Jules,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-14,Gru,5,3,2026-04-10T04:58:38.230973+00:00 +2025-05-14,OpenHands,1,1,2026-04-10T04:58:38.230973+00:00 +2025-05-14,Open SWE,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-15,Codex,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-15,Copilot,10,2,2026-04-10T04:58:38.230973+00:00 +2025-05-15,Claude Code,2,1,2026-04-10T04:58:38.230973+00:00 +2025-05-15,Cursor,1,1,2026-04-10T04:58:38.230973+00:00 +2025-05-15,Devin,496,97,2026-04-10T04:58:38.230973+00:00 +2025-05-15,Sweep,1,1,2026-04-10T04:58:38.230973+00:00 +2025-05-15,Codegen,12,7,2026-04-10T04:58:38.230973+00:00 +2025-05-15,Jules,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-15,Gru,48,6,2026-04-10T04:58:38.230973+00:00 +2025-05-15,OpenHands,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-15,Open SWE,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-16,Codex,276,118,2026-04-10T04:58:38.230973+00:00 +2025-05-16,Copilot,15,2,2026-04-10T04:58:38.230973+00:00 +2025-05-16,Claude Code,10,1,2026-04-10T04:58:38.230973+00:00 +2025-05-16,Cursor,19,4,2026-04-10T04:58:38.230973+00:00 +2025-05-16,Devin,623,84,2026-04-10T04:58:38.230973+00:00 +2025-05-16,Sweep,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-16,Codegen,9,6,2026-04-10T04:58:38.230973+00:00 +2025-05-16,Jules,2,1,2026-04-10T04:58:38.230973+00:00 +2025-05-16,Gru,18,2,2026-04-10T04:58:38.230973+00:00 +2025-05-16,OpenHands,2,1,2026-04-10T04:58:38.230973+00:00 +2025-05-16,Open SWE,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-17,Codex,8089,1474,2026-04-10T04:58:38.230973+00:00 +2025-05-17,Copilot,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-17,Claude Code,5,1,2026-04-10T04:58:38.230973+00:00 +2025-05-17,Cursor,12,4,2026-04-10T04:58:38.230973+00:00 +2025-05-17,Devin,394,59,2026-04-10T04:58:38.230973+00:00 +2025-05-17,Sweep,6,1,2026-04-10T04:58:38.230973+00:00 +2025-05-17,Codegen,73,9,2026-04-10T04:58:38.230973+00:00 +2025-05-17,Jules,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-17,Gru,29,5,2026-04-10T04:58:38.230973+00:00 +2025-05-17,OpenHands,5,1,2026-04-10T04:58:38.230973+00:00 +2025-05-17,Open SWE,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-18,Codex,7225,1150,2026-04-10T04:58:38.230973+00:00 +2025-05-18,Copilot,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-18,Claude Code,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-18,Cursor,13,6,2026-04-10T04:58:38.230973+00:00 +2025-05-18,Devin,395,69,2026-04-10T04:58:38.230973+00:00 +2025-05-18,Sweep,12,2,2026-04-10T04:58:38.230973+00:00 +2025-05-18,Codegen,31,6,2026-04-10T04:58:38.230973+00:00 +2025-05-18,Jules,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-18,Gru,5,1,2026-04-10T04:58:38.230973+00:00 +2025-05-18,OpenHands,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-18,Open SWE,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-19,Codex,5962,1123,2026-04-10T04:58:38.230973+00:00 +2025-05-19,Copilot,576,117,2026-04-10T04:58:38.230973+00:00 +2025-05-19,Claude Code,20,6,2026-04-10T04:58:38.230973+00:00 +2025-05-19,Cursor,15,4,2026-04-10T04:58:38.230973+00:00 +2025-05-19,Devin,467,83,2026-04-10T04:58:38.230973+00:00 +2025-05-19,Sweep,1,1,2026-04-10T04:58:38.230973+00:00 +2025-05-19,Codegen,21,6,2026-04-10T04:58:38.230973+00:00 +2025-05-19,Jules,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-19,Gru,19,2,2026-04-10T04:58:38.230973+00:00 +2025-05-19,OpenHands,6,1,2026-04-10T04:58:38.230973+00:00 +2025-05-19,Open SWE,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-20,Codex,6383,1523,2026-04-10T04:58:38.230973+00:00 +2025-05-20,Copilot,1769,270,2026-04-10T04:58:38.230973+00:00 +2025-05-20,Claude Code,23,9,2026-04-10T04:58:38.230973+00:00 +2025-05-20,Cursor,22,4,2026-04-10T04:58:38.230973+00:00 +2025-05-20,Devin,407,78,2026-04-10T04:58:38.230973+00:00 +2025-05-20,Sweep,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-20,Codegen,53,10,2026-04-10T04:58:38.230973+00:00 +2025-05-20,Jules,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-20,Gru,19,4,2026-04-10T04:58:38.230973+00:00 +2025-05-20,OpenHands,1,1,2026-04-10T04:58:38.230973+00:00 +2025-05-20,Open SWE,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-21,Codex,6066,1271,2026-04-10T04:58:38.230973+00:00 +2025-05-21,Copilot,1779,268,2026-04-10T04:58:38.230973+00:00 +2025-05-21,Claude Code,20,9,2026-04-10T04:58:38.230973+00:00 +2025-05-21,Cursor,18,6,2026-04-10T04:58:38.230973+00:00 +2025-05-21,Devin,458,93,2026-04-10T04:58:38.230973+00:00 +2025-05-21,Sweep,7,2,2026-04-10T04:58:38.230973+00:00 +2025-05-21,Codegen,63,18,2026-04-10T04:58:38.230973+00:00 +2025-05-21,Jules,2,1,2026-04-10T04:58:38.230973+00:00 +2025-05-21,Gru,5,3,2026-04-10T04:58:38.230973+00:00 +2025-05-21,OpenHands,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-21,Open SWE,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-22,Codex,5582,1138,2026-04-10T04:58:38.230973+00:00 +2025-05-22,Copilot,1889,272,2026-04-10T04:58:38.230973+00:00 +2025-05-22,Claude Code,87,25,2026-04-10T04:58:38.230973+00:00 +2025-05-22,Cursor,36,7,2026-04-10T04:58:38.230973+00:00 +2025-05-22,Devin,444,88,2026-04-10T04:58:38.230973+00:00 +2025-05-22,Sweep,29,2,2026-04-10T04:58:38.230973+00:00 +2025-05-22,Codegen,77,15,2026-04-10T04:58:38.230973+00:00 +2025-05-22,Jules,6,3,2026-04-10T04:58:38.230973+00:00 +2025-05-22,Gru,11,5,2026-04-10T04:58:38.230973+00:00 +2025-05-22,OpenHands,3,1,2026-04-10T04:58:38.230973+00:00 +2025-05-22,Open SWE,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-23,Codex,4664,1022,2026-04-10T04:58:38.230973+00:00 +2025-05-23,Copilot,1589,253,2026-04-10T04:58:38.230973+00:00 +2025-05-23,Claude Code,114,31,2026-04-10T04:58:38.230973+00:00 +2025-05-23,Cursor,20,5,2026-04-10T04:58:38.230973+00:00 +2025-05-23,Devin,368,70,2026-04-10T04:58:38.230973+00:00 +2025-05-23,Sweep,4,1,2026-04-10T04:58:38.230973+00:00 +2025-05-23,Codegen,70,9,2026-04-10T04:58:38.230973+00:00 +2025-05-23,Jules,3,1,2026-04-10T04:58:38.230973+00:00 +2025-05-23,Gru,10,2,2026-04-10T04:58:38.230973+00:00 +2025-05-23,OpenHands,6,1,2026-04-10T04:58:38.230973+00:00 +2025-05-23,Open SWE,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-24,Codex,3323,709,2026-04-10T04:58:38.230973+00:00 +2025-05-24,Copilot,781,152,2026-04-10T04:58:38.230973+00:00 +2025-05-24,Claude Code,194,46,2026-04-10T04:58:38.230973+00:00 +2025-05-24,Cursor,32,5,2026-04-10T04:58:38.230973+00:00 +2025-05-24,Devin,355,66,2026-04-10T04:58:38.230973+00:00 +2025-05-24,Sweep,3,1,2026-04-10T04:58:38.230973+00:00 +2025-05-24,Codegen,90,14,2026-04-10T04:58:38.230973+00:00 +2025-05-24,Jules,1,1,2026-04-10T04:58:38.230973+00:00 +2025-05-24,Gru,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-24,OpenHands,23,1,2026-04-10T04:58:38.230973+00:00 +2025-05-24,Open SWE,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-25,Codex,3547,620,2026-04-10T04:58:38.230973+00:00 +2025-05-25,Copilot,803,142,2026-04-10T04:58:38.230973+00:00 +2025-05-25,Claude Code,210,64,2026-04-10T04:58:38.230973+00:00 +2025-05-25,Cursor,4,2,2026-04-10T04:58:38.230973+00:00 +2025-05-25,Devin,344,54,2026-04-10T04:58:38.230973+00:00 +2025-05-25,Sweep,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-25,Codegen,58,12,2026-04-10T04:58:38.230973+00:00 +2025-05-25,Jules,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-25,Gru,1,1,2026-04-10T04:58:38.230973+00:00 +2025-05-25,OpenHands,14,2,2026-04-10T04:58:38.230973+00:00 +2025-05-25,Open SWE,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-26,Codex,2638,649,2026-04-10T04:58:38.230973+00:00 +2025-05-26,Copilot,860,197,2026-04-10T04:58:38.230973+00:00 +2025-05-26,Claude Code,191,62,2026-04-10T04:58:38.230973+00:00 +2025-05-26,Cursor,9,7,2026-04-10T04:58:38.230973+00:00 +2025-05-26,Devin,237,55,2026-04-10T04:58:38.230973+00:00 +2025-05-26,Sweep,1,1,2026-04-10T04:58:38.230973+00:00 +2025-05-26,Codegen,23,6,2026-04-10T04:58:38.230973+00:00 +2025-05-26,Jules,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-26,Gru,11,3,2026-04-10T04:58:38.230973+00:00 +2025-05-26,OpenHands,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-26,Open SWE,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-27,Codex,2487,600,2026-04-10T04:58:38.230973+00:00 +2025-05-27,Copilot,1022,234,2026-04-10T04:58:38.230973+00:00 +2025-05-27,Claude Code,158,58,2026-04-10T04:58:38.230973+00:00 +2025-05-27,Cursor,6,5,2026-04-10T04:58:38.230973+00:00 +2025-05-27,Devin,270,66,2026-04-10T04:58:38.230973+00:00 +2025-05-27,Sweep,1,1,2026-04-10T04:58:38.230973+00:00 +2025-05-27,Codegen,32,9,2026-04-10T04:58:38.230973+00:00 +2025-05-27,Jules,2,1,2026-04-10T04:58:38.230973+00:00 +2025-05-27,Gru,10,2,2026-04-10T04:58:38.230973+00:00 +2025-05-27,OpenHands,2,1,2026-04-10T04:58:38.230973+00:00 +2025-05-27,Open SWE,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-28,Codex,2715,601,2026-04-10T04:58:38.230973+00:00 +2025-05-28,Copilot,798,202,2026-04-10T04:58:38.230973+00:00 +2025-05-28,Claude Code,144,54,2026-04-10T04:58:38.230973+00:00 +2025-05-28,Cursor,7,5,2026-04-10T04:58:38.230973+00:00 +2025-05-28,Devin,308,72,2026-04-10T04:58:38.230973+00:00 +2025-05-28,Sweep,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-28,Codegen,36,12,2026-04-10T04:58:38.230973+00:00 +2025-05-28,Jules,2,2,2026-04-10T04:58:38.230973+00:00 +2025-05-28,Gru,2,1,2026-04-10T04:58:38.230973+00:00 +2025-05-28,OpenHands,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-28,Open SWE,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-29,Codex,2678,569,2026-04-10T04:58:38.230973+00:00 +2025-05-29,Copilot,779,182,2026-04-10T04:58:38.230973+00:00 +2025-05-29,Claude Code,142,56,2026-04-10T04:58:38.230973+00:00 +2025-05-29,Cursor,63,14,2026-04-10T04:58:38.230973+00:00 +2025-05-29,Devin,279,70,2026-04-10T04:58:38.230973+00:00 +2025-05-29,Sweep,1,1,2026-04-10T04:58:38.230973+00:00 +2025-05-29,Codegen,26,9,2026-04-10T04:58:38.230973+00:00 +2025-05-29,Jules,6,3,2026-04-10T04:58:38.230973+00:00 +2025-05-29,Gru,55,3,2026-04-10T04:58:38.230973+00:00 +2025-05-29,OpenHands,3,2,2026-04-10T04:58:38.230973+00:00 +2025-05-29,Open SWE,5,2,2026-04-10T04:58:38.230973+00:00 +2025-05-30,Codex,2519,560,2026-04-10T04:58:38.230973+00:00 +2025-05-30,Copilot,953,203,2026-04-10T04:58:38.230973+00:00 +2025-05-30,Claude Code,129,45,2026-04-10T04:58:38.230973+00:00 +2025-05-30,Cursor,31,12,2026-04-10T04:58:38.230973+00:00 +2025-05-30,Devin,268,76,2026-04-10T04:58:38.230973+00:00 +2025-05-30,Sweep,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-30,Codegen,32,8,2026-04-10T04:58:38.230973+00:00 +2025-05-30,Jules,0,0,2026-04-10T04:58:38.230973+00:00 +2025-05-30,Gru,9,2,2026-04-10T04:58:38.230973+00:00 +2025-05-30,OpenHands,4,2,2026-04-10T04:58:38.230973+00:00 +2025-05-30,Open SWE,44,4,2026-04-10T04:58:38.230973+00:00 +2025-05-31,Codex,2548,481,2026-04-10T04:58:38.230973+00:00 +2025-05-31,Copilot,1233,155,2026-04-10T04:58:38.230973+00:00 +2025-05-31,Claude Code,192,55,2026-04-10T04:58:38.230973+00:00 +2025-05-31,Cursor,24,11,2026-04-10T04:58:38.230973+00:00 +2025-05-31,Devin,204,60,2026-04-10T04:58:38.230973+00:00 +2025-05-31,Sweep,4,2,2026-04-10T04:58:38.230973+00:00 +2025-05-31,Codegen,41,9,2026-04-10T04:58:38.230973+00:00 +2025-05-31,Jules,13,2,2026-04-10T04:58:38.230973+00:00 +2025-05-31,Gru,11,1,2026-04-10T04:58:38.230973+00:00 +2025-05-31,OpenHands,3,1,2026-04-10T04:58:38.230973+00:00 +2025-05-31,Open SWE,2,1,2026-04-10T04:58:38.230973+00:00 +2025-04-01,Codex,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-01,Copilot,181,85,2026-04-10T04:58:46.868592+00:00 +2025-04-01,Claude Code,2,1,2026-04-10T04:58:46.868592+00:00 +2025-04-01,Cursor,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-01,Devin,289,37,2026-04-10T04:58:46.868592+00:00 +2025-04-01,Sweep,2,1,2026-04-10T04:58:46.868592+00:00 +2025-04-01,Codegen,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-01,Jules,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-01,Gru,13,6,2026-04-10T04:58:46.868592+00:00 +2025-04-01,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-01,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-02,Codex,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-02,Copilot,35,16,2026-04-10T04:58:46.868592+00:00 +2025-04-02,Claude Code,2,1,2026-04-10T04:58:46.868592+00:00 +2025-04-02,Cursor,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-02,Devin,326,46,2026-04-10T04:58:46.868592+00:00 +2025-04-02,Sweep,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-02,Codegen,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-02,Jules,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-02,Gru,5,3,2026-04-10T04:58:46.868592+00:00 +2025-04-02,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-02,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-03,Codex,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-03,Copilot,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-03,Claude Code,2,1,2026-04-10T04:58:46.868592+00:00 +2025-04-03,Cursor,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-03,Devin,420,51,2026-04-10T04:58:46.868592+00:00 +2025-04-03,Sweep,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-03,Codegen,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-03,Jules,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-03,Gru,5,3,2026-04-10T04:58:46.868592+00:00 +2025-04-03,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-03,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-04,Codex,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-04,Copilot,10,4,2026-04-10T04:58:46.868592+00:00 +2025-04-04,Claude Code,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-04,Cursor,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-04,Devin,785,74,2026-04-10T04:58:46.868592+00:00 +2025-04-04,Sweep,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-04,Codegen,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-04,Jules,4,1,2026-04-10T04:58:46.868592+00:00 +2025-04-04,Gru,7,2,2026-04-10T04:58:46.868592+00:00 +2025-04-04,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-04,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-05,Codex,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-05,Copilot,1,1,2026-04-10T04:58:46.868592+00:00 +2025-04-05,Claude Code,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-05,Cursor,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-05,Devin,465,52,2026-04-10T04:58:46.868592+00:00 +2025-04-05,Sweep,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-05,Codegen,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-05,Jules,4,1,2026-04-10T04:58:46.868592+00:00 +2025-04-05,Gru,8,5,2026-04-10T04:58:46.868592+00:00 +2025-04-05,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-05,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-06,Codex,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-06,Copilot,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-06,Claude Code,1,1,2026-04-10T04:58:46.868592+00:00 +2025-04-06,Cursor,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-06,Devin,559,60,2026-04-10T04:58:46.868592+00:00 +2025-04-06,Sweep,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-06,Codegen,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-06,Jules,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-06,Gru,5,4,2026-04-10T04:58:46.868592+00:00 +2025-04-06,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-06,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-07,Codex,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-07,Copilot,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-07,Claude Code,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-07,Cursor,2,2,2026-04-10T04:58:46.868592+00:00 +2025-04-07,Devin,290,53,2026-04-10T04:58:46.868592+00:00 +2025-04-07,Sweep,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-07,Codegen,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-07,Jules,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-07,Gru,14,3,2026-04-10T04:58:46.868592+00:00 +2025-04-07,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-07,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-08,Codex,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-08,Copilot,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-08,Claude Code,6,2,2026-04-10T04:58:46.868592+00:00 +2025-04-08,Cursor,3,1,2026-04-10T04:58:46.868592+00:00 +2025-04-08,Devin,468,52,2026-04-10T04:58:46.868592+00:00 +2025-04-08,Sweep,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-08,Codegen,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-08,Jules,2,1,2026-04-10T04:58:46.868592+00:00 +2025-04-08,Gru,12,4,2026-04-10T04:58:46.868592+00:00 +2025-04-08,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-08,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-09,Codex,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-09,Copilot,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-09,Claude Code,5,1,2026-04-10T04:58:46.868592+00:00 +2025-04-09,Cursor,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-09,Devin,378,62,2026-04-10T04:58:46.868592+00:00 +2025-04-09,Sweep,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-09,Codegen,1,1,2026-04-10T04:58:46.868592+00:00 +2025-04-09,Jules,1,1,2026-04-10T04:58:46.868592+00:00 +2025-04-09,Gru,26,5,2026-04-10T04:58:46.868592+00:00 +2025-04-09,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-09,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-10,Codex,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-10,Copilot,1,1,2026-04-10T04:58:46.868592+00:00 +2025-04-10,Claude Code,3,2,2026-04-10T04:58:46.868592+00:00 +2025-04-10,Cursor,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-10,Devin,394,58,2026-04-10T04:58:46.868592+00:00 +2025-04-10,Sweep,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-10,Codegen,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-10,Jules,1,1,2026-04-10T04:58:46.868592+00:00 +2025-04-10,Gru,8,2,2026-04-10T04:58:46.868592+00:00 +2025-04-10,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-10,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-11,Codex,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-11,Copilot,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-11,Claude Code,34,4,2026-04-10T04:58:46.868592+00:00 +2025-04-11,Cursor,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-11,Devin,576,61,2026-04-10T04:58:46.868592+00:00 +2025-04-11,Sweep,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-11,Codegen,2,1,2026-04-10T04:58:46.868592+00:00 +2025-04-11,Jules,2,2,2026-04-10T04:58:46.868592+00:00 +2025-04-11,Gru,4,2,2026-04-10T04:58:46.868592+00:00 +2025-04-11,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-11,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-12,Codex,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-12,Copilot,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-12,Claude Code,6,1,2026-04-10T04:58:46.868592+00:00 +2025-04-12,Cursor,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-12,Devin,485,60,2026-04-10T04:58:46.868592+00:00 +2025-04-12,Sweep,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-12,Codegen,20,4,2026-04-10T04:58:46.868592+00:00 +2025-04-12,Jules,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-12,Gru,5,3,2026-04-10T04:58:46.868592+00:00 +2025-04-12,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-12,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-13,Codex,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-13,Copilot,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-13,Claude Code,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-13,Cursor,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-13,Devin,429,48,2026-04-10T04:58:46.868592+00:00 +2025-04-13,Sweep,4,1,2026-04-10T04:58:46.868592+00:00 +2025-04-13,Codegen,3,1,2026-04-10T04:58:46.868592+00:00 +2025-04-13,Jules,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-13,Gru,3,2,2026-04-10T04:58:46.868592+00:00 +2025-04-13,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-13,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-14,Codex,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-14,Copilot,3,1,2026-04-10T04:58:46.868592+00:00 +2025-04-14,Claude Code,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-14,Cursor,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-14,Devin,427,47,2026-04-10T04:58:46.868592+00:00 +2025-04-14,Sweep,2,2,2026-04-10T04:58:46.868592+00:00 +2025-04-14,Codegen,16,3,2026-04-10T04:58:46.868592+00:00 +2025-04-14,Jules,1,1,2026-04-10T04:58:46.868592+00:00 +2025-04-14,Gru,4,3,2026-04-10T04:58:46.868592+00:00 +2025-04-14,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-14,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-15,Codex,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-15,Copilot,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-15,Claude Code,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-15,Cursor,2,1,2026-04-10T04:58:46.868592+00:00 +2025-04-15,Devin,417,70,2026-04-10T04:58:46.868592+00:00 +2025-04-15,Sweep,2,1,2026-04-10T04:58:46.868592+00:00 +2025-04-15,Codegen,10,5,2026-04-10T04:58:46.868592+00:00 +2025-04-15,Jules,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-15,Gru,7,1,2026-04-10T04:58:46.868592+00:00 +2025-04-15,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-15,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-16,Codex,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-16,Copilot,4,1,2026-04-10T04:58:46.868592+00:00 +2025-04-16,Claude Code,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-16,Cursor,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-16,Devin,385,72,2026-04-10T04:58:46.868592+00:00 +2025-04-16,Sweep,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-16,Codegen,27,5,2026-04-10T04:58:46.868592+00:00 +2025-04-16,Jules,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-16,Gru,18,4,2026-04-10T04:58:46.868592+00:00 +2025-04-16,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-16,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-17,Codex,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-17,Copilot,37,17,2026-04-10T04:58:46.868592+00:00 +2025-04-17,Claude Code,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-17,Cursor,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-17,Devin,381,63,2026-04-10T04:58:46.868592+00:00 +2025-04-17,Sweep,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-17,Codegen,15,8,2026-04-10T04:58:46.868592+00:00 +2025-04-17,Jules,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-17,Gru,17,4,2026-04-10T04:58:46.868592+00:00 +2025-04-17,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-17,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-18,Codex,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-18,Copilot,43,19,2026-04-10T04:58:46.868592+00:00 +2025-04-18,Claude Code,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-18,Cursor,1,1,2026-04-10T04:58:46.868592+00:00 +2025-04-18,Devin,440,61,2026-04-10T04:58:46.868592+00:00 +2025-04-18,Sweep,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-18,Codegen,17,6,2026-04-10T04:58:46.868592+00:00 +2025-04-18,Jules,1,1,2026-04-10T04:58:46.868592+00:00 +2025-04-18,Gru,20,3,2026-04-10T04:58:46.868592+00:00 +2025-04-18,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-18,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-19,Codex,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-19,Copilot,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-19,Claude Code,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-19,Cursor,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-19,Devin,613,49,2026-04-10T04:58:46.868592+00:00 +2025-04-19,Sweep,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-19,Codegen,2,1,2026-04-10T04:58:46.868592+00:00 +2025-04-19,Jules,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-19,Gru,2,2,2026-04-10T04:58:46.868592+00:00 +2025-04-19,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-19,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-20,Codex,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-20,Copilot,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-20,Claude Code,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-20,Cursor,6,2,2026-04-10T04:58:46.868592+00:00 +2025-04-20,Devin,678,47,2026-04-10T04:58:46.868592+00:00 +2025-04-20,Sweep,3,1,2026-04-10T04:58:46.868592+00:00 +2025-04-20,Codegen,2,2,2026-04-10T04:58:46.868592+00:00 +2025-04-20,Jules,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-20,Gru,2,2,2026-04-10T04:58:46.868592+00:00 +2025-04-20,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-20,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-21,Codex,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-21,Copilot,3,1,2026-04-10T04:58:46.868592+00:00 +2025-04-21,Claude Code,7,1,2026-04-10T04:58:46.868592+00:00 +2025-04-21,Cursor,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-21,Devin,540,66,2026-04-10T04:58:46.868592+00:00 +2025-04-21,Sweep,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-21,Codegen,7,3,2026-04-10T04:58:46.868592+00:00 +2025-04-21,Jules,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-21,Gru,4,2,2026-04-10T04:58:46.868592+00:00 +2025-04-21,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-21,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-22,Codex,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-22,Copilot,39,13,2026-04-10T04:58:46.868592+00:00 +2025-04-22,Claude Code,8,1,2026-04-10T04:58:46.868592+00:00 +2025-04-22,Cursor,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-22,Devin,515,60,2026-04-10T04:58:46.868592+00:00 +2025-04-22,Sweep,6,1,2026-04-10T04:58:46.868592+00:00 +2025-04-22,Codegen,2,1,2026-04-10T04:58:46.868592+00:00 +2025-04-22,Jules,1,1,2026-04-10T04:58:46.868592+00:00 +2025-04-22,Gru,23,4,2026-04-10T04:58:46.868592+00:00 +2025-04-22,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-22,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-23,Codex,1,1,2026-04-10T04:58:46.868592+00:00 +2025-04-23,Copilot,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-23,Claude Code,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-23,Cursor,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-23,Devin,390,57,2026-04-10T04:58:46.868592+00:00 +2025-04-23,Sweep,6,2,2026-04-10T04:58:46.868592+00:00 +2025-04-23,Codegen,24,8,2026-04-10T04:58:46.868592+00:00 +2025-04-23,Jules,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-23,Gru,1,1,2026-04-10T04:58:46.868592+00:00 +2025-04-23,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-23,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-24,Codex,2,1,2026-04-10T04:58:46.868592+00:00 +2025-04-24,Copilot,9,4,2026-04-10T04:58:46.868592+00:00 +2025-04-24,Claude Code,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-24,Cursor,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-24,Devin,455,60,2026-04-10T04:58:46.868592+00:00 +2025-04-24,Sweep,1,1,2026-04-10T04:58:46.868592+00:00 +2025-04-24,Codegen,30,8,2026-04-10T04:58:46.868592+00:00 +2025-04-24,Jules,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-24,Gru,3,3,2026-04-10T04:58:46.868592+00:00 +2025-04-24,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-24,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-25,Codex,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-25,Copilot,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-25,Claude Code,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-25,Cursor,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-25,Devin,417,57,2026-04-10T04:58:46.868592+00:00 +2025-04-25,Sweep,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-25,Codegen,28,7,2026-04-10T04:58:46.868592+00:00 +2025-04-25,Jules,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-25,Gru,5,5,2026-04-10T04:58:46.868592+00:00 +2025-04-25,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-25,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-26,Codex,5,1,2026-04-10T04:58:46.868592+00:00 +2025-04-26,Copilot,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-26,Claude Code,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-26,Cursor,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-26,Devin,207,37,2026-04-10T04:58:46.868592+00:00 +2025-04-26,Sweep,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-26,Codegen,37,6,2026-04-10T04:58:46.868592+00:00 +2025-04-26,Jules,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-26,Gru,1,1,2026-04-10T04:58:46.868592+00:00 +2025-04-26,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-26,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-27,Codex,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-27,Copilot,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-27,Claude Code,5,2,2026-04-10T04:58:46.868592+00:00 +2025-04-27,Cursor,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-27,Devin,269,47,2026-04-10T04:58:46.868592+00:00 +2025-04-27,Sweep,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-27,Codegen,56,4,2026-04-10T04:58:46.868592+00:00 +2025-04-27,Jules,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-27,Gru,28,4,2026-04-10T04:58:46.868592+00:00 +2025-04-27,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-27,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-28,Codex,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-28,Copilot,1,1,2026-04-10T04:58:46.868592+00:00 +2025-04-28,Claude Code,5,1,2026-04-10T04:58:46.868592+00:00 +2025-04-28,Cursor,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-28,Devin,346,62,2026-04-10T04:58:46.868592+00:00 +2025-04-28,Sweep,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-28,Codegen,47,5,2026-04-10T04:58:46.868592+00:00 +2025-04-28,Jules,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-28,Gru,34,4,2026-04-10T04:58:46.868592+00:00 +2025-04-28,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-28,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-29,Codex,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-29,Copilot,1,1,2026-04-10T04:58:46.868592+00:00 +2025-04-29,Claude Code,18,1,2026-04-10T04:58:46.868592+00:00 +2025-04-29,Cursor,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-29,Devin,499,66,2026-04-10T04:58:46.868592+00:00 +2025-04-29,Sweep,24,1,2026-04-10T04:58:46.868592+00:00 +2025-04-29,Codegen,19,4,2026-04-10T04:58:46.868592+00:00 +2025-04-29,Jules,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-29,Gru,20,6,2026-04-10T04:58:46.868592+00:00 +2025-04-29,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-29,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-30,Codex,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-30,Copilot,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-30,Claude Code,7,2,2026-04-10T04:58:46.868592+00:00 +2025-04-30,Cursor,2,1,2026-04-10T04:58:46.868592+00:00 +2025-04-30,Devin,348,68,2026-04-10T04:58:46.868592+00:00 +2025-04-30,Sweep,6,3,2026-04-10T04:58:46.868592+00:00 +2025-04-30,Codegen,13,6,2026-04-10T04:58:46.868592+00:00 +2025-04-30,Jules,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-30,Gru,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-30,OpenHands,0,0,2026-04-10T04:58:46.868592+00:00 +2025-04-30,Open SWE,0,0,2026-04-10T04:58:46.868592+00:00 +2026-04-09,Codex,12748,3899,2026-04-28T03:51:15.094084+00:00 +2026-04-09,Copilot,10223,3680,2026-04-28T03:51:15.094084+00:00 +2026-04-09,Claude Code,18777,5931,2026-04-28T03:51:15.094084+00:00 +2026-04-09,Cursor,922,362,2026-04-28T03:51:15.094084+00:00 +2026-04-09,Devin,557,144,2026-04-28T03:51:15.094084+00:00 +2026-04-09,Sweep,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-09,Codegen,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-09,Jules,19,7,2026-04-28T03:51:15.094084+00:00 +2026-04-09,Gru,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-09,OpenHands,9,4,2026-04-28T03:51:15.094084+00:00 +2026-04-09,Open SWE,2,1,2026-04-28T03:51:15.094084+00:00 +2026-04-10,Codex,11732,3766,2026-04-28T03:51:15.094084+00:00 +2026-04-10,Copilot,11556,3766,2026-04-28T03:51:15.094084+00:00 +2026-04-10,Claude Code,18282,5634,2026-04-28T03:51:15.094084+00:00 +2026-04-10,Cursor,1029,392,2026-04-28T03:51:15.094084+00:00 +2026-04-10,Devin,496,141,2026-04-28T03:51:15.094084+00:00 +2026-04-10,Sweep,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-10,Codegen,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-10,Jules,7,6,2026-04-28T03:51:15.094084+00:00 +2026-04-10,Gru,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-10,OpenHands,15,4,2026-04-28T03:51:15.094084+00:00 +2026-04-10,Open SWE,3,2,2026-04-28T03:51:15.094084+00:00 +2026-04-11,Codex,10979,3228,2026-04-28T03:51:15.094084+00:00 +2026-04-11,Copilot,11386,3234,2026-04-28T03:51:15.094084+00:00 +2026-04-11,Claude Code,18014,5234,2026-04-28T03:51:15.094084+00:00 +2026-04-11,Cursor,904,307,2026-04-28T03:51:15.094084+00:00 +2026-04-11,Devin,380,103,2026-04-28T03:51:15.094084+00:00 +2026-04-11,Sweep,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-11,Codegen,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-11,Jules,8,6,2026-04-28T03:51:15.094084+00:00 +2026-04-11,Gru,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-11,OpenHands,4,2,2026-04-28T03:51:15.094084+00:00 +2026-04-11,Open SWE,1,1,2026-04-28T03:51:15.094084+00:00 +2026-04-12,Codex,10048,3107,2026-04-28T03:51:15.094084+00:00 +2026-04-12,Copilot,10891,3217,2026-04-28T03:51:15.094084+00:00 +2026-04-12,Claude Code,17341,5293,2026-04-28T03:51:15.094084+00:00 +2026-04-12,Cursor,862,340,2026-04-28T03:51:15.094084+00:00 +2026-04-12,Devin,318,103,2026-04-28T03:51:15.094084+00:00 +2026-04-12,Sweep,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-12,Codegen,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-12,Jules,7,4,2026-04-28T03:51:15.094084+00:00 +2026-04-12,Gru,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-12,OpenHands,8,2,2026-04-28T03:51:15.094084+00:00 +2026-04-12,Open SWE,7,3,2026-04-28T03:51:15.094084+00:00 +2026-04-13,Codex,11185,3744,2026-04-28T03:51:15.094084+00:00 +2026-04-13,Copilot,10657,3700,2026-04-28T03:51:15.094084+00:00 +2026-04-13,Claude Code,18556,5723,2026-04-28T03:51:15.094084+00:00 +2026-04-13,Cursor,977,386,2026-04-28T03:51:15.094084+00:00 +2026-04-13,Devin,550,144,2026-04-28T03:51:15.094084+00:00 +2026-04-13,Sweep,10,2,2026-04-28T03:51:15.094084+00:00 +2026-04-13,Codegen,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-13,Jules,7,4,2026-04-28T03:51:15.094084+00:00 +2026-04-13,Gru,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-13,OpenHands,17,5,2026-04-28T03:51:15.094084+00:00 +2026-04-13,Open SWE,1,1,2026-04-28T03:51:15.094084+00:00 +2026-04-14,Codex,11596,3735,2026-04-28T03:51:15.094084+00:00 +2026-04-14,Copilot,11378,3782,2026-04-28T03:51:15.094084+00:00 +2026-04-14,Claude Code,19722,5920,2026-04-28T03:51:15.094084+00:00 +2026-04-14,Cursor,1037,404,2026-04-28T03:51:15.094084+00:00 +2026-04-14,Devin,571,155,2026-04-28T03:51:15.094084+00:00 +2026-04-14,Sweep,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-14,Codegen,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-14,Jules,14,9,2026-04-28T03:51:15.094084+00:00 +2026-04-14,Gru,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-14,OpenHands,17,3,2026-04-28T03:51:15.094084+00:00 +2026-04-14,Open SWE,2,1,2026-04-28T03:51:15.094084+00:00 +2026-04-15,Codex,11563,3799,2026-04-28T03:51:15.094084+00:00 +2026-04-15,Copilot,11769,3711,2026-04-28T03:51:15.094084+00:00 +2026-04-15,Claude Code,19507,6144,2026-04-28T03:51:15.094084+00:00 +2026-04-15,Cursor,1072,378,2026-04-28T03:51:15.094084+00:00 +2026-04-15,Devin,634,168,2026-04-28T03:51:15.094084+00:00 +2026-04-15,Sweep,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-15,Codegen,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-15,Jules,15,9,2026-04-28T03:51:15.094084+00:00 +2026-04-15,Gru,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-15,OpenHands,35,5,2026-04-28T03:51:15.094084+00:00 +2026-04-15,Open SWE,2,1,2026-04-28T03:51:15.094084+00:00 +2026-04-16,Codex,11035,3640,2026-04-28T03:51:15.094084+00:00 +2026-04-16,Copilot,11930,3740,2026-04-28T03:51:15.094084+00:00 +2026-04-16,Claude Code,21923,6641,2026-04-28T03:51:15.094084+00:00 +2026-04-16,Cursor,1100,381,2026-04-28T03:51:15.094084+00:00 +2026-04-16,Devin,594,173,2026-04-28T03:51:15.094084+00:00 +2026-04-16,Sweep,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-16,Codegen,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-16,Jules,25,8,2026-04-28T03:51:15.094084+00:00 +2026-04-16,Gru,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-16,OpenHands,8,4,2026-04-28T03:51:15.094084+00:00 +2026-04-16,Open SWE,1,1,2026-04-28T03:51:15.094084+00:00 +2026-04-17,Codex,11347,3666,2026-04-28T03:51:15.094084+00:00 +2026-04-17,Copilot,11342,3565,2026-04-28T03:51:15.094084+00:00 +2026-04-17,Claude Code,22415,6654,2026-04-28T03:51:15.094084+00:00 +2026-04-17,Cursor,957,359,2026-04-28T03:51:15.094084+00:00 +2026-04-17,Devin,719,189,2026-04-28T03:51:15.094084+00:00 +2026-04-17,Sweep,1,1,2026-04-28T03:51:15.094084+00:00 +2026-04-17,Codegen,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-17,Jules,11,7,2026-04-28T03:51:15.094084+00:00 +2026-04-17,Gru,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-17,OpenHands,6,3,2026-04-28T03:51:15.094084+00:00 +2026-04-17,Open SWE,6,2,2026-04-28T03:51:15.094084+00:00 +2026-04-18,Codex,10339,3162,2026-04-28T03:51:15.094084+00:00 +2026-04-18,Copilot,11730,3059,2026-04-28T03:51:15.094084+00:00 +2026-04-18,Claude Code,21965,6130,2026-04-28T03:51:15.094084+00:00 +2026-04-18,Cursor,975,342,2026-04-28T03:51:15.094084+00:00 +2026-04-18,Devin,623,129,2026-04-28T03:51:15.094084+00:00 +2026-04-18,Sweep,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-18,Codegen,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-18,Jules,10,7,2026-04-28T03:51:15.094084+00:00 +2026-04-18,Gru,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-18,OpenHands,1,1,2026-04-28T03:51:15.094084+00:00 +2026-04-18,Open SWE,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-19,Codex,10844,3192,2026-04-28T03:51:15.094084+00:00 +2026-04-19,Copilot,11133,3069,2026-04-28T03:51:15.094084+00:00 +2026-04-19,Claude Code,22706,6192,2026-04-28T03:51:15.094084+00:00 +2026-04-19,Cursor,1041,346,2026-04-28T03:51:15.094084+00:00 +2026-04-19,Devin,753,180,2026-04-28T03:51:15.094084+00:00 +2026-04-19,Sweep,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-19,Codegen,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-19,Jules,21,11,2026-04-28T03:51:15.094084+00:00 +2026-04-19,Gru,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-19,OpenHands,6,3,2026-04-28T03:51:15.094084+00:00 +2026-04-19,Open SWE,1,1,2026-04-28T03:51:15.094084+00:00 +2026-04-20,Codex,11117,3657,2026-04-28T03:51:15.094084+00:00 +2026-04-20,Copilot,11065,3585,2026-04-28T03:51:15.094084+00:00 +2026-04-20,Claude Code,21985,6636,2026-04-28T03:51:15.094084+00:00 +2026-04-20,Cursor,936,350,2026-04-28T03:51:15.094084+00:00 +2026-04-20,Devin,780,209,2026-04-28T03:51:15.094084+00:00 +2026-04-20,Sweep,1,1,2026-04-28T03:51:15.094084+00:00 +2026-04-20,Codegen,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-20,Jules,16,9,2026-04-28T03:51:15.094084+00:00 +2026-04-20,Gru,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-20,OpenHands,10,4,2026-04-28T03:51:15.094084+00:00 +2026-04-20,Open SWE,7,2,2026-04-28T03:51:15.094084+00:00 +2026-04-21,Codex,12320,3903,2026-04-28T03:51:15.094084+00:00 +2026-04-21,Copilot,10511,3569,2026-04-28T03:51:15.094084+00:00 +2026-04-21,Claude Code,21000,6535,2026-04-28T03:51:15.094084+00:00 +2026-04-21,Cursor,1090,389,2026-04-28T03:51:15.094084+00:00 +2026-04-21,Devin,927,230,2026-04-28T03:51:15.094084+00:00 +2026-04-21,Sweep,2,2,2026-04-28T03:51:15.094084+00:00 +2026-04-21,Codegen,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-21,Jules,39,20,2026-04-28T03:51:15.094084+00:00 +2026-04-21,Gru,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-21,OpenHands,11,3,2026-04-28T03:51:15.094084+00:00 +2026-04-21,Open SWE,3,1,2026-04-28T03:51:15.094084+00:00 +2026-04-22,Codex,13095,4095,2026-04-28T03:51:15.094084+00:00 +2026-04-22,Copilot,8692,3086,2026-04-28T03:51:15.094084+00:00 +2026-04-22,Claude Code,20747,6215,2026-04-28T03:51:15.094084+00:00 +2026-04-22,Cursor,1078,396,2026-04-28T03:51:15.094084+00:00 +2026-04-22,Devin,935,254,2026-04-28T03:51:15.094084+00:00 +2026-04-22,Sweep,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-22,Codegen,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-22,Jules,35,12,2026-04-28T03:51:15.094084+00:00 +2026-04-22,Gru,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-22,OpenHands,9,5,2026-04-28T03:51:15.094084+00:00 +2026-04-22,Open SWE,1,1,2026-04-28T03:51:15.094084+00:00 +2026-04-23,Codex,13992,4153,2026-04-28T03:51:15.094084+00:00 +2026-04-23,Copilot,8966,3126,2026-04-28T03:51:15.094084+00:00 +2026-04-23,Claude Code,20596,6326,2026-04-28T03:51:15.094084+00:00 +2026-04-23,Cursor,1128,388,2026-04-28T03:51:15.094084+00:00 +2026-04-23,Devin,866,297,2026-04-28T03:51:15.094084+00:00 +2026-04-23,Sweep,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-23,Codegen,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-23,Jules,27,10,2026-04-28T03:51:15.094084+00:00 +2026-04-23,Gru,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-23,OpenHands,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-23,Open SWE,2,2,2026-04-28T03:51:15.094084+00:00 +2026-04-24,Codex,13875,4325,2026-04-28T03:51:15.094084+00:00 +2026-04-24,Copilot,7471,2672,2026-04-28T03:51:15.094084+00:00 +2026-04-24,Claude Code,22199,6512,2026-04-28T03:51:15.094084+00:00 +2026-04-24,Cursor,1070,361,2026-04-28T03:51:15.094084+00:00 +2026-04-24,Devin,1162,342,2026-04-28T03:51:15.094084+00:00 +2026-04-24,Sweep,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-24,Codegen,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-24,Jules,24,9,2026-04-28T03:51:15.094084+00:00 +2026-04-24,Gru,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-24,OpenHands,4,3,2026-04-28T03:51:15.094084+00:00 +2026-04-24,Open SWE,1,1,2026-04-28T03:51:15.094084+00:00 +2026-04-25,Codex,12193,3761,2026-04-28T03:51:15.094084+00:00 +2026-04-25,Copilot,6625,2180,2026-04-28T03:51:15.094084+00:00 +2026-04-25,Claude Code,19805,5788,2026-04-28T03:51:15.094084+00:00 +2026-04-25,Cursor,1005,320,2026-04-28T03:51:15.094084+00:00 +2026-04-25,Devin,1340,392,2026-04-28T03:51:15.094084+00:00 +2026-04-25,Sweep,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-25,Codegen,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-25,Jules,35,6,2026-04-28T03:51:15.094084+00:00 +2026-04-25,Gru,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-25,OpenHands,5,1,2026-04-28T03:51:15.094084+00:00 +2026-04-25,Open SWE,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-26,Codex,12825,3807,2026-04-28T03:51:15.094084+00:00 +2026-04-26,Copilot,5818,2008,2026-04-28T03:51:15.094084+00:00 +2026-04-26,Claude Code,20525,5849,2026-04-28T03:51:15.094084+00:00 +2026-04-26,Cursor,983,323,2026-04-28T03:51:15.094084+00:00 +2026-04-26,Devin,1472,449,2026-04-28T03:51:15.094084+00:00 +2026-04-26,Sweep,3,1,2026-04-28T03:51:15.094084+00:00 +2026-04-26,Codegen,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-26,Jules,15,9,2026-04-28T03:51:15.094084+00:00 +2026-04-26,Gru,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-26,OpenHands,1,1,2026-04-28T03:51:15.094084+00:00 +2026-04-26,Open SWE,0,0,2026-04-28T03:51:15.094084+00:00 +2026-04-27,Codex,12867,4145,2026-05-11T21:58:41.739905+00:00 +2026-04-27,Copilot,7550,2731,2026-05-11T21:58:41.739905+00:00 +2026-04-27,Claude Code,21156,6370,2026-05-11T21:58:41.739905+00:00 +2026-04-27,Cursor,1159,447,2026-05-11T21:58:41.739905+00:00 +2026-04-27,Devin,1580,516,2026-05-11T21:58:41.739905+00:00 +2026-04-27,Sweep,1,1,2026-05-11T21:58:41.739905+00:00 +2026-04-27,Codegen,0,0,2026-05-11T21:58:41.739905+00:00 +2026-04-27,Jules,15,8,2026-05-11T21:58:41.739905+00:00 +2026-04-27,Gru,8,1,2026-05-11T21:58:41.739905+00:00 +2026-04-27,OpenHands,1,1,2026-05-11T21:58:41.739905+00:00 +2026-04-27,Open SWE,1,1,2026-05-11T21:58:41.739905+00:00 +2026-04-28,Codex,14233,4539,2026-05-11T21:58:41.739905+00:00 +2026-04-28,Copilot,7958,2792,2026-05-11T21:58:41.739905+00:00 +2026-04-28,Claude Code,19693,6011,2026-05-11T21:58:41.739905+00:00 +2026-04-28,Cursor,1265,428,2026-05-11T21:58:41.739905+00:00 +2026-04-28,Devin,1388,462,2026-05-11T21:58:41.739905+00:00 +2026-04-28,Sweep,0,0,2026-05-11T21:58:41.739905+00:00 +2026-04-28,Codegen,0,0,2026-05-11T21:58:41.739905+00:00 +2026-04-28,Jules,13,10,2026-05-11T21:58:41.739905+00:00 +2026-04-28,Gru,0,0,2026-05-11T21:58:41.739905+00:00 +2026-04-28,OpenHands,1,1,2026-05-11T21:58:41.739905+00:00 +2026-04-28,Open SWE,2,1,2026-05-11T21:58:41.739905+00:00 +2026-04-29,Codex,15775,4608,2026-05-11T21:58:41.739905+00:00 +2026-04-29,Copilot,6908,2559,2026-05-11T21:58:41.739905+00:00 +2026-04-29,Claude Code,21162,6026,2026-05-11T21:58:41.739905+00:00 +2026-04-29,Cursor,1353,462,2026-05-11T21:58:41.739905+00:00 +2026-04-29,Devin,1414,417,2026-05-11T21:58:41.739905+00:00 +2026-04-29,Sweep,0,0,2026-05-11T21:58:41.739905+00:00 +2026-04-29,Codegen,0,0,2026-05-11T21:58:41.739905+00:00 +2026-04-29,Jules,9,7,2026-05-11T21:58:41.739905+00:00 +2026-04-29,Gru,0,0,2026-05-11T21:58:41.739905+00:00 +2026-04-29,OpenHands,5,2,2026-05-11T21:58:41.739905+00:00 +2026-04-29,Open SWE,5,2,2026-05-11T21:58:41.739905+00:00 +2026-04-30,Codex,8506,3356,2026-05-11T21:58:41.739905+00:00 +2026-04-30,Copilot,3900,1825,2026-05-11T21:58:41.739905+00:00 +2026-04-30,Claude Code,11699,4585,2026-05-11T21:58:41.739905+00:00 +2026-04-30,Cursor,731,348,2026-05-11T21:58:41.739905+00:00 +2026-04-30,Devin,740,313,2026-05-11T21:58:41.739905+00:00 +2026-04-30,Sweep,0,0,2026-05-11T21:58:41.739905+00:00 +2026-04-30,Codegen,0,0,2026-05-11T21:58:41.739905+00:00 +2026-04-30,Jules,16,9,2026-05-11T21:58:41.739905+00:00 +2026-04-30,Gru,0,0,2026-05-11T21:58:41.739905+00:00 +2026-04-30,OpenHands,5,3,2026-05-11T21:58:41.739905+00:00 +2026-04-30,Open SWE,1,1,2026-05-11T21:58:41.739905+00:00 +2026-05-01,Codex,13337,3716,2026-05-11T21:58:41.739905+00:00 +2026-05-01,Copilot,6338,2209,2026-05-11T21:58:41.739905+00:00 +2026-05-01,Claude Code,20255,5707,2026-05-11T21:58:41.739905+00:00 +2026-05-01,Cursor,999,362,2026-05-11T21:58:41.739905+00:00 +2026-05-01,Devin,1112,319,2026-05-11T21:58:41.739905+00:00 +2026-05-01,Sweep,2,1,2026-05-11T21:58:41.739905+00:00 +2026-05-01,Codegen,0,0,2026-05-11T21:58:41.739905+00:00 +2026-05-01,Jules,7,4,2026-05-11T21:58:41.739905+00:00 +2026-05-01,Gru,0,0,2026-05-11T21:58:41.739905+00:00 +2026-05-01,OpenHands,5,2,2026-05-11T21:58:41.739905+00:00 +2026-05-01,Open SWE,3,1,2026-05-11T21:58:41.739905+00:00 +2026-05-02,Codex,13396,3663,2026-05-11T21:58:41.739905+00:00 +2026-05-02,Copilot,6967,2111,2026-05-11T21:58:41.739905+00:00 +2026-05-02,Claude Code,19890,5524,2026-05-11T21:58:41.739905+00:00 +2026-05-02,Cursor,1091,356,2026-05-11T21:58:41.739905+00:00 +2026-05-02,Devin,954,283,2026-05-11T21:58:41.739905+00:00 +2026-05-02,Sweep,0,0,2026-05-11T21:58:41.739905+00:00 +2026-05-02,Codegen,0,0,2026-05-11T21:58:41.739905+00:00 +2026-05-02,Jules,17,13,2026-05-11T21:58:41.739905+00:00 +2026-05-02,Gru,0,0,2026-05-11T21:58:41.739905+00:00 +2026-05-02,OpenHands,2,2,2026-05-11T21:58:41.739905+00:00 +2026-05-02,Open SWE,1,1,2026-05-11T21:58:41.739905+00:00 +2026-05-03,Codex,13588,3666,2026-05-11T21:58:41.739905+00:00 +2026-05-03,Copilot,6552,2051,2026-05-11T21:58:41.739905+00:00 +2026-05-03,Claude Code,20694,5803,2026-05-11T21:58:41.739905+00:00 +2026-05-03,Cursor,1050,329,2026-05-11T21:58:41.739905+00:00 +2026-05-03,Devin,1132,394,2026-05-11T21:58:41.739905+00:00 +2026-05-03,Sweep,0,0,2026-05-11T21:58:41.739905+00:00 +2026-05-03,Codegen,0,0,2026-05-11T21:58:41.739905+00:00 +2026-05-03,Jules,11,5,2026-05-11T21:58:41.739905+00:00 +2026-05-03,Gru,0,0,2026-05-11T21:58:41.739905+00:00 +2026-05-03,OpenHands,0,0,2026-05-11T21:58:41.739905+00:00 +2026-05-03,Open SWE,0,0,2026-05-11T21:58:41.739905+00:00 +2026-05-04,Codex,13690,4146,2026-05-11T21:58:41.739905+00:00 +2026-05-04,Copilot,6963,2497,2026-05-11T21:58:41.739905+00:00 +2026-05-04,Claude Code,21797,6370,2026-05-11T21:58:41.739905+00:00 +2026-05-04,Cursor,1071,410,2026-05-11T21:58:41.739905+00:00 +2026-05-04,Devin,1114,432,2026-05-11T21:58:41.739905+00:00 +2026-05-04,Sweep,2,1,2026-05-11T21:58:41.739905+00:00 +2026-05-04,Codegen,0,0,2026-05-11T21:58:41.739905+00:00 +2026-05-04,Jules,11,5,2026-05-11T21:58:41.739905+00:00 +2026-05-04,Gru,0,0,2026-05-11T21:58:41.739905+00:00 +2026-05-04,OpenHands,0,0,2026-05-11T21:58:41.739905+00:00 +2026-05-04,Open SWE,6,2,2026-05-11T21:58:41.739905+00:00 +2026-05-05,Codex,13731,4125,2026-05-11T21:58:41.739905+00:00 +2026-05-05,Copilot,8334,2564,2026-05-11T21:58:41.739905+00:00 +2026-05-05,Claude Code,20702,6379,2026-05-11T21:58:41.739905+00:00 +2026-05-05,Cursor,1020,394,2026-05-11T21:58:41.739905+00:00 +2026-05-05,Devin,1121,397,2026-05-11T21:58:41.739905+00:00 +2026-05-05,Sweep,1,1,2026-05-11T21:58:41.739905+00:00 +2026-05-05,Codegen,0,0,2026-05-11T21:58:41.739905+00:00 +2026-05-05,Jules,13,9,2026-05-11T21:58:41.739905+00:00 +2026-05-05,Gru,0,0,2026-05-11T21:58:41.739905+00:00 +2026-05-05,OpenHands,1,1,2026-05-11T21:58:41.739905+00:00 +2026-05-05,Open SWE,7,1,2026-05-11T21:58:41.739905+00:00 +2026-05-06,Codex,14393,4562,2026-05-11T21:58:41.739905+00:00 +2026-05-06,Copilot,7859,2662,2026-05-11T21:58:41.739905+00:00 +2026-05-06,Claude Code,23109,6848,2026-05-11T21:58:41.739905+00:00 +2026-05-06,Cursor,1258,445,2026-05-11T21:58:41.739905+00:00 +2026-05-06,Devin,852,310,2026-05-11T21:58:41.739905+00:00 +2026-05-06,Sweep,3,1,2026-05-11T21:58:41.739905+00:00 +2026-05-06,Codegen,0,0,2026-05-11T21:58:41.739905+00:00 +2026-05-06,Jules,10,7,2026-05-11T21:58:41.739905+00:00 +2026-05-06,Gru,0,0,2026-05-11T21:58:41.739905+00:00 +2026-05-06,OpenHands,0,0,2026-05-11T21:58:41.739905+00:00 +2026-05-06,Open SWE,4,2,2026-05-11T21:58:41.739905+00:00 +2026-05-07,Codex,15241,4484,2026-05-11T21:58:41.739905+00:00 +2026-05-07,Copilot,9574,2805,2026-05-11T21:58:41.739905+00:00 +2026-05-07,Claude Code,26066,7359,2026-05-11T21:58:41.739905+00:00 +2026-05-07,Cursor,1191,467,2026-05-11T21:58:41.739905+00:00 +2026-05-07,Devin,773,333,2026-05-11T21:58:41.739905+00:00 +2026-05-07,Sweep,1,1,2026-05-11T21:58:41.739905+00:00 +2026-05-07,Codegen,0,0,2026-05-11T21:58:41.739905+00:00 +2026-05-07,Jules,13,9,2026-05-11T21:58:41.739905+00:00 +2026-05-07,Gru,0,0,2026-05-11T21:58:41.739905+00:00 +2026-05-07,OpenHands,8,3,2026-05-11T21:58:41.739905+00:00 +2026-05-07,Open SWE,8,5,2026-05-11T21:58:41.739905+00:00 +2026-05-08,Codex,13295,4208,2026-05-11T21:58:41.739905+00:00 +2026-05-08,Copilot,8410,2616,2026-05-11T21:58:41.739905+00:00 +2026-05-08,Claude Code,24646,7063,2026-05-11T21:58:41.739905+00:00 +2026-05-08,Cursor,1218,415,2026-05-11T21:58:41.739905+00:00 +2026-05-08,Devin,830,308,2026-05-11T21:58:41.739905+00:00 +2026-05-08,Sweep,1,1,2026-05-11T21:58:41.739905+00:00 +2026-05-08,Codegen,0,0,2026-05-11T21:58:41.739905+00:00 +2026-05-08,Jules,20,6,2026-05-11T21:58:41.739905+00:00 +2026-05-08,Gru,0,0,2026-05-11T21:58:41.739905+00:00 +2026-05-08,OpenHands,8,4,2026-05-11T21:58:41.739905+00:00 +2026-05-08,Open SWE,9,4,2026-05-11T21:58:41.739905+00:00 +2026-05-09,Codex,13688,3754,2026-05-11T21:58:41.739905+00:00 +2026-05-09,Copilot,8079,2191,2026-05-11T21:58:41.739905+00:00 +2026-05-09,Claude Code,23845,6405,2026-05-11T21:58:41.739905+00:00 +2026-05-09,Cursor,1405,486,2026-05-11T21:58:41.739905+00:00 +2026-05-09,Devin,811,272,2026-05-11T21:58:41.739905+00:00 +2026-05-09,Sweep,0,0,2026-05-11T21:58:41.739905+00:00 +2026-05-09,Codegen,0,0,2026-05-11T21:58:41.739905+00:00 +2026-05-09,Jules,15,13,2026-05-11T21:58:41.739905+00:00 +2026-05-09,Gru,0,0,2026-05-11T21:58:41.739905+00:00 +2026-05-09,OpenHands,1,1,2026-05-11T21:58:41.739905+00:00 +2026-05-09,Open SWE,0,0,2026-05-11T21:58:41.739905+00:00 +2026-05-10,Codex,12368,3647,2026-05-11T21:58:41.739905+00:00 +2026-05-10,Copilot,7114,2073,2026-05-11T21:58:41.739905+00:00 +2026-05-10,Claude Code,23017,6403,2026-05-11T21:58:41.739905+00:00 +2026-05-10,Cursor,1353,458,2026-05-11T21:58:41.739905+00:00 +2026-05-10,Devin,877,324,2026-05-11T21:58:41.739905+00:00 +2026-05-10,Sweep,3,1,2026-05-11T21:58:41.739905+00:00 +2026-05-10,Codegen,0,0,2026-05-11T21:58:41.739905+00:00 +2026-05-10,Jules,12,7,2026-05-11T21:58:41.739905+00:00 +2026-05-10,Gru,0,0,2026-05-11T21:58:41.739905+00:00 +2026-05-10,OpenHands,1,1,2026-05-11T21:58:41.739905+00:00 +2026-05-10,Open SWE,0,0,2026-05-11T21:58:41.739905+00:00 diff --git a/branch_creates_daily.csv b/branch_creates_daily.csv new file mode 100644 index 0000000..e66519f --- /dev/null +++ b/branch_creates_daily.csv @@ -0,0 +1,406 @@ +date,weekday,branch_creates,fetched_at +2025-04-01,Tue,445238,2026-04-10T16:59:34.797779+00:00 +2025-04-02,Wed,432567,2026-04-10T16:59:34.797806+00:00 +2025-04-03,Thu,406229,2026-04-10T16:59:34.797821+00:00 +2025-04-04,Fri,398243,2026-04-10T16:59:34.797834+00:00 +2025-04-05,Sat,312484,2026-04-10T16:59:34.797846+00:00 +2025-04-06,Sun,323907,2026-04-10T16:59:34.797858+00:00 +2025-04-07,Mon,470490,2026-04-10T16:59:34.797869+00:00 +2025-04-08,Tue,454580,2026-04-10T16:59:34.797879+00:00 +2025-04-09,Wed,412574,2026-04-10T16:59:34.797890+00:00 +2025-04-10,Thu,394370,2026-04-10T16:59:34.797900+00:00 +2025-04-11,Fri,397886,2026-04-10T16:59:34.797911+00:00 +2025-04-12,Sat,308481,2026-04-10T16:59:34.797921+00:00 +2025-04-13,Sun,308152,2026-04-10T16:59:34.797931+00:00 +2025-04-14,Mon,461385,2026-04-10T16:59:34.797941+00:00 +2025-04-15,Tue,417216,2026-04-10T16:59:34.797951+00:00 +2025-04-16,Wed,392803,2026-04-10T16:59:34.797960+00:00 +2025-04-17,Thu,371648,2026-04-10T16:59:34.797970+00:00 +2025-04-18,Fri,351922,2026-04-10T16:59:34.797981+00:00 +2025-04-19,Sat,297094,2026-04-10T16:59:34.797991+00:00 +2025-04-20,Sun,290956,2026-04-10T16:59:34.798001+00:00 +2025-04-21,Mon,433294,2026-04-10T16:59:34.798011+00:00 +2025-04-22,Tue,434268,2026-04-10T16:59:34.798021+00:00 +2025-04-23,Wed,417596,2026-04-10T16:59:34.798031+00:00 +2025-04-24,Thu,439095,2026-04-10T16:59:34.798041+00:00 +2025-04-25,Fri,392141,2026-04-10T16:59:34.798051+00:00 +2025-04-26,Sat,298339,2026-04-10T16:59:34.798061+00:00 +2025-04-27,Sun,305224,2026-04-10T16:59:34.798071+00:00 +2025-04-28,Mon,447697,2026-04-10T16:59:34.798081+00:00 +2025-04-29,Tue,422802,2026-04-10T16:59:34.798090+00:00 +2025-04-30,Wed,401507,2026-04-10T16:59:34.798100+00:00 +2025-05-01,Thu,383513,2026-04-10T16:59:34.798110+00:00 +2025-05-02,Fri,344980,2026-04-10T16:59:34.798120+00:00 +2025-05-03,Sat,285615,2026-04-10T16:59:34.798130+00:00 +2025-05-04,Sun,319611,2026-04-10T16:59:34.798140+00:00 +2025-05-05,Mon,456603,2026-04-10T16:59:34.798150+00:00 +2025-05-06,Tue,425660,2026-04-10T16:59:34.798160+00:00 +2025-05-07,Wed,413983,2026-04-10T16:59:34.798170+00:00 +2025-05-08,Thu,408658,2026-04-10T16:59:34.798180+00:00 +2025-05-09,Fri,382290,2026-04-10T16:59:34.798189+00:00 +2025-05-10,Sat,309297,2026-04-10T16:59:34.798199+00:00 +2025-05-11,Sun,307383,2026-04-10T16:59:34.798209+00:00 +2025-05-12,Mon,466741,2026-04-10T16:59:34.798220+00:00 +2025-05-13,Tue,426920,2026-04-10T16:59:34.798230+00:00 +2025-05-14,Wed,425730,2026-04-10T16:59:34.798240+00:00 +2025-05-15,Thu,425393,2026-04-10T16:59:34.798250+00:00 +2025-05-16,Fri,390744,2026-04-10T16:59:34.798260+00:00 +2025-05-17,Sat,327130,2026-04-10T16:59:34.798270+00:00 +2025-05-18,Sun,313868,2026-04-10T16:59:34.798280+00:00 +2025-05-19,Mon,461614,2026-04-10T16:59:34.798290+00:00 +2025-05-20,Tue,438339,2026-04-10T16:59:34.798300+00:00 +2025-05-21,Wed,428593,2026-04-10T16:59:34.798310+00:00 +2025-05-22,Thu,412368,2026-04-10T16:59:34.798320+00:00 +2025-05-23,Fri,372531,2026-04-10T16:59:34.798330+00:00 +2025-05-24,Sat,237473,2026-04-10T16:59:34.798340+00:00 +2025-05-25,Sun,236551,2026-04-10T16:59:34.798349+00:00 +2025-05-26,Mon,282616,2026-04-10T16:59:34.798359+00:00 +2025-05-27,Tue,266891,2026-04-10T16:59:34.798369+00:00 +2025-05-28,Wed,265295,2026-04-10T16:59:34.798379+00:00 +2025-05-29,Thu,259314,2026-04-10T16:59:34.798389+00:00 +2025-05-30,Fri,266885,2026-04-10T16:59:34.798399+00:00 +2025-05-31,Sat,238348,2026-04-10T16:59:34.798408+00:00 +2025-06-01,Sun,247336,2026-04-10T16:59:34.798418+00:00 +2025-06-02,Mon,302056,2026-04-10T16:59:34.798428+00:00 +2025-06-03,Tue,288371,2026-04-10T16:59:34.798438+00:00 +2025-06-04,Wed,301619,2026-04-10T16:59:34.798448+00:00 +2025-06-05,Thu,294062,2026-04-10T16:59:34.798458+00:00 +2025-06-06,Fri,276141,2026-04-10T16:59:34.798468+00:00 +2025-06-07,Sat,229135,2026-04-10T16:59:34.798478+00:00 +2025-06-08,Sun,232285,2026-04-10T16:59:34.798488+00:00 +2025-06-09,Mon,307077,2026-04-10T16:59:34.798498+00:00 +2025-06-10,Tue,294991,2026-04-10T16:59:34.798508+00:00 +2025-06-11,Wed,295248,2026-04-10T16:59:34.798518+00:00 +2025-06-12,Thu,249161,2026-04-10T16:59:34.798528+00:00 +2025-06-13,Fri,275296,2026-04-10T16:59:34.798538+00:00 +2025-06-14,Sat,238575,2026-04-10T16:59:34.798548+00:00 +2025-06-15,Sun,246826,2026-04-10T16:59:34.798558+00:00 +2025-06-16,Mon,313603,2026-04-10T16:59:34.798568+00:00 +2025-06-17,Tue,287196,2026-04-10T16:59:34.798580+00:00 +2025-06-18,Wed,287865,2026-04-10T16:59:34.798590+00:00 +2025-06-19,Thu,286587,2026-04-10T16:59:34.798599+00:00 +2025-06-20,Fri,279974,2026-04-10T16:59:34.798609+00:00 +2025-06-21,Sat,247359,2026-04-10T16:59:34.798619+00:00 +2025-06-22,Sun,270439,2026-04-10T16:59:34.798630+00:00 +2025-06-23,Mon,313671,2026-04-10T16:59:34.798639+00:00 +2025-06-24,Tue,407254,2026-04-10T16:59:34.798649+00:00 +2025-06-25,Wed,283854,2026-04-10T16:59:34.798659+00:00 +2025-06-26,Thu,278875,2026-04-10T16:59:34.798669+00:00 +2025-06-27,Fri,271949,2026-04-10T16:59:34.798679+00:00 +2025-06-28,Sat,237987,2026-04-10T16:59:34.798689+00:00 +2025-06-29,Sun,246531,2026-04-10T16:59:34.798699+00:00 +2025-06-30,Mon,312241,2026-04-10T16:59:34.798709+00:00 +2025-07-01,Tue,318179,2026-04-10T16:59:34.798719+00:00 +2025-07-02,Wed,283880,2026-04-10T16:59:34.798728+00:00 +2025-07-03,Thu,280627,2026-04-10T16:59:34.798738+00:00 +2025-07-04,Fri,265373,2026-04-10T16:59:34.798748+00:00 +2025-07-05,Sat,249968,2026-04-10T16:59:34.798758+00:00 +2025-07-06,Sun,252459,2026-04-10T16:59:34.798767+00:00 +2025-07-07,Mon,315228,2026-04-10T16:59:34.798777+00:00 +2025-07-08,Tue,306911,2026-04-10T16:59:34.798787+00:00 +2025-07-09,Wed,290726,2026-04-10T16:59:34.798797+00:00 +2025-07-10,Thu,285011,2026-04-10T16:59:34.798807+00:00 +2025-07-11,Fri,278074,2026-04-10T16:59:34.798817+00:00 +2025-07-12,Sat,260793,2026-04-10T16:59:34.798827+00:00 +2025-07-13,Sun,262577,2026-04-10T16:59:34.798837+00:00 +2025-07-14,Mon,322891,2026-04-10T16:59:34.798847+00:00 +2025-07-15,Tue,292135,2026-04-10T16:59:34.798857+00:00 +2025-07-16,Wed,286777,2026-04-10T16:59:34.798866+00:00 +2025-07-17,Thu,329334,2026-04-10T16:59:34.798876+00:00 +2025-07-18,Fri,318520,2026-04-10T16:59:34.798886+00:00 +2025-07-19,Sat,235393,2026-04-10T16:59:34.798897+00:00 +2025-07-20,Sun,230130,2026-04-10T16:59:34.798906+00:00 +2025-07-21,Mon,323781,2026-04-10T16:59:34.798916+00:00 +2025-07-22,Tue,314706,2026-04-10T16:59:34.798926+00:00 +2025-07-23,Wed,276947,2026-04-10T16:59:34.798936+00:00 +2025-07-24,Thu,286575,2026-04-10T16:59:34.798946+00:00 +2025-07-25,Fri,261901,2026-04-10T16:59:34.798956+00:00 +2025-07-26,Sat,227922,2026-04-10T16:59:34.798966+00:00 +2025-07-27,Sun,225835,2026-04-10T16:59:34.798975+00:00 +2025-07-28,Mon,286955,2026-04-10T16:59:34.798985+00:00 +2025-07-29,Tue,279311,2026-04-10T16:59:34.798995+00:00 +2025-07-30,Wed,268214,2026-04-10T16:59:34.799005+00:00 +2025-07-31,Thu,273916,2026-04-10T16:59:34.799014+00:00 +2025-08-01,Fri,293221,2026-04-10T16:59:34.799024+00:00 +2025-08-02,Sat,255427,2026-04-10T16:59:34.799034+00:00 +2025-08-03,Sun,254461,2026-04-10T16:59:34.799045+00:00 +2025-08-04,Mon,273535,2026-04-10T16:59:34.799055+00:00 +2025-08-05,Tue,295114,2026-04-10T16:59:34.799064+00:00 +2025-08-06,Wed,302583,2026-04-10T16:59:34.799074+00:00 +2025-08-07,Thu,277544,2026-04-10T16:59:34.799084+00:00 +2025-08-08,Fri,271081,2026-04-10T16:59:34.799096+00:00 +2025-08-09,Sat,227519,2026-04-10T16:59:34.799106+00:00 +2025-08-10,Sun,241772,2026-04-10T16:59:34.799116+00:00 +2025-08-11,Mon,309710,2026-04-10T16:59:34.799126+00:00 +2025-08-12,Tue,318649,2026-04-10T16:59:34.799136+00:00 +2025-08-13,Wed,294391,2026-04-10T16:59:34.799145+00:00 +2025-08-14,Thu,274434,2026-04-10T16:59:34.799155+00:00 +2025-08-15,Fri,246258,2026-04-10T16:59:34.799165+00:00 +2025-08-16,Sat,228465,2026-04-10T16:59:34.799175+00:00 +2025-08-17,Sun,222047,2026-04-10T16:59:34.799185+00:00 +2025-08-18,Mon,297972,2026-04-10T16:59:34.799195+00:00 +2025-08-19,Tue,283100,2026-04-10T16:59:34.799204+00:00 +2025-08-20,Wed,296152,2026-04-10T16:59:34.799214+00:00 +2025-08-21,Thu,348617,2026-04-10T16:59:34.799224+00:00 +2025-08-22,Fri,302198,2026-04-10T16:59:34.799234+00:00 +2025-08-23,Sat,217623,2026-04-10T16:59:34.799245+00:00 +2025-08-24,Sun,217753,2026-04-10T16:59:34.799255+00:00 +2025-08-25,Mon,291398,2026-04-10T16:59:34.799265+00:00 +2025-08-26,Tue,298469,2026-04-10T16:59:34.799275+00:00 +2025-08-27,Wed,268537,2026-04-10T16:59:34.799285+00:00 +2025-08-28,Thu,260368,2026-04-10T16:59:34.799295+00:00 +2025-08-29,Fri,259000,2026-04-10T16:59:34.799305+00:00 +2025-08-30,Sat,217980,2026-04-10T16:59:34.799316+00:00 +2025-08-31,Sun,222438,2026-04-10T16:59:34.799325+00:00 +2025-09-01,Mon,350414,2026-04-10T16:59:34.799335+00:00 +2025-09-02,Tue,332249,2026-04-10T16:59:34.799345+00:00 +2025-09-03,Wed,277818,2026-04-10T16:59:34.799355+00:00 +2025-09-04,Thu,283396,2026-04-10T16:59:34.799364+00:00 +2025-09-05,Fri,241063,2026-04-10T16:59:34.799375+00:00 +2025-09-06,Sat,226740,2026-04-10T16:59:34.799385+00:00 +2025-09-07,Sun,216229,2026-04-10T16:59:34.799394+00:00 +2025-09-08,Mon,227596,2026-04-10T16:59:34.799404+00:00 +2025-09-09,Tue,294153,2026-04-10T16:59:34.799414+00:00 +2025-09-10,Wed,334515,2026-04-10T16:59:34.799423+00:00 +2025-09-11,Thu,285150,2026-04-10T16:59:34.799433+00:00 +2025-09-12,Fri,272561,2026-04-10T16:59:34.799443+00:00 +2025-09-13,Sat,250774,2026-04-10T16:59:34.799453+00:00 +2025-09-14,Sun,234215,2026-04-10T16:59:34.799464+00:00 +2025-09-15,Mon,291398,2026-04-10T16:59:34.799474+00:00 +2025-09-16,Tue,280023,2026-04-10T16:59:34.799484+00:00 +2025-09-17,Wed,260836,2026-04-10T16:59:34.799494+00:00 +2025-09-18,Thu,276414,2026-04-10T16:59:34.799505+00:00 +2025-09-19,Fri,287625,2026-04-10T16:59:34.799516+00:00 +2025-09-20,Sat,255074,2026-04-10T16:59:34.799526+00:00 +2025-09-21,Sun,243904,2026-04-10T16:59:34.799537+00:00 +2025-09-22,Mon,324382,2026-04-10T16:59:34.799547+00:00 +2025-09-23,Tue,296240,2026-04-10T16:59:34.799556+00:00 +2025-09-24,Wed,278045,2026-04-10T16:59:34.799566+00:00 +2025-09-25,Thu,269531,2026-04-10T16:59:34.799576+00:00 +2025-09-26,Fri,281095,2026-04-10T16:59:34.799586+00:00 +2025-09-27,Sat,251028,2026-04-10T16:59:34.799595+00:00 +2025-09-28,Sun,238907,2026-04-10T16:59:34.799605+00:00 +2025-09-29,Mon,319921,2026-04-10T16:59:34.799615+00:00 +2025-09-30,Tue,295302,2026-04-10T16:59:34.799625+00:00 +2025-10-01,Wed,320691,2026-04-10T16:59:34.799634+00:00 +2025-10-02,Thu,272299,2026-04-10T16:59:34.799644+00:00 +2025-10-03,Fri,267464,2026-04-10T16:59:34.799654+00:00 +2025-10-04,Sat,245047,2026-04-10T16:59:34.799664+00:00 +2025-10-05,Sun,246481,2026-04-10T16:59:34.799674+00:00 +2025-10-06,Mon,325432,2026-04-10T16:59:34.799683+00:00 +2025-10-07,Tue,290147,2026-04-10T16:59:34.799693+00:00 +2025-10-08,Wed,210775,2026-04-10T16:59:34.799703+00:00 +2025-10-09,Thu,1495,2026-04-10T16:59:34.799713+00:00 +2025-10-10,Fri,1459,2026-04-10T16:59:34.799722+00:00 +2025-10-11,Sat,1008,2026-04-10T16:59:34.799732+00:00 +2025-10-12,Sun,1221,2026-04-10T16:59:34.799742+00:00 +2025-10-13,Mon,1548,2026-04-10T16:59:34.799752+00:00 +2025-10-14,Tue,29683,2026-04-10T16:59:34.799761+00:00 +2025-10-15,Wed,282015,2026-04-10T16:59:34.799771+00:00 +2025-10-16,Thu,272188,2026-04-10T16:59:34.799781+00:00 +2025-10-17,Fri,259585,2026-04-10T16:59:34.799791+00:00 +2025-10-18,Sat,238754,2026-04-10T16:59:34.799801+00:00 +2025-10-19,Sun,225518,2026-04-10T16:59:34.799810+00:00 +2025-10-20,Mon,312029,2026-04-10T16:59:34.799821+00:00 +2025-10-21,Tue,274520,2026-04-10T16:59:34.799831+00:00 +2025-10-22,Wed,280193,2026-04-10T16:59:34.799841+00:00 +2025-10-23,Thu,270044,2026-04-10T16:59:34.799851+00:00 +2025-10-24,Fri,265393,2026-04-10T16:59:34.799861+00:00 +2025-10-25,Sat,249320,2026-04-10T16:59:34.799870+00:00 +2025-10-26,Sun,257265,2026-04-10T16:59:34.799880+00:00 +2025-10-27,Mon,327503,2026-04-10T16:59:34.799890+00:00 +2025-10-28,Tue,276231,2026-04-10T16:59:34.799900+00:00 +2025-10-29,Wed,287061,2026-04-10T16:59:34.799909+00:00 +2025-10-30,Thu,282280,2026-04-10T16:59:34.799919+00:00 +2025-10-31,Fri,265811,2026-04-10T16:59:34.799929+00:00 +2025-11-01,Sat,262090,2026-04-10T16:59:34.799938+00:00 +2025-11-02,Sun,243223,2026-04-10T16:59:34.799948+00:00 +2025-11-03,Mon,297355,2026-04-10T16:59:34.799958+00:00 +2025-11-04,Tue,271147,2026-04-10T16:59:34.799968+00:00 +2025-11-05,Wed,269510,2026-04-10T16:59:34.799978+00:00 +2025-11-06,Thu,283710,2026-04-10T16:59:34.799987+00:00 +2025-11-07,Fri,266814,2026-04-10T16:59:34.799997+00:00 +2025-11-08,Sat,257748,2026-04-10T16:59:34.800007+00:00 +2025-11-09,Sun,250443,2026-04-10T16:59:34.800016+00:00 +2025-11-10,Mon,306753,2026-04-10T16:59:34.800026+00:00 +2025-11-11,Tue,272261,2026-04-10T16:59:34.800036+00:00 +2025-11-12,Wed,276259,2026-04-10T16:59:34.800046+00:00 +2025-11-13,Thu,278261,2026-04-10T16:59:34.800055+00:00 +2025-11-14,Fri,299656,2026-04-10T16:59:34.800065+00:00 +2025-11-15,Sat,266010,2026-04-10T16:59:34.800075+00:00 +2025-11-16,Sun,257595,2026-04-10T16:59:34.800085+00:00 +2025-11-17,Mon,313765,2026-04-10T16:59:34.800094+00:00 +2025-11-18,Tue,381089,2026-04-10T16:59:34.800104+00:00 +2025-11-19,Wed,296659,2026-04-10T16:59:34.800114+00:00 +2025-11-20,Thu,320532,2026-04-10T16:59:34.800124+00:00 +2025-11-21,Fri,314941,2026-04-10T16:59:34.800135+00:00 +2025-11-22,Sat,256164,2026-04-10T16:59:34.800145+00:00 +2025-11-23,Sun,245195,2026-04-10T16:59:34.800154+00:00 +2025-11-24,Mon,334102,2026-04-10T16:59:34.800164+00:00 +2025-11-25,Tue,286367,2026-04-10T16:59:34.800193+00:00 +2025-11-26,Wed,292372,2026-04-10T16:59:34.800206+00:00 +2025-11-27,Thu,364030,2026-04-10T16:59:34.800217+00:00 +2025-11-28,Fri,260549,2026-04-10T16:59:34.800227+00:00 +2025-11-29,Sat,241077,2026-04-10T16:59:34.800237+00:00 +2025-11-30,Sun,235406,2026-04-10T16:59:34.800247+00:00 +2025-12-01,Mon,423989,2026-04-10T16:59:34.800257+00:00 +2025-12-02,Tue,306696,2026-04-10T16:59:34.800267+00:00 +2025-12-03,Wed,274394,2026-04-10T16:59:34.800276+00:00 +2025-12-04,Thu,270115,2026-04-10T16:59:34.800286+00:00 +2025-12-05,Fri,253671,2026-04-10T16:59:34.800296+00:00 +2025-12-06,Sat,239378,2026-04-10T16:59:34.800306+00:00 +2025-12-07,Sun,229177,2026-04-10T16:59:34.800315+00:00 +2025-12-08,Mon,290199,2026-04-10T16:59:34.800325+00:00 +2025-12-09,Tue,271235,2026-04-10T16:59:34.800335+00:00 +2025-12-10,Wed,259679,2026-04-10T16:59:34.800344+00:00 +2025-12-11,Thu,266872,2026-04-10T16:59:34.800354+00:00 +2025-12-12,Fri,261493,2026-04-10T16:59:34.800364+00:00 +2025-12-13,Sat,229173,2026-04-10T16:59:34.800374+00:00 +2025-12-14,Sun,225938,2026-04-10T16:59:34.800384+00:00 +2025-12-15,Mon,303585,2026-04-10T16:59:34.800393+00:00 +2025-12-16,Tue,264350,2026-04-10T16:59:34.800403+00:00 +2025-12-17,Wed,259680,2026-04-10T16:59:34.800413+00:00 +2025-12-18,Thu,278238,2026-04-10T16:59:34.800422+00:00 +2025-12-19,Fri,249115,2026-04-10T16:59:34.800432+00:00 +2025-12-20,Sat,228548,2026-04-10T16:59:34.800442+00:00 +2025-12-21,Sun,218528,2026-04-10T16:59:34.800452+00:00 +2025-12-22,Mon,267488,2026-04-10T16:59:34.800462+00:00 +2025-12-23,Tue,238550,2026-04-10T16:59:34.800472+00:00 +2025-12-24,Wed,234704,2026-04-10T16:59:34.800481+00:00 +2025-12-25,Thu,220404,2026-04-10T16:59:34.800491+00:00 +2025-12-26,Fri,226748,2026-04-10T16:59:34.800501+00:00 +2025-12-27,Sat,238510,2026-04-10T16:59:34.800510+00:00 +2025-12-28,Sun,240959,2026-04-10T16:59:34.800520+00:00 +2025-12-29,Mon,257332,2026-04-10T16:59:34.800529+00:00 +2025-12-30,Tue,245844,2026-04-10T16:59:34.800539+00:00 +2025-12-31,Wed,294382,2026-04-10T16:59:34.800549+00:00 +2026-01-01,Thu,265886,2026-04-10T16:59:34.800559+00:00 +2026-01-02,Fri,230929,2026-04-10T16:59:34.800577+00:00 +2026-01-03,Sat,213688,2026-04-10T16:59:34.800588+00:00 +2026-01-04,Sun,215828,2026-04-10T16:59:34.800598+00:00 +2026-01-05,Mon,252489,2026-04-10T16:59:34.800608+00:00 +2026-01-06,Tue,251082,2026-04-10T16:59:34.800618+00:00 +2026-01-07,Wed,250572,2026-04-10T16:59:34.800627+00:00 +2026-01-08,Thu,256655,2026-04-10T16:59:34.800637+00:00 +2026-01-09,Fri,250295,2026-04-10T16:59:34.800647+00:00 +2026-01-10,Sat,227867,2026-04-10T16:59:34.800662+00:00 +2026-01-11,Sun,220804,2026-04-10T16:59:34.800672+00:00 +2026-01-12,Mon,276169,2026-04-10T16:59:34.800682+00:00 +2026-01-13,Tue,286333,2026-04-10T16:59:34.800691+00:00 +2026-01-14,Wed,263464,2026-04-10T16:59:34.800701+00:00 +2026-01-15,Thu,250285,2026-04-10T16:59:34.800710+00:00 +2026-01-16,Fri,250014,2026-04-10T16:59:34.800720+00:00 +2026-01-17,Sat,282353,2026-04-10T16:59:34.800730+00:00 +2026-01-18,Sun,224626,2026-04-10T16:59:34.800739+00:00 +2026-01-19,Mon,282931,2026-04-10T16:59:34.800749+00:00 +2026-01-20,Tue,287185,2026-04-10T16:59:34.800759+00:00 +2026-01-21,Wed,268276,2026-04-10T16:59:34.800768+00:00 +2026-01-22,Thu,285510,2026-04-10T16:59:34.800778+00:00 +2026-01-23,Fri,265337,2026-04-10T16:59:34.800789+00:00 +2026-01-24,Sat,355207,2026-04-10T16:59:34.800798+00:00 +2026-01-25,Sun,222847,2026-04-10T16:59:34.800808+00:00 +2026-01-26,Mon,296697,2026-04-10T16:59:34.800817+00:00 +2026-01-27,Tue,281763,2026-04-10T16:59:34.800827+00:00 +2026-01-28,Wed,273185,2026-04-10T16:59:34.800837+00:00 +2026-01-29,Thu,288966,2026-04-10T16:59:34.800846+00:00 +2026-01-30,Fri,330033,2026-04-10T16:59:34.800856+00:00 +2026-01-31,Sat,284976,2026-04-10T16:59:34.800866+00:00 +2026-02-01,Sun,259428,2026-04-10T16:59:34.800876+00:00 +2026-02-02,Mon,305210,2026-04-10T16:59:34.800885+00:00 +2026-02-03,Tue,314262,2026-04-10T16:59:34.800895+00:00 +2026-02-04,Wed,372370,2026-04-10T16:59:34.800905+00:00 +2026-02-05,Thu,330966,2026-04-10T16:59:34.800915+00:00 +2026-02-06,Fri,277955,2026-04-10T16:59:34.800925+00:00 +2026-02-07,Sat,258386,2026-04-10T16:59:34.800934+00:00 +2026-02-08,Sun,251259,2026-04-10T16:59:34.800944+00:00 +2026-02-09,Mon,282107,2026-04-10T16:59:34.800954+00:00 +2026-02-10,Tue,271122,2026-04-10T16:59:34.800964+00:00 +2026-02-11,Wed,303157,2026-04-10T16:59:34.800973+00:00 +2026-02-12,Thu,293550,2026-04-10T16:59:34.800983+00:00 +2026-02-13,Fri,354516,2026-04-10T16:59:34.800992+00:00 +2026-02-14,Sat,274485,2026-04-10T16:59:34.801002+00:00 +2026-02-15,Sun,260012,2026-04-10T16:59:34.801012+00:00 +2026-02-16,Mon,313887,2026-04-10T16:59:34.801021+00:00 +2026-02-17,Tue,283873,2026-04-10T16:59:34.801031+00:00 +2026-02-18,Wed,284203,2026-04-10T16:59:34.801041+00:00 +2026-02-19,Thu,284048,2026-04-10T16:59:34.801051+00:00 +2026-02-20,Fri,291715,2026-04-10T16:59:34.801060+00:00 +2026-02-21,Sat,284656,2026-04-10T16:59:34.801070+00:00 +2026-02-22,Sun,260448,2026-04-10T16:59:34.801080+00:00 +2026-02-23,Mon,318346,2026-04-10T16:59:34.801094+00:00 +2026-02-24,Tue,288997,2026-04-10T16:59:34.801104+00:00 +2026-02-25,Wed,303928,2026-04-10T16:59:34.801114+00:00 +2026-02-26,Thu,304906,2026-04-10T16:59:34.801124+00:00 +2026-02-27,Fri,315717,2026-04-10T16:59:34.801133+00:00 +2026-02-28,Sat,278167,2026-04-10T16:59:34.801143+00:00 +2026-03-01,Sun,285652,2026-04-10T16:59:34.801153+00:00 +2026-03-02,Mon,342497,2026-04-10T16:59:34.801163+00:00 +2026-03-03,Tue,309154,2026-04-10T16:59:34.801173+00:00 +2026-03-04,Wed,315494,2026-04-10T16:59:34.801183+00:00 +2026-03-05,Thu,375577,2026-04-10T16:59:34.801192+00:00 +2026-03-06,Fri,322676,2026-04-10T16:59:34.801202+00:00 +2026-03-07,Sat,264480,2026-04-10T16:59:34.801212+00:00 +2026-03-08,Sun,271074,2026-04-10T16:59:34.801221+00:00 +2026-03-09,Mon,356182,2026-04-10T16:59:34.801231+00:00 +2026-03-10,Tue,352733,2026-04-10T16:59:34.801241+00:00 +2026-03-11,Wed,354354,2026-04-10T16:59:34.801250+00:00 +2026-03-12,Thu,335891,2026-04-10T16:59:34.801260+00:00 +2026-03-13,Fri,317634,2026-04-10T16:59:34.801270+00:00 +2026-03-14,Sat,282996,2026-04-10T16:59:34.801280+00:00 +2026-03-15,Sun,278141,2026-04-10T16:59:34.801289+00:00 +2026-03-16,Mon,347658,2026-04-10T16:59:34.801299+00:00 +2026-03-17,Tue,330264,2026-04-10T16:59:34.801309+00:00 +2026-03-18,Wed,338547,2026-04-10T16:59:34.801318+00:00 +2026-03-19,Thu,331546,2026-04-10T16:59:34.801328+00:00 +2026-03-20,Fri,311843,2026-04-10T16:59:34.801338+00:00 +2026-03-21,Sat,290708,2026-04-10T16:59:34.801362+00:00 +2026-03-22,Sun,280910,2026-04-10T16:59:34.801373+00:00 +2026-03-23,Mon,399964,2026-04-10T16:59:34.801382+00:00 +2026-03-24,Tue,348234,2026-04-10T16:59:34.801392+00:00 +2026-03-25,Wed,363475,2026-04-10T16:59:34.801402+00:00 +2026-03-26,Thu,382376,2026-04-10T16:59:34.801415+00:00 +2026-03-27,Fri,413691,2026-04-10T16:59:34.801425+00:00 +2026-03-28,Sat,432030,2026-04-10T16:59:34.801435+00:00 +2026-03-29,Sun,297844,2026-04-10T16:59:34.801445+00:00 +2026-03-30,Mon,376069,2026-04-10T16:59:34.801455+00:00 +2026-03-31,Tue,335422,2026-04-10T16:59:34.801464+00:00 +2026-04-01,Wed,336039,2026-04-10T16:59:34.801474+00:00 +2026-04-02,Thu,307887,2026-04-10T16:59:34.801484+00:00 +2026-04-03,Fri,305255,2026-04-10T16:59:34.801493+00:00 +2026-04-04,Sat,262291,2026-04-10T16:59:34.801503+00:00 +2026-04-05,Sun,254559,2026-04-10T16:59:34.801513+00:00 +2026-04-06,Mon,334426,2026-04-10T16:59:34.801523+00:00 +2026-04-07,Tue,334054,2026-04-10T16:59:34.801532+00:00 +2026-04-08,Wed,342041,2026-04-10T16:59:34.801542+00:00 +2026-04-09,Thu,323865,2026-04-10T16:59:34.801551+00:00 +2026-04-10,Fri,317419,2026-04-28T03:51:23.640037+00:00 +2026-04-11,Sat,308229,2026-04-28T03:51:23.640037+00:00 +2026-04-12,Sun,253594,2026-04-28T03:51:23.640037+00:00 +2026-04-13,Mon,392263,2026-04-28T03:51:23.640037+00:00 +2026-04-14,Tue,342424,2026-04-28T03:51:23.640037+00:00 +2026-04-15,Wed,340813,2026-04-28T03:51:23.640037+00:00 +2026-04-16,Thu,340752,2026-04-28T03:51:23.640037+00:00 +2026-04-17,Fri,324412,2026-04-28T03:51:23.640037+00:00 +2026-04-18,Sat,273435,2026-04-28T03:51:23.640037+00:00 +2026-04-19,Sun,271422,2026-04-28T03:51:23.640037+00:00 +2026-04-20,Mon,346722,2026-04-28T03:51:23.640037+00:00 +2026-04-21,Tue,340456,2026-04-28T03:51:23.640037+00:00 +2026-04-22,Wed,343735,2026-04-28T03:51:23.640037+00:00 +2026-04-23,Thu,339468,2026-04-28T03:51:23.640037+00:00 +2026-04-24,Fri,327807,2026-04-28T03:51:23.640037+00:00 +2026-04-25,Sat,262893,2026-04-28T03:51:23.640037+00:00 +2026-04-26,Sun,273986,2026-04-28T03:51:23.640037+00:00 +2026-04-27,Mon,357945,2026-04-28T03:51:23.640037+00:00 +2026-04-28,Tue,434719,2026-05-11T21:58:41.330018+00:00 +2026-04-29,Wed,502940,2026-05-11T21:58:41.330018+00:00 +2026-04-30,Thu,248482,2026-05-11T21:58:41.330018+00:00 +2026-05-01,Fri,418776,2026-05-11T21:58:41.330018+00:00 +2026-05-02,Sat,355304,2026-05-11T21:58:41.330018+00:00 +2026-05-03,Sun,393546,2026-05-11T21:58:41.330018+00:00 +2026-05-04,Mon,365192,2026-05-11T21:58:41.330018+00:00 +2026-05-05,Tue,390718,2026-05-11T21:58:41.330018+00:00 +2026-05-06,Wed,389915,2026-05-11T21:58:41.330018+00:00 +2026-05-07,Thu,362174,2026-05-11T21:58:41.330018+00:00 +2026-05-08,Fri,374347,2026-05-11T21:58:41.330018+00:00 +2026-05-09,Sat,317212,2026-05-11T21:58:41.330018+00:00 +2026-05-10,Sun,277369,2026-05-11T21:58:41.330018+00:00 diff --git a/build_carbon_workbook.py b/build_carbon_workbook.py new file mode 100644 index 0000000..8d4d806 --- /dev/null +++ b/build_carbon_workbook.py @@ -0,0 +1,873 @@ +#!/usr/bin/env python3 +""" +Build an Excel workbook that walks through the carbon estimation +calculation chain with live formulas, assumptions, and sourcing. + +Designed for science team QA review. + +Usage: + python3 build_carbon_workbook.py +""" + +import openpyxl +from openpyxl.styles import Font, PatternFill, Alignment, Border, Side, numbers +from openpyxl.utils import get_column_letter + +OUTPUT = "carbon_estimation_workbook.xlsx" + +# ── Styles ────────────────────────────────────────────────────── +HEADER_FONT = Font(name="Calibri", bold=True, size=11, color="FFFFFF") +HEADER_FILL = PatternFill(start_color="1a1a1a", end_color="1a1a1a", fill_type="solid") +SECTION_FONT = Font(name="Calibri", bold=True, size=11, color="1a1a1a") +SECTION_FILL = PatternFill(start_color="EFE2D0", end_color="EFE2D0", fill_type="solid") +NOTE_FONT = Font(name="Calibri", italic=True, size=10, color="6b6b6b") +FORMULA_FILL = PatternFill(start_color="E8F4E8", end_color="E8F4E8", fill_type="solid") +INPUT_FILL = PatternFill(start_color="FFF8E1", end_color="FFF8E1", fill_type="solid") +THIN_BORDER = Border( + bottom=Side(style="thin", color="CCCCCC"), +) +WRAP = Alignment(wrap_text=True, vertical="top") + + +def style_header_row(ws, row, max_col): + for col in range(1, max_col + 1): + cell = ws.cell(row=row, column=col) + cell.font = HEADER_FONT + cell.fill = HEADER_FILL + cell.alignment = Alignment(horizontal="center", wrap_text=True) + + +def style_section_row(ws, row, max_col): + for col in range(1, max_col + 1): + cell = ws.cell(row=row, column=col) + cell.font = SECTION_FONT + cell.fill = SECTION_FILL + + +def auto_width(ws, min_width=10, max_width=45): + for col in ws.columns: + letter = get_column_letter(col[0].column) + lengths = [] + for cell in col: + if cell.value: + lines = str(cell.value).split("\n") + lengths.append(max(len(line) for line in lines)) + width = max(lengths) if lengths else min_width + ws.column_dimensions[letter].width = min(max(width + 2, min_width), max_width) + + +def build_assumptions_sheet(wb): + ws = wb.active + ws.title = "Assumptions" + ws.sheet_properties.tabColor = "C1440E" + + headers = ["Parameter", "Value", "Unit", "Band", "Source", "Notes"] + for c, h in enumerate(headers, 1): + ws.cell(row=1, column=c, value=h) + style_header_row(ws, 1, len(headers)) + + r = 2 + + # Section: Token estimates + ws.cell(row=r, column=1, value="TOKEN ESTIMATES (per agentic task)") + style_section_row(ws, r, len(headers)) + r += 1 + + token_data = [ + ("AWS / Anthropic — tokens/task (low)", 1_050_000, "tokens", "Low (0.5x mid)", "SWE-rebench leaderboard, Mar 2026", "Claude Sonnet 4.6; p25 approximation"), + ("AWS / Anthropic — tokens/task (mid)", 2_100_000, "tokens", "Mid", "SWE-rebench leaderboard, Mar 2026", "Claude Sonnet 4.6 median"), + ("AWS / Anthropic — tokens/task (high)", 4_200_000, "tokens", "High (2x mid)", "SWE-rebench leaderboard, Mar 2026", "Claude Sonnet 4.6; p75+ approximation"), + ("Azure / Microsoft — tokens/task (mid)", 1_000_000, "tokens", "Mid", "SWE-rebench leaderboard, Mar 2026", "GPT-5.2 medium"), + ("Google — tokens/task (mid)", 1_400_000, "tokens", "Mid", "SWE-rebench leaderboard, Mar 2026", "Gemini 3.1 Pro"), + ("Other / Unknown — tokens/task (mid)", 1_500_000, "tokens", "Mid", "Weighted average of above", ""), + ] + for row_data in token_data: + for c, v in enumerate(row_data, 1): + cell = ws.cell(row=r, column=c, value=v) + if c == 2: + cell.number_format = "#,##0" + cell.fill = INPUT_FILL + if c >= 5: + cell.font = NOTE_FONT + cell.alignment = WRAP + r += 1 + + r += 1 + ws.cell(row=r, column=1, value="JEGHAM ENERGY FORMULA PARAMETERS") + style_section_row(ws, r, len(headers)) + r += 1 + + providers = [ + ("AWS / Anthropic", [ + ("PUE", 1.14, "ratio", "", "AWS Sustainability Report; Jegham Table 3", "Power Usage Effectiveness — datacenter overhead"), + ("CIF (location-based)", 0.287, "kgCO2e/kWh", "", "EPA eGRID; Jegham Table 3", "Location-based; market-based may be lower with RECs"), + ("GPU power (H100 SXM TDP)", 0.700, "kW", "", "NVIDIA H100 datasheet", "Per-GPU rated thermal design power"), + ("Number of GPUs", 4, "GPUs", "", "Jegham: 'Medium' class (40-70B params)", "Tensor parallelism for Claude Sonnet-class models"), + ("Non-GPU power", 0.200, "kW", "", "Jegham et al. estimate", "CPU, SSD, network per node"), + ("GPU utilization", 0.70, "fraction", "", "Jegham et al. default", "Fraction of TDP drawn during inference"), + ("Non-GPU utilization", 0.50, "fraction", "", "Jegham et al. fixed", ""), + ("Concurrent requests", 4, "requests", "", "Estimate — not publicly disclosed", "Multi-tenant serving; divides node power per request"), + ("Output fraction", 0.25, "fraction", "", "Estimated; see QA review C2", "Includes thinking tokens at decode speed; higher than GPT due to extended thinking"), + ("Throughput", 65, "tokens/sec", "", "Artificial Analysis, Mar 2026", "Claude Sonnet 4.6 output generation rate"), + ("Latency (TTFT)", 1.5, "seconds", "", "Artificial Analysis, Mar 2026", "Time to first token; prefill is <5% of total inference time"), + ]), + ("Azure / Microsoft", [ + ("PUE", 1.12, "ratio", "", "Microsoft Sustainability Report; Jegham Table 3", ""), + ("CIF (location-based)", 0.35, "kgCO2e/kWh", "", "EPA eGRID; Jegham Table 3", ""), + ("GPU power (H100 SXM TDP)", 0.700, "kW", "", "NVIDIA H100 datasheet", ""), + ("Number of GPUs", 4, "GPUs", "", "Jegham: 'Medium' class", ""), + ("Non-GPU power", 0.200, "kW", "", "Jegham et al.", ""), + ("GPU utilization", 0.70, "fraction", "", "Jegham et al.", ""), + ("Non-GPU utilization", 0.50, "fraction", "", "Jegham et al.", ""), + ("Concurrent requests", 6, "requests", "", "Estimate", "Higher throughput model allows more concurrency"), + ("Output fraction", 0.15, "fraction", "", "Standard decode ratio", "No extended thinking in GPT-5.2 medium"), + ("Throughput", 120, "tokens/sec", "", "Artificial Analysis, Mar 2026", "GPT-5.2 medium"), + ("Latency (TTFT)", 0.8, "seconds", "", "Artificial Analysis, Mar 2026", ""), + ]), + ("Google", [ + ("PUE", 1.10, "ratio", "", "Google Environmental Report; Jegham Table 3", ""), + ("CIF (location-based)", 0.28, "kgCO2e/kWh", "", "IEA; Jegham Table 3", "Google claims 100% RE matching; market-based CIF ≈ 0"), + ("GPU power (TPU v5e)", 0.400, "kW", "", "Google TPU v5e specs", "Per-chip rated power"), + ("Number of GPUs", 4, "chips", "", "Jegham: 'Medium' class equivalent", ""), + ("Non-GPU power", 0.150, "kW", "", "Jegham et al.", ""), + ("GPU utilization", 0.70, "fraction", "", "Jegham et al.", ""), + ("Non-GPU utilization", 0.50, "fraction", "", "Jegham et al.", ""), + ("Concurrent requests", 8, "requests", "", "Estimate", "TPU optimized for throughput"), + ("Output fraction", 0.18, "fraction", "", "Estimated", "Gemini thinking mode — moderate"), + ("Throughput", 85, "tokens/sec", "", "Artificial Analysis, Mar 2026", "Gemini 3.1 Pro"), + ("Latency (TTFT)", 1.0, "seconds", "", "Artificial Analysis, Mar 2026", ""), + ]), + ("Other / Unknown", [ + ("PUE", 1.20, "ratio", "", "Conservative default", "Unknown datacenter"), + ("CIF (location-based)", 0.40, "kgCO2e/kWh", "", "Conservative — higher than any named provider", ""), + ("GPU power", 0.700, "kW", "", "H100 assumed", ""), + ("Number of GPUs", 4, "GPUs", "", "Conservative", ""), + ("Non-GPU power", 0.200, "kW", "", "Default", ""), + ("GPU utilization", 0.70, "fraction", "", "Default", ""), + ("Non-GPU utilization", 0.50, "fraction", "", "Default", ""), + ("Concurrent requests", 4, "requests", "", "Conservative", ""), + ("Output fraction", 0.20, "fraction", "", "Middle ground", ""), + ("Throughput", 80, "tokens/sec", "", "Estimated average", ""), + ("Latency (TTFT)", 1.2, "seconds", "", "Estimated", ""), + ]), + ] + + for provider_name, params in providers: + ws.cell(row=r, column=1, value=f" {provider_name}") + ws.cell(row=r, column=1).font = Font(bold=True, size=10) + r += 1 + for row_data in params: + ws.cell(row=r, column=1, value=f" {row_data[0]}") + cell_v = ws.cell(row=r, column=2, value=row_data[1]) + cell_v.fill = INPUT_FILL + ws.cell(row=r, column=3, value=row_data[2]) + ws.cell(row=r, column=4, value=row_data[3]) + ws.cell(row=r, column=5, value=row_data[4]).font = NOTE_FONT + ws.cell(row=r, column=5).alignment = WRAP + ws.cell(row=r, column=6, value=row_data[5]).font = NOTE_FONT + ws.cell(row=r, column=6).alignment = WRAP + r += 1 + r += 1 + + # Global parameters + ws.cell(row=r, column=1, value="GLOBAL PARAMETERS") + style_section_row(ws, r, len(headers)) + r += 1 + + globals_data = [ + ("Node utilization", 0.90, "fraction", "", "Estimate: cloud providers target 70-85%+", "Fraction of time GPU nodes are serving requests vs idle; 0.90 is conservative for expensive H100s"), + ("Energy band — low multiplier", 0.70, "factor", "Low", "Jegham Monte Carlo bounds (approx)", "Asymmetric: wider on high side"), + ("Energy band — mid multiplier", 1.00, "factor", "Mid", "Jegham Monte Carlo bounds", ""), + ("Energy band — high multiplier", 1.40, "factor", "High", "Jegham Monte Carlo bounds (approx)", ""), + ("CIF band — low multiplier", 0.85, "factor", "Low", "±15% for multi-region operation", ""), + ("CIF band — mid multiplier", 1.00, "factor", "Mid", "", ""), + ("CIF band — high multiplier", 1.15, "factor", "High", "±15% for multi-region operation", ""), + ("Branch token band — low", 0.50, "factor", "Low", "Estimate", "A push may be a tiny fixup"), + ("Branch token band — mid", 1.00, "factor", "Mid", "1 push ≈ 1 task (Pham & Ghaleb 2026)", "Median agentic PR = 1 commit"), + ("Branch token band — high", 2.00, "factor", "High", "Estimate", "A push may be a multi-commit session"), + ] + for row_data in globals_data: + for c, v in enumerate(row_data, 1): + cell = ws.cell(row=r, column=c, value=v) + if c == 2: + cell.fill = INPUT_FILL + if c >= 5: + cell.font = NOTE_FONT + cell.alignment = WRAP + r += 1 + + auto_width(ws) + ws.column_dimensions["E"].width = 40 + ws.column_dimensions["F"].width = 45 + + +def build_calculation_sheet(wb): + ws = wb.create_sheet("Per-Commit Calculation") + ws.sheet_properties.tabColor = "1B6B93" + + # Header note + ws.merge_cells("A1:H1") + ws.cell(row=1, column=1, value="Step-by-step energy & carbon calculation for ONE commit, per provider. " + "Yellow cells = inputs (from Assumptions sheet). Green cells = formulas. All formulas are live Excel references.") + ws.cell(row=1, column=1).font = NOTE_FONT + ws.cell(row=1, column=1).alignment = WRAP + ws.row_dimensions[1].height = 35 + + headers = ["Step", "Description", "AWS / Anthropic", "Azure / Microsoft", "Google", "Other / Unknown", "Unit", "Formula / Notes"] + for c, h in enumerate(headers, 1): + ws.cell(row=3, column=c, value=h) + style_header_row(ws, 3, len(headers)) + + # Row data: (step, description, aws, azure, google, other, unit, formula_note) + # We'll use row references for formulas. Inputs start at row 4. + r = 4 + + steps = [ + # Inputs section + ("INPUTS", "", "", "", "", "", "", ""), + ("1", "Total tokens per task (mid)", 2_100_000, 1_000_000, 1_400_000, 1_500_000, "tokens", "SWE-rebench, Mar 2026"), + ("2", "Output fraction", 0.25, 0.15, 0.18, 0.20, "fraction", "Thinking + decode tokens; higher for Claude (extended thinking)"), + ("3", "Throughput (output tokens/sec)", 65, 120, 85, 80, "tokens/sec", "Artificial Analysis benchmarks"), + ("4", "Latency to first token", 1.5, 0.8, 1.0, 1.2, "seconds", "Artificial Analysis benchmarks"), + ("5", "GPU power per chip", 0.700, 0.700, 0.400, 0.700, "kW", "H100 TDP / TPU v5e"), + ("6", "Number of GPUs", 4, 4, 4, 4, "GPUs", "Jegham 'Medium' class"), + ("7", "GPU utilization", 0.70, 0.70, 0.70, 0.70, "fraction", "Jegham default"), + ("8", "Non-GPU power", 0.200, 0.200, 0.150, 0.200, "kW", "CPU/SSD/network"), + ("9", "Non-GPU utilization", 0.50, 0.50, 0.50, 0.50, "fraction", "Jegham fixed"), + ("10", "Concurrent requests", 4, 6, 8, 4, "requests", "Multi-tenant GPU sharing estimate"), + ("11", "Node utilization", 0.90, 0.90, 0.90, 0.90, "fraction", "Fraction of time node is active"), + ("12", "PUE", 1.14, 1.12, 1.10, 1.20, "ratio", "Provider sustainability reports"), + ("13", "CIF", 0.287, 0.350, 0.280, 0.400, "kgCO2e/kWh", "Location-based carbon intensity"), + # Calculations section + ("CALCULATION", "", "", "", "", "", "", ""), + ("14", "Output tokens = Step 1 × Step 2", None, None, None, None, "tokens", "=C5*C6"), + ("15", "Generation time = Step 14 / Step 3", None, None, None, None, "seconds", "=C19/C7"), + ("16", "Total inference time = Step 4 + Step 15", None, None, None, None, "seconds", "=C8+C20"), + ("17", "Total inference time in hours = Step 16 / 3600", None, None, None, None, "hours", "=C21/3600"), + ("18", "Node GPU power = Step 5 × Step 6 × Step 7", None, None, None, None, "kW", "=C9*C10*C11"), + ("19", "Node non-GPU power = Step 8 × Step 9", None, None, None, None, "kW", "=C12*C13"), + ("20", "Total node power = Step 18 + Step 19", None, None, None, None, "kW", "=C23+C24"), + ("21", "Per-request power = Step 20 / (Step 10 × Step 11)", None, None, None, None, "kW", "=C25/(C14*C15)"), + ("22", "Energy (pre-PUE) = Step 17 × Step 21", None, None, None, None, "kWh", "=C22*C26"), + ("23", "Energy (with PUE) = Step 22 × Step 12", None, None, None, None, "kWh", "=C27*C16"), + ("24", "Energy in Wh = Step 23 × 1000", None, None, None, None, "Wh", "=C28*1000"), + # Carbon + ("CARBON", "", "", "", "", "", "", ""), + ("25", "Carbon per commit = Step 23 × Step 13", None, None, None, None, "kgCO2e", "=C28*C17"), + ("26", "Carbon per commit in gCO2e = Step 25 × 1000", None, None, None, None, "gCO2e", "=C31*1000"), + # Cross-validation + ("CROSS-VALIDATION", "", "", "", "", "", "", ""), + ("27", "Jegham GPT-4o: 0.34 Wh per 700-token query", 0.34, 0.34, 0.34, 0.34, "Wh", "Published benchmark (Sam Altman, June 2025)"), + ("28", "Scaled to our token count = 0.34 × (Step 1 / 700)", None, None, None, None, "Wh", "=0.34*(C5/700)"), + ("29", "Our estimate / Jegham scaled = Step 24 / Step 28", None, None, None, None, "ratio", "=C29/C35; target: < 2.0x"), + ] + + for step_data in steps: + step, desc = step_data[0], step_data[1] + aws, azure, google, other = step_data[2], step_data[3], step_data[4], step_data[5] + unit, formula = step_data[6], step_data[7] + + # Section headers + if step in ("INPUTS", "CALCULATION", "CARBON", "CROSS-VALIDATION"): + ws.cell(row=r, column=1, value=step) + style_section_row(ws, r, len(headers)) + r += 1 + continue + + ws.cell(row=r, column=1, value=step) + ws.cell(row=r, column=2, value=desc).alignment = WRAP + ws.cell(row=r, column=7, value=unit) + ws.cell(row=r, column=8, value=formula).font = NOTE_FONT + ws.cell(row=r, column=8).alignment = WRAP + + vals = [aws, azure, google, other] + for ci, v in enumerate(vals): + col = ci + 3 # columns C, D, E, F + cell = ws.cell(row=r, column=col) + if v is not None: + cell.value = v + cell.fill = INPUT_FILL + if isinstance(v, int): + cell.number_format = "#,##0" + elif isinstance(v, float) and v < 1: + cell.number_format = "0.000" + else: + cell.fill = FORMULA_FILL + + r += 1 + + # Now write the actual Excel formulas for the calculation rows + # Row mapping (0-indexed from row 4): + # Row 4 = INPUTS header (skipped) + # Row 5 = Step 1 (tokens) -> C5 + # Row 6 = Step 2 (output frac) -> C6 + # Row 7 = Step 3 (throughput) -> C7 + # Row 8 = Step 4 (latency) -> C8 + # Row 9 = Step 5 (gpu power) -> C9 + # Row 10 = Step 6 (num gpus) -> C10 + # Row 11 = Step 7 (gpu util) -> C11 + # Row 12 = Step 8 (non-gpu pwr) -> C12 + # Row 13 = Step 9 (non-gpu util)-> C13 + # Row 14 = Step 10 (concurrent) -> C14 + # Row 15 = Step 11 (node util) -> C15 + # Row 16 = Step 12 (PUE) -> C16 + # Row 17 = Step 13 (CIF) -> C17 + # Row 18 = CALCULATION header + # Row 19 = Step 14 (output tokens) + # Row 20 = Step 15 (gen time) + # Row 21 = Step 16 (total infer time) + # Row 22 = Step 17 (hours) + # Row 23 = Step 18 (node GPU power) + # Row 24 = Step 19 (node non-GPU power) + # Row 25 = Step 20 (total node power) + # Row 26 = Step 21 (per-request power) + # Row 27 = Step 22 (energy pre-PUE) + # Row 28 = Step 23 (energy with PUE) + # Row 29 = Step 24 (Wh) + # Row 30 = CARBON header + # Row 31 = Step 25 (kgCO2e) + # Row 32 = Step 26 (gCO2e) + # Row 33 = CROSS-VALIDATION header + # Row 34 = Step 27 (Jegham benchmark) + # Row 35 = Step 28 (scaled) + # Row 36 = Step 29 (ratio) + + formulas = { + 19: "{col}5*{col}6", # output tokens = tokens * fraction + 20: "{col}19/{col}7", # gen time = output tokens / throughput + 21: "{col}8+{col}20", # total time = latency + gen time + 22: "{col}21/3600", # hours + 23: "{col}9*{col}10*{col}11", # node GPU power + 24: "{col}12*{col}13", # node non-GPU power + 25: "{col}23+{col}24", # total node power + 26: "{col}25/({col}14*{col}15)", # per-request power + 27: "{col}22*{col}26", # energy pre-PUE + 28: "{col}27*{col}16", # energy with PUE + 29: "{col}28*1000", # Wh + 31: "{col}28*{col}17", # kgCO2e + 32: "{col}31*1000", # gCO2e + 35: "0.34*({col}5/700)", # Jegham scaled + 36: "{col}29/{col}35", # ratio + } + + for row_num, template in formulas.items(): + for ci, col_letter in enumerate(["C", "D", "E", "F"]): + cell = ws.cell(row=row_num, column=ci + 3) + cell.value = "=" + template.format(col=col_letter) + cell.fill = FORMULA_FILL + if row_num in (19,): + cell.number_format = "#,##0" + elif row_num in (20, 21): + cell.number_format = "#,##0.0" + elif row_num in (22,): + cell.number_format = "0.0000" + elif row_num in (23, 24, 25, 26): + cell.number_format = "0.000" + elif row_num in (27, 28): + cell.number_format = "0.000" + elif row_num in (29, 35): + cell.number_format = "#,##0" + elif row_num in (31,): + cell.number_format = "0.000" + elif row_num in (32,): + cell.number_format = "#,##0" + elif row_num in (36,): + cell.number_format = "0.0x" + + auto_width(ws) + ws.column_dimensions["B"].width = 45 + ws.column_dimensions["H"].width = 45 + + +def build_daily_sheet(wb): + ws = wb.create_sheet("Daily Aggregation") + ws.sheet_properties.tabColor = "2D6A4F" + + ws.merge_cells("A1:G1") + ws.cell(row=1, column=1, value="Example: March 15, 2026 — how per-commit energy scales to daily totals. " + "Shows tool→provider mapping and multi-model weighting.") + ws.cell(row=1, column=1).font = NOTE_FONT + ws.cell(row=1, column=1).alignment = WRAP + ws.row_dimensions[1].height = 30 + + headers = ["Tool", "Daily Commits", "Provider Group", "Provider Weight", "Weighted Commits", "kWh/commit (mid)", "Daily kWh (mid)"] + for c, h in enumerate(headers, 1): + ws.cell(row=3, column=c, value=h) + style_header_row(ws, 3, len(headers)) + + # Representative day data (approximate March 2026 averages) + tools = [ + ("Claude Code", 35000, "AWS / Anthropic", 1.0), + ("Copilot SWE Agent", 12000, "Azure / Microsoft", 1.0), + ("Jules (Google)", 2500, "Google", 1.0), + ("Cursor", 1800, "Multi-Model", None), + (" → Azure share (50%)", None, "Azure / Microsoft", 0.50), + (" → AWS share (35%)", None, "AWS / Anthropic", 0.35), + (" → Google share (15%)", None, "Google", 0.15), + ("OpenAI Codex", 200, "Azure / Microsoft", 1.0), + ("Aider", 500, "Multi-Model", None), + (" → Azure share (40%)", None, "Azure / Microsoft", 0.40), + (" → AWS share (45%)", None, "AWS / Anthropic", 0.45), + (" → Google share (15%)", None, "Google", 0.15), + ("Devin", 400, "Other / Unknown", 1.0), + ("Other tools (20+)", 2600, "Various", 1.0), + ] + + # Per-commit kWh mid from our calculation (approximate) + kwh_per_commit = { + "AWS / Anthropic": 1.464, + "Azure / Microsoft": 0.149, + "Google": 0.150, + "Other / Unknown": 0.716, + "Various": 0.500, # rough average + } + + r = 4 + for tool, commits, provider, weight in tools: + ws.cell(row=r, column=1, value=tool) + if commits is not None: + ws.cell(row=r, column=2, value=commits).number_format = "#,##0" + ws.cell(row=r, column=2).fill = INPUT_FILL + ws.cell(row=r, column=3, value=provider) + if weight is not None: + ws.cell(row=r, column=4, value=weight) + + if tool.startswith(" →"): + # Sub-row for multi-model: weighted commits + parent_row = r - (1 if "Azure" in tool else (2 if "AWS" in tool else 3)) + # Find the parent commits + for rr in range(r - 1, r - 5, -1): + pv = ws.cell(row=rr, column=2).value + if pv and isinstance(pv, (int, float)): + ws.cell(row=r, column=5, value=f"=B{rr}*D{r}") + ws.cell(row=r, column=5).fill = FORMULA_FILL + ws.cell(row=r, column=5).number_format = "#,##0" + break + kwh = kwh_per_commit.get(provider, 0.5) + ws.cell(row=r, column=6, value=kwh) + ws.cell(row=r, column=7, value=f"=E{r}*F{r}") + ws.cell(row=r, column=7).fill = FORMULA_FILL + ws.cell(row=r, column=7).number_format = "#,##0.0" + elif weight == 1.0 and commits is not None: + ws.cell(row=r, column=5, value=f"=B{r}*D{r}") + ws.cell(row=r, column=5).fill = FORMULA_FILL + ws.cell(row=r, column=5).number_format = "#,##0" + kwh = kwh_per_commit.get(provider, 0.5) + ws.cell(row=r, column=6, value=kwh) + ws.cell(row=r, column=7, value=f"=E{r}*F{r}") + ws.cell(row=r, column=7).fill = FORMULA_FILL + ws.cell(row=r, column=7).number_format = "#,##0.0" + + r += 1 + + # Totals + r += 1 + ws.cell(row=r, column=1, value="DAILY TOTAL").font = SECTION_FONT + ws.cell(row=r, column=7, value=f"=SUM(G4:G{r-2})") + ws.cell(row=r, column=7).fill = FORMULA_FILL + ws.cell(row=r, column=7).font = Font(bold=True) + ws.cell(row=r, column=7).number_format = "#,##0.0" + + r += 1 + ws.cell(row=r, column=1, value="Daily tCO2e (mid)").font = SECTION_FONT + ws.cell(row=r, column=7, value=f"=G{r-1}*0.287/1000") # rough weighted CIF + ws.cell(row=r, column=7).fill = FORMULA_FILL + ws.cell(row=r, column=7).font = Font(bold=True) + ws.cell(row=r, column=7).number_format = "0.00" + + r += 2 + ws.cell(row=r, column=1, value="Note: This is a simplified example. The actual pipeline computes per-provider " + "aggregated totals with provider-specific CIF. The 0.287 CIF above is AWS-only — " + "see estimate_carbon.py for exact calculation.") + ws.cell(row=r, column=1).font = NOTE_FONT + ws.cell(row=r, column=1).alignment = WRAP + ws.merge_cells(f"A{r}:G{r}") + ws.row_dimensions[r].height = 30 + + auto_width(ws) + ws.column_dimensions["A"].width = 28 + + +def build_extrapolation_sheet(wb): + ws = wb.create_sheet("Extrapolation") + ws.sheet_properties.tabColor = "7B2D8E" + + ws.merge_cells("A1:E1") + ws.cell(row=1, column=1, value="Context: scaling from public GitHub to estimated total AI coding agent emissions") + ws.cell(row=1, column=1).font = NOTE_FONT + ws.row_dimensions[1].height = 25 + + headers = ["Metric", "Value", "Unit", "Source", "Notes"] + for c, h in enumerate(headers, 1): + ws.cell(row=3, column=c, value=h) + style_header_row(ws, 3, len(headers)) + + r = 4 + ws.cell(row=r, column=1, value="PUBLIC → ALL GITHUB") + style_section_row(ws, r, len(headers)) + r += 1 + + data = [ + ("Total GitHub contributions (2025)", 6_090_000_000, "", "GitHub Octoverse 2025", "Includes commits, PRs, issues, reviews"), + ("Public repo contributions", 1_120_000_000, "", "GitHub Octoverse 2025", "18.5% of total"), + ("Private repo contributions", 4_970_000_000, "", "GitHub Octoverse 2025", "81.5% of total"), + ("Public share", "=B6/B5", "fraction", "Derived", ""), + ("Multiplier (total / public)", "=B5/B6", "×", "Derived", '"Contributions" includes PRs/issues, not just commits'), + ("Conservative multiplier range", "3–6×", "×", "Estimate", "Commit-specific split not published; midpoint ~5×"), + ("", "", "", "", ""), + ("Our daily carbon (public, mid)", 15.5, "tCO2e/day", "estimate_carbon.py, Mar 2026", "Commit-attributed signal only"), + ("Est. all-GitHub daily (×5)", "=B12*5", "tCO2e/day", "Extrapolation", "Speculative"), + ("Est. all-GitHub annual (×5)", "=B13*365", "tCO2e/year", "Extrapolation", "Speculative"), + ] + + for row_data in data: + for c, v in enumerate(row_data, 1): + cell = ws.cell(row=r, column=c) + cell.value = v + if c == 2 and isinstance(v, (int, float)): + cell.fill = INPUT_FILL + cell.number_format = "#,##0" + elif c == 2 and isinstance(v, str) and v.startswith("="): + cell.fill = FORMULA_FILL + cell.number_format = "0.0" + if c >= 4: + cell.font = NOTE_FONT + cell.alignment = WRAP + r += 1 + + r += 1 + ws.cell(row=r, column=1, value="CROSS-PLATFORM (GitHub + GitLab + others)") + style_section_row(ws, r, len(headers)) + r += 1 + + platform_data = [ + ("GitHub developer usage", 0.81, "fraction", "Stack Overflow Dev Survey 2025", "Multi-select; 49K+ respondents"), + ("GitLab developer usage", 0.36, "fraction", "Stack Overflow Dev Survey 2025", "Many devs use both"), + ("Azure DevOps developer usage", 0.18, "fraction", "Stack Overflow Dev Survey 2025", "Enterprise/Microsoft shops"), + ("Est. cross-platform multiplier", "1.3–1.5×", "×", "Estimate — low confidence", "AI agents skew toward GitHub integrations"), + ] + + for row_data in platform_data: + for c, v in enumerate(row_data, 1): + cell = ws.cell(row=r, column=c) + cell.value = v + if c == 2 and isinstance(v, float): + cell.fill = INPUT_FILL + cell.number_format = "0%" + if c >= 4: + cell.font = NOTE_FONT + cell.alignment = WRAP + r += 1 + + r += 2 + ws.cell(row=r, column=1, value="IMPORTANT: All extrapolations are speculative. Primary results use directly measured public GitHub data only.") + ws.cell(row=r, column=1).font = Font(bold=True, italic=True, size=10, color="C1440E") + ws.merge_cells(f"A{r}:E{r}") + + auto_width(ws) + ws.column_dimensions["D"].width = 35 + ws.column_dimensions["E"].width = 45 + + +def build_scope_sheet(wb): + ws = wb.create_sheet("Scope & Exclusions") + ws.sheet_properties.tabColor = "B8860B" + + headers = ["Item", "Included?", "Estimated Impact", "Rationale", "Source"] + for c, h in enumerate(headers, 1): + ws.cell(row=1, column=c, value=h) + style_header_row(ws, 1, len(headers)) + + data = [ + ("Operational energy (GPU inference)", "YES", "100% of estimate", "Core of Jegham framework", "Jegham et al. 2025"), + ("Datacenter overhead (PUE)", "YES", "10-20% uplift", "Applied via PUE multiplier per provider", "Provider sustainability reports"), + ("Multi-tenant sharing", "YES", "÷4-8 reduction", "concurrent_requests parameter", "Estimate; not disclosed by providers"), + ("Node idle overhead", "YES", "+11% (at 0.90 util)", "NODE_UTILIZATION parameter", "Estimate; providers target 70-85%+"), + ("CIF uncertainty", "YES", "±15%", "CIF_BAND multiplier", "Multi-region operation"), + ("Embodied carbon (GPU mfg)", "NO", "+15-30% of lifecycle", "Excluded for simplicity", "Gupta et al. 2021 'Chasing Carbon'"), + ("Training amortization", "NO", "Variable", "Not attributable to individual commits", ""), + ("Networking and storage", "NO", "<5%", "Negligible vs GPU power", ""), + ("Market-based CIF (RECs/PPAs)", "NO", "Could reduce Google to ~0", "Location-based is conservative default", "Provider sustainability reports"), + ("Water usage (WUE)", "NO", "N/A (different unit)", "Jegham provides WUE; future enhancement", "Jegham et al. 2025"), + ("Copilot autocomplete / invisible usage", "NO", "Likely >> agent commits", "No commit trace; undetectable", ""), + ("Private repo activity", "NO (noted)", "3-6× multiplier", "See Extrapolation sheet", "GitHub Octoverse 2025"), + ("Non-GitHub platforms", "NO (noted)", "1.3-1.5× multiplier", "See Extrapolation sheet", "Stack Overflow Dev Survey 2025"), + ] + + for r, row_data in enumerate(data, 2): + for c, v in enumerate(row_data, 1): + cell = ws.cell(row=r, column=c) + cell.value = v + if c == 2: + if v == "YES": + cell.fill = PatternFill(start_color="E8F4E8", end_color="E8F4E8", fill_type="solid") + elif v.startswith("NO"): + cell.fill = PatternFill(start_color="FDE8E8", end_color="FDE8E8", fill_type="solid") + if c >= 4: + cell.font = NOTE_FONT + cell.alignment = WRAP + ws.cell(row=r, column=1).border = THIN_BORDER + + auto_width(ws) + ws.column_dimensions["D"].width = 40 + ws.column_dimensions["E"].width = 35 + + +def build_worked_example_sheet(wb): + """Full worked example for March 15, 2026 — real data, both signals.""" + ws = wb.create_sheet("Worked Example (Mar 15)") + ws.sheet_properties.tabColor = "C1440E" + + ws.merge_cells("A1:I1") + ws.cell(row=1, column=1, value="Full worked example: Saturday March 15, 2026. Real data from daily_ai_commits.csv " + "and branch_activity_daily.csv. Shows every step from raw counts to final tCO2e.") + ws.cell(row=1, column=1).font = NOTE_FONT + ws.cell(row=1, column=1).alignment = WRAP + ws.row_dimensions[1].height = 30 + + # ── PART A: Commit signal ────────────────────────────────── + r = 3 + ws.cell(row=r, column=1, value="SIGNAL 1: COMMIT ATTRIBUTION — March 15, 2026") + style_section_row(ws, r, 9) + r += 1 + + headers_a = ["Tool", "Commits", "Provider Group", "Weight", "Weighted Commits", + "kWh/commit (mid)", "kgCO2e/commit (mid)", "Daily kWh (mid)", "Daily kgCO2e (mid)"] + for c, h in enumerate(headers_a, 1): + ws.cell(row=r, column=c, value=h) + style_header_row(ws, r, len(headers_a)) + r += 1 + + # Per-commit values from estimate_carbon.py (at NODE_UTILIZATION=0.90) + kwh_mid = {"AWS / Anthropic": 1.464, "Azure / Microsoft": 0.149, "Google": 0.150, "Other / Unknown": 0.716} + kg_mid = {"AWS / Anthropic": 0.420, "Azure / Microsoft": 0.052, "Google": 0.042, "Other / Unknown": 0.286} + + from estimate_carbon import TOOL_PROVIDER_MAP, MULTI_MODEL_TOOLS + + commit_data = [ + ("Claude Code", 40519), ("Copilot SWE Agent", 16812), ("Jules (Google)", 4350), + ("Cursor", 1678), ("OpenHands", 371), ("Copilot", 314), ("OpenAI Codex", 294), + ("Cline", 237), ("Devin", 144), ("Kilo Code", 124), ("Warp (Oz Agent)", 42), + ("Aider", 29), ("Coderabbit", 23), ("ChatGPT", 13), ("Roo Code", 13), + ("Codegen", 9), ("Junie (JetBrains)", 6), ("Gemini CLI", 3), ("Qwen Coder", 2), + ] + + first_data_row = r + for tool, commits in commit_data: + if tool in MULTI_MODEL_TOOLS: + # Parent row + ws.cell(row=r, column=1, value=tool) + ws.cell(row=r, column=2, value=commits).number_format = "#,##0" + ws.cell(row=r, column=2).fill = INPUT_FILL + ws.cell(row=r, column=3, value="Multi-Model") + r += 1 + parent_row = r - 1 + for provider, weight in MULTI_MODEL_TOOLS[tool].items(): + ws.cell(row=r, column=1, value=f" → {provider}") + ws.cell(row=r, column=3, value=provider) + ws.cell(row=r, column=4, value=weight) + ws.cell(row=r, column=5, value=f"=B{parent_row}*D{r}") + ws.cell(row=r, column=5).fill = FORMULA_FILL + ws.cell(row=r, column=5).number_format = "#,##0" + ws.cell(row=r, column=6, value=kwh_mid[provider]) + ws.cell(row=r, column=7, value=kg_mid[provider]) + ws.cell(row=r, column=8, value=f"=E{r}*F{r}").fill = FORMULA_FILL + ws.cell(row=r, column=8).number_format = "#,##0.0" + ws.cell(row=r, column=9, value=f"=E{r}*G{r}").fill = FORMULA_FILL + ws.cell(row=r, column=9).number_format = "#,##0.0" + r += 1 + else: + provider = TOOL_PROVIDER_MAP.get(tool, "Other / Unknown") + ws.cell(row=r, column=1, value=tool) + ws.cell(row=r, column=2, value=commits).number_format = "#,##0" + ws.cell(row=r, column=2).fill = INPUT_FILL + ws.cell(row=r, column=3, value=provider) + ws.cell(row=r, column=4, value=1.0) + ws.cell(row=r, column=5, value=f"=B{r}*D{r}") + ws.cell(row=r, column=5).fill = FORMULA_FILL + ws.cell(row=r, column=5).number_format = "#,##0" + ws.cell(row=r, column=6, value=kwh_mid.get(provider, 0.716)) + ws.cell(row=r, column=7, value=kg_mid.get(provider, 0.286)) + ws.cell(row=r, column=8, value=f"=E{r}*F{r}").fill = FORMULA_FILL + ws.cell(row=r, column=8).number_format = "#,##0.0" + ws.cell(row=r, column=9, value=f"=E{r}*G{r}").fill = FORMULA_FILL + ws.cell(row=r, column=9).number_format = "#,##0.0" + r += 1 + + last_data_row = r - 1 + + # Totals + r += 1 + ws.cell(row=r, column=1, value="COMMIT SIGNAL TOTALS").font = SECTION_FONT + ws.cell(row=r, column=2, value=f"=SUM(B{first_data_row}:B{last_data_row})") + ws.cell(row=r, column=2).fill = FORMULA_FILL + ws.cell(row=r, column=2).number_format = "#,##0" + ws.cell(row=r, column=2).font = Font(bold=True) + ws.cell(row=r, column=8, value=f"=SUM(H{first_data_row}:H{last_data_row})") + ws.cell(row=r, column=8).fill = FORMULA_FILL + ws.cell(row=r, column=8).number_format = "#,##0.0" + ws.cell(row=r, column=8).font = Font(bold=True) + ws.cell(row=r, column=9, value=f"=SUM(I{first_data_row}:I{last_data_row})") + ws.cell(row=r, column=9).fill = FORMULA_FILL + ws.cell(row=r, column=9).number_format = "#,##0.0" + ws.cell(row=r, column=9).font = Font(bold=True) + commit_total_row = r + + r += 1 + ws.cell(row=r, column=1, value=" in tCO2e").font = Font(bold=True) + ws.cell(row=r, column=9, value=f"=I{commit_total_row}/1000") + ws.cell(row=r, column=9).fill = FORMULA_FILL + ws.cell(row=r, column=9).number_format = "0.00" + ws.cell(row=r, column=9).font = Font(bold=True) + + # ── PART B: Branch signal ────────────────────────────────── + r += 2 + ws.cell(row=r, column=1, value="SIGNAL 2: BRANCH ACTIVITY — March 15, 2026") + style_section_row(ws, r, 9) + r += 1 + + headers_b = ["Agent", "Branch Pushes", "Provider Group", "Weight", "Weighted Pushes", + "kWh/push (mid)", "kgCO2e/push (mid)", "Daily kWh (mid)", "Daily kgCO2e (mid)"] + for c, h in enumerate(headers_b, 1): + ws.cell(row=r, column=c, value=h) + style_header_row(ws, r, len(headers_b)) + r += 1 + + branch_agent_to_tool = { + "Claude Code": "Claude Code", "Codex": "OpenAI Codex", "Copilot": "Copilot", + "Cursor": "Cursor", "Devin": "Devin", "Jules": "Jules (Google)", + "Codegen": "Codegen", "Sweep": "Sweep AI", "OpenHands": "OpenHands", + "Open SWE": "OpenHands", + } + + branch_data = [ + ("Claude Code", 25342), ("Codex", 12188), ("Copilot", 11282), + ("Cursor", 1194), ("Devin", 270), ("Jules", 30), + ("Open SWE", 6), ("Codegen", 4), ("Sweep", 1), + ] + + branch_first_row = r + for agent, pushes in branch_data: + tool = branch_agent_to_tool.get(agent, agent) + if tool in MULTI_MODEL_TOOLS: + ws.cell(row=r, column=1, value=agent) + ws.cell(row=r, column=2, value=pushes).number_format = "#,##0" + ws.cell(row=r, column=2).fill = INPUT_FILL + ws.cell(row=r, column=3, value="Multi-Model") + r += 1 + parent_row = r - 1 + for provider, weight in MULTI_MODEL_TOOLS[tool].items(): + ws.cell(row=r, column=1, value=f" → {provider}") + ws.cell(row=r, column=3, value=provider) + ws.cell(row=r, column=4, value=weight) + ws.cell(row=r, column=5, value=f"=B{parent_row}*D{r}") + ws.cell(row=r, column=5).fill = FORMULA_FILL + ws.cell(row=r, column=5).number_format = "#,##0" + ws.cell(row=r, column=6, value=kwh_mid[provider]) + ws.cell(row=r, column=7, value=kg_mid[provider]) + ws.cell(row=r, column=8, value=f"=E{r}*F{r}").fill = FORMULA_FILL + ws.cell(row=r, column=8).number_format = "#,##0.0" + ws.cell(row=r, column=9, value=f"=E{r}*G{r}").fill = FORMULA_FILL + ws.cell(row=r, column=9).number_format = "#,##0.0" + r += 1 + else: + provider = TOOL_PROVIDER_MAP.get(tool, "Other / Unknown") + ws.cell(row=r, column=1, value=agent) + ws.cell(row=r, column=2, value=pushes).number_format = "#,##0" + ws.cell(row=r, column=2).fill = INPUT_FILL + ws.cell(row=r, column=3, value=provider) + ws.cell(row=r, column=4, value=1.0) + ws.cell(row=r, column=5, value=f"=B{r}*D{r}") + ws.cell(row=r, column=5).fill = FORMULA_FILL + ws.cell(row=r, column=5).number_format = "#,##0" + ws.cell(row=r, column=6, value=kwh_mid.get(provider, 0.716)) + ws.cell(row=r, column=7, value=kg_mid.get(provider, 0.286)) + ws.cell(row=r, column=8, value=f"=E{r}*F{r}").fill = FORMULA_FILL + ws.cell(row=r, column=8).number_format = "#,##0.0" + ws.cell(row=r, column=9, value=f"=E{r}*G{r}").fill = FORMULA_FILL + ws.cell(row=r, column=9).number_format = "#,##0.0" + r += 1 + + branch_last_row = r - 1 + + r += 1 + ws.cell(row=r, column=1, value="BRANCH SIGNAL TOTALS").font = SECTION_FONT + ws.cell(row=r, column=2, value=f"=SUM(B{branch_first_row}:B{branch_last_row})") + ws.cell(row=r, column=2).fill = FORMULA_FILL + ws.cell(row=r, column=2).number_format = "#,##0" + ws.cell(row=r, column=2).font = Font(bold=True) + ws.cell(row=r, column=8, value=f"=SUM(H{branch_first_row}:H{branch_last_row})") + ws.cell(row=r, column=8).fill = FORMULA_FILL + ws.cell(row=r, column=8).number_format = "#,##0.0" + ws.cell(row=r, column=8).font = Font(bold=True) + ws.cell(row=r, column=9, value=f"=SUM(I{branch_first_row}:I{branch_last_row})") + ws.cell(row=r, column=9).fill = FORMULA_FILL + ws.cell(row=r, column=9).number_format = "#,##0.0" + ws.cell(row=r, column=9).font = Font(bold=True) + branch_total_row = r + + r += 1 + ws.cell(row=r, column=1, value=" in tCO2e").font = Font(bold=True) + ws.cell(row=r, column=9, value=f"=I{branch_total_row}/1000") + ws.cell(row=r, column=9).fill = FORMULA_FILL + ws.cell(row=r, column=9).number_format = "0.00" + ws.cell(row=r, column=9).font = Font(bold=True) + + # ── PART C: Combined summary ────────────────────────────── + r += 2 + ws.cell(row=r, column=1, value="COMBINED SUMMARY — March 15, 2026") + style_section_row(ws, r, 9) + r += 1 + + summary = [ + ("Commit signal", f"=I{commit_total_row}/1000", "tCO2e"), + ("Branch signal", f"=I{branch_total_row}/1000", "tCO2e"), + ("Combined (both signals)", f"=B{r}+B{r+1}", "tCO2e"), + ("", "", ""), + ("Annualized (×365)", f"=B{r+2}*365", "tCO2e/year"), + ("Est. all-GitHub (×5)", f"=B{r+4}*5", "tCO2e/year"), + ] + + for label, val, unit in summary: + ws.cell(row=r, column=1, value=label).font = Font(bold=True) if label else Font() + cell = ws.cell(row=r, column=2, value=val) + if isinstance(val, str) and val.startswith("="): + cell.fill = FORMULA_FILL + cell.number_format = "0.0" + cell.font = Font(bold=True) + ws.cell(row=r, column=3, value=unit) + r += 1 + + r += 1 + ws.cell(row=r, column=1, value="Note: kWh/commit and kgCO2e/commit values are MID estimates. " + "This is a Saturday — weekday totals are typically 20-30% higher. " + "Branch signal uses same per-task energy as commits (1 push ≈ 1 task). " + "See Per-Commit Calculation sheet for the formula derivation.") + ws.cell(row=r, column=1).font = NOTE_FONT + ws.cell(row=r, column=1).alignment = WRAP + ws.merge_cells(f"A{r}:I{r}") + ws.row_dimensions[r].height = 40 + + auto_width(ws) + ws.column_dimensions["A"].width = 25 + ws.column_dimensions["H"].width = 18 + ws.column_dimensions["I"].width = 20 + + +def main(): + wb = openpyxl.Workbook() + + build_assumptions_sheet(wb) + build_calculation_sheet(wb) + build_daily_sheet(wb) + build_worked_example_sheet(wb) + build_extrapolation_sheet(wb) + build_scope_sheet(wb) + + wb.save(OUTPUT) + print(f"Workbook saved to {OUTPUT}") + print(f" Sheets: {', '.join(wb.sheetnames)}") + + +if __name__ == "__main__": + main() diff --git a/daily_ai_commits.csv b/daily_ai_commits.csv new file mode 100644 index 0000000..06ce963 --- /dev/null +++ b/daily_ai_commits.csv @@ -0,0 +1,15229 @@ +date,tool,view,commits,incomplete,run_id,fetched_at +2025-04-01,Aider,all,1174,,20260409T170544Z,2026-04-09T17:05:44.890314+00:00 +2025-04-01,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T17:05:44.890314+00:00 +2025-04-01,ChatGPT,all,13,,20260409T170544Z,2026-04-09T17:05:44.890314+00:00 +2025-04-01,Claude Code,all,28,,20260409T170544Z,2026-04-09T17:05:44.890314+00:00 +2025-04-01,Cline,all,60,,20260409T170544Z,2026-04-09T17:05:44.890314+00:00 +2025-04-01,Codegen,all,8,,20260409T170544Z,2026-04-09T17:05:44.890314+00:00 +2025-04-01,Coderabbit,all,3,,20260409T170544Z,2026-04-09T17:05:44.890314+00:00 +2025-04-01,Copilot,all,0,,20260409T170544Z,2026-04-09T17:05:44.890314+00:00 +2025-04-01,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T17:05:44.890314+00:00 +2025-04-01,Crush,all,0,,20260409T170544Z,2026-04-09T17:05:44.890314+00:00 +2025-04-01,Cursor,all,0,,20260409T170544Z,2026-04-09T17:05:44.890314+00:00 +2025-04-01,DeepSource,all,10,,20260409T170544Z,2026-04-09T17:05:44.890314+00:00 +2025-04-01,Devin,all,43,,20260409T170544Z,2026-04-09T17:05:44.890314+00:00 +2025-04-01,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T17:05:44.890314+00:00 +2025-04-01,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T17:05:44.890314+00:00 +2025-04-01,Gru,all,7,,20260409T170544Z,2026-04-09T17:05:44.890314+00:00 +2025-04-01,Jules (Google),all,3,,20260409T170544Z,2026-04-09T17:05:44.890314+00:00 +2025-04-01,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T17:05:44.890314+00:00 +2025-04-01,Kilo Code,all,0,,20260409T170544Z,2026-04-09T17:05:44.890314+00:00 +2025-04-01,Lovable,all,0,,20260409T170544Z,2026-04-09T17:05:44.890314+00:00 +2025-04-01,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T17:05:44.890314+00:00 +2025-04-01,OpenCode,all,0,,20260409T170544Z,2026-04-09T17:05:44.890314+00:00 +2025-04-01,OpenHands,all,192,,20260409T170544Z,2026-04-09T17:05:44.890314+00:00 +2025-04-01,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T17:05:44.890314+00:00 +2025-04-01,Roo Code,all,0,,20260409T170544Z,2026-04-09T17:05:44.890314+00:00 +2025-04-01,Sketch,all,0,,20260409T170544Z,2026-04-09T17:05:44.890314+00:00 +2025-04-01,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T17:05:44.890314+00:00 +2025-04-01,Sweep AI,all,0,,20260409T170544Z,2026-04-09T17:05:44.890314+00:00 +2025-04-01,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T17:05:44.890314+00:00 +2025-04-02,Aider,all,1293,,20260409T170544Z,2026-04-09T17:07:55.934240+00:00 +2025-04-02,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T17:07:55.934240+00:00 +2025-04-02,ChatGPT,all,1,,20260409T170544Z,2026-04-09T17:07:55.934240+00:00 +2025-04-02,Claude Code,all,7,,20260409T170544Z,2026-04-09T17:07:55.934240+00:00 +2025-04-02,Cline,all,30,,20260409T170544Z,2026-04-09T17:07:55.934240+00:00 +2025-04-02,Codegen,all,32,,20260409T170544Z,2026-04-09T17:07:55.934240+00:00 +2025-04-02,Coderabbit,all,4,,20260409T170544Z,2026-04-09T17:07:55.934240+00:00 +2025-04-02,Copilot,all,1,1,20260409T170544Z,2026-04-09T17:07:55.934240+00:00 +2025-04-02,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T17:07:55.934240+00:00 +2025-04-02,Crush,all,0,,20260409T170544Z,2026-04-09T17:07:55.934240+00:00 +2025-04-02,Cursor,all,0,,20260409T170544Z,2026-04-09T17:07:55.934240+00:00 +2025-04-02,DeepSource,all,11,,20260409T170544Z,2026-04-09T17:07:55.934240+00:00 +2025-04-02,Devin,all,15,,20260409T170544Z,2026-04-09T17:07:55.934240+00:00 +2025-04-02,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T17:07:55.934240+00:00 +2025-04-02,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T17:07:55.934240+00:00 +2025-04-02,Gru,all,0,,20260409T170544Z,2026-04-09T17:07:55.934240+00:00 +2025-04-02,Jules (Google),all,3,,20260409T170544Z,2026-04-09T17:07:55.934240+00:00 +2025-04-02,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T17:07:55.934240+00:00 +2025-04-02,Kilo Code,all,0,,20260409T170544Z,2026-04-09T17:07:55.934240+00:00 +2025-04-02,Lovable,all,0,,20260409T170544Z,2026-04-09T17:07:55.934240+00:00 +2025-04-02,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T17:07:55.934240+00:00 +2025-04-02,OpenCode,all,0,,20260409T170544Z,2026-04-09T17:07:55.934240+00:00 +2025-04-02,OpenHands,all,140,,20260409T170544Z,2026-04-09T17:07:55.934240+00:00 +2025-04-02,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T17:07:55.934240+00:00 +2025-04-02,Roo Code,all,0,,20260409T170544Z,2026-04-09T17:07:55.934240+00:00 +2025-04-02,Sketch,all,0,,20260409T170544Z,2026-04-09T17:07:55.934240+00:00 +2025-04-02,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T17:07:55.934240+00:00 +2025-04-02,Sweep AI,all,0,,20260409T170544Z,2026-04-09T17:07:55.934240+00:00 +2025-04-02,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T17:07:55.934240+00:00 +2025-04-03,Aider,all,848,,20260409T170544Z,2026-04-09T17:10:07.747195+00:00 +2025-04-03,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T17:10:07.747195+00:00 +2025-04-03,ChatGPT,all,9,,20260409T170544Z,2026-04-09T17:10:07.747195+00:00 +2025-04-03,Claude Code,all,11,,20260409T170544Z,2026-04-09T17:10:07.747195+00:00 +2025-04-03,Cline,all,23,,20260409T170544Z,2026-04-09T17:10:07.747195+00:00 +2025-04-03,Codegen,all,3,,20260409T170544Z,2026-04-09T17:10:07.747195+00:00 +2025-04-03,Coderabbit,all,3,,20260409T170544Z,2026-04-09T17:10:07.747195+00:00 +2025-04-03,Copilot,all,0,,20260409T170544Z,2026-04-09T17:10:07.747195+00:00 +2025-04-03,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T17:10:07.747195+00:00 +2025-04-03,Crush,all,0,,20260409T170544Z,2026-04-09T17:10:07.747195+00:00 +2025-04-03,Cursor,all,0,,20260409T170544Z,2026-04-09T17:10:07.747195+00:00 +2025-04-03,DeepSource,all,6,,20260409T170544Z,2026-04-09T17:10:07.747195+00:00 +2025-04-03,Devin,all,26,,20260409T170544Z,2026-04-09T17:10:07.747195+00:00 +2025-04-03,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T17:10:07.747195+00:00 +2025-04-03,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T17:10:07.747195+00:00 +2025-04-03,Gru,all,0,,20260409T170544Z,2026-04-09T17:10:07.747195+00:00 +2025-04-03,Jules (Google),all,0,,20260409T170544Z,2026-04-09T17:10:07.747195+00:00 +2025-04-03,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T17:10:07.747195+00:00 +2025-04-03,Kilo Code,all,0,,20260409T170544Z,2026-04-09T17:10:07.747195+00:00 +2025-04-03,Lovable,all,0,,20260409T170544Z,2026-04-09T17:10:07.747195+00:00 +2025-04-03,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T17:10:07.747195+00:00 +2025-04-03,OpenCode,all,0,,20260409T170544Z,2026-04-09T17:10:07.747195+00:00 +2025-04-03,OpenHands,all,95,,20260409T170544Z,2026-04-09T17:10:07.747195+00:00 +2025-04-03,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T17:10:07.747195+00:00 +2025-04-03,Roo Code,all,0,,20260409T170544Z,2026-04-09T17:10:07.747195+00:00 +2025-04-03,Sketch,all,0,,20260409T170544Z,2026-04-09T17:10:07.747195+00:00 +2025-04-03,Sourcery AI,all,2,,20260409T170544Z,2026-04-09T17:10:07.747195+00:00 +2025-04-03,Sweep AI,all,0,,20260409T170544Z,2026-04-09T17:10:07.747195+00:00 +2025-04-03,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T17:10:07.747195+00:00 +2025-04-04,Aider,all,1646,,20260409T170544Z,2026-04-09T17:12:19.431096+00:00 +2025-04-04,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T17:12:19.431096+00:00 +2025-04-04,ChatGPT,all,40,,20260409T170544Z,2026-04-09T17:12:19.431096+00:00 +2025-04-04,Claude Code,all,0,,20260409T170544Z,2026-04-09T17:12:19.431096+00:00 +2025-04-04,Cline,all,53,,20260409T170544Z,2026-04-09T17:12:19.431096+00:00 +2025-04-04,Codegen,all,0,,20260409T170544Z,2026-04-09T17:12:19.431096+00:00 +2025-04-04,Coderabbit,all,1,,20260409T170544Z,2026-04-09T17:12:19.431096+00:00 +2025-04-04,Copilot,all,0,,20260409T170544Z,2026-04-09T17:12:19.431096+00:00 +2025-04-04,Copilot SWE Agent,all,0,1,20260409T170544Z,2026-04-09T17:12:19.431096+00:00 +2025-04-04,Crush,all,0,,20260409T170544Z,2026-04-09T17:12:19.431096+00:00 +2025-04-04,Cursor,all,0,,20260409T170544Z,2026-04-09T17:12:19.431096+00:00 +2025-04-04,DeepSource,all,10,,20260409T170544Z,2026-04-09T17:12:19.431096+00:00 +2025-04-04,Devin,all,76,,20260409T170544Z,2026-04-09T17:12:19.431096+00:00 +2025-04-04,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T17:12:19.431096+00:00 +2025-04-04,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T17:12:19.431096+00:00 +2025-04-04,Gru,all,0,,20260409T170544Z,2026-04-09T17:12:19.431096+00:00 +2025-04-04,Jules (Google),all,0,,20260409T170544Z,2026-04-09T17:12:19.431096+00:00 +2025-04-04,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T17:12:19.431096+00:00 +2025-04-04,Kilo Code,all,0,,20260409T170544Z,2026-04-09T17:12:19.431096+00:00 +2025-04-04,Lovable,all,0,,20260409T170544Z,2026-04-09T17:12:19.431096+00:00 +2025-04-04,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T17:12:19.431096+00:00 +2025-04-04,OpenCode,all,0,,20260409T170544Z,2026-04-09T17:12:19.431096+00:00 +2025-04-04,OpenHands,all,55,,20260409T170544Z,2026-04-09T17:12:19.431096+00:00 +2025-04-04,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T17:12:19.431096+00:00 +2025-04-04,Roo Code,all,0,,20260409T170544Z,2026-04-09T17:12:19.431096+00:00 +2025-04-04,Sketch,all,0,,20260409T170544Z,2026-04-09T17:12:19.431096+00:00 +2025-04-04,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T17:12:19.431096+00:00 +2025-04-04,Sweep AI,all,0,,20260409T170544Z,2026-04-09T17:12:19.431096+00:00 +2025-04-04,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T17:12:19.431096+00:00 +2025-04-05,Aider,all,1120,,20260409T170544Z,2026-04-09T17:14:32.050381+00:00 +2025-04-05,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T17:14:32.050381+00:00 +2025-04-05,ChatGPT,all,15,,20260409T170544Z,2026-04-09T17:14:32.050381+00:00 +2025-04-05,Claude Code,all,2,,20260409T170544Z,2026-04-09T17:14:32.050381+00:00 +2025-04-05,Cline,all,13,,20260409T170544Z,2026-04-09T17:14:32.050381+00:00 +2025-04-05,Codegen,all,1,,20260409T170544Z,2026-04-09T17:14:32.050381+00:00 +2025-04-05,Coderabbit,all,3,,20260409T170544Z,2026-04-09T17:14:32.050381+00:00 +2025-04-05,Copilot,all,0,,20260409T170544Z,2026-04-09T17:14:32.050381+00:00 +2025-04-05,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T17:14:32.050381+00:00 +2025-04-05,Crush,all,0,,20260409T170544Z,2026-04-09T17:14:32.050381+00:00 +2025-04-05,Cursor,all,0,,20260409T170544Z,2026-04-09T17:14:32.050381+00:00 +2025-04-05,DeepSource,all,4,,20260409T170544Z,2026-04-09T17:14:32.050381+00:00 +2025-04-05,Devin,all,10,,20260409T170544Z,2026-04-09T17:14:32.050381+00:00 +2025-04-05,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T17:14:32.050381+00:00 +2025-04-05,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T17:14:32.050381+00:00 +2025-04-05,Gru,all,0,1,20260409T170544Z,2026-04-09T17:14:32.050381+00:00 +2025-04-05,Jules (Google),all,0,,20260409T170544Z,2026-04-09T17:14:32.050381+00:00 +2025-04-05,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T17:14:32.050381+00:00 +2025-04-05,Kilo Code,all,0,,20260409T170544Z,2026-04-09T17:14:32.050381+00:00 +2025-04-05,Lovable,all,0,,20260409T170544Z,2026-04-09T17:14:32.050381+00:00 +2025-04-05,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T17:14:32.050381+00:00 +2025-04-05,OpenCode,all,0,,20260409T170544Z,2026-04-09T17:14:32.050381+00:00 +2025-04-05,OpenHands,all,15,,20260409T170544Z,2026-04-09T17:14:32.050381+00:00 +2025-04-05,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T17:14:32.050381+00:00 +2025-04-05,Roo Code,all,0,,20260409T170544Z,2026-04-09T17:14:32.050381+00:00 +2025-04-05,Sketch,all,0,,20260409T170544Z,2026-04-09T17:14:32.050381+00:00 +2025-04-05,Sourcery AI,all,1,,20260409T170544Z,2026-04-09T17:14:32.050381+00:00 +2025-04-05,Sweep AI,all,0,,20260409T170544Z,2026-04-09T17:14:32.050381+00:00 +2025-04-05,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T17:14:32.050381+00:00 +2025-04-06,Aider,all,1522,,20260409T170544Z,2026-04-09T17:16:45.513267+00:00 +2025-04-06,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T17:16:45.513267+00:00 +2025-04-06,ChatGPT,all,18,,20260409T170544Z,2026-04-09T17:16:45.513267+00:00 +2025-04-06,Claude Code,all,4,,20260409T170544Z,2026-04-09T17:16:45.513267+00:00 +2025-04-06,Cline,all,11,,20260409T170544Z,2026-04-09T17:16:45.513267+00:00 +2025-04-06,Codegen,all,57,,20260409T170544Z,2026-04-09T17:16:45.513267+00:00 +2025-04-06,Coderabbit,all,0,,20260409T170544Z,2026-04-09T17:16:45.513267+00:00 +2025-04-06,Copilot,all,0,,20260409T170544Z,2026-04-09T17:16:45.513267+00:00 +2025-04-06,Copilot SWE Agent,all,1,,20260409T170544Z,2026-04-09T17:16:45.513267+00:00 +2025-04-06,Crush,all,0,,20260409T170544Z,2026-04-09T17:16:45.513267+00:00 +2025-04-06,Cursor,all,0,,20260409T170544Z,2026-04-09T17:16:45.513267+00:00 +2025-04-06,DeepSource,all,7,,20260409T170544Z,2026-04-09T17:16:45.513267+00:00 +2025-04-06,Devin,all,20,,20260409T170544Z,2026-04-09T17:16:45.513267+00:00 +2025-04-06,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T17:16:45.513267+00:00 +2025-04-06,Gemini Code Assist,all,0,1,20260409T170544Z,2026-04-09T17:16:45.513267+00:00 +2025-04-06,Gru,all,118,,20260409T170544Z,2026-04-09T17:16:45.513267+00:00 +2025-04-06,Jules (Google),all,2,,20260409T170544Z,2026-04-09T17:16:45.513267+00:00 +2025-04-06,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T17:16:45.513267+00:00 +2025-04-06,Kilo Code,all,0,,20260409T170544Z,2026-04-09T17:16:45.513267+00:00 +2025-04-06,Lovable,all,0,,20260409T170544Z,2026-04-09T17:16:45.513267+00:00 +2025-04-06,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T17:16:45.513267+00:00 +2025-04-06,OpenCode,all,0,,20260409T170544Z,2026-04-09T17:16:45.513267+00:00 +2025-04-06,OpenHands,all,140,1,20260409T170544Z,2026-04-09T17:16:45.513267+00:00 +2025-04-06,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T17:16:45.513267+00:00 +2025-04-06,Roo Code,all,0,,20260409T170544Z,2026-04-09T17:16:45.513267+00:00 +2025-04-06,Sketch,all,0,,20260409T170544Z,2026-04-09T17:16:45.513267+00:00 +2025-04-06,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T17:16:45.513267+00:00 +2025-04-06,Sweep AI,all,1,,20260409T170544Z,2026-04-09T17:16:45.513267+00:00 +2025-04-06,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T17:16:45.513267+00:00 +2025-04-07,Aider,all,1527,,20260409T170544Z,2026-04-09T17:19:59.706230+00:00 +2025-04-07,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T17:19:59.706230+00:00 +2025-04-07,ChatGPT,all,4,,20260409T170544Z,2026-04-09T17:19:59.706230+00:00 +2025-04-07,Claude Code,all,1,,20260409T170544Z,2026-04-09T17:19:59.706230+00:00 +2025-04-07,Cline,all,62,,20260409T170544Z,2026-04-09T17:19:59.706230+00:00 +2025-04-07,Codegen,all,0,,20260409T170544Z,2026-04-09T17:19:59.706230+00:00 +2025-04-07,Coderabbit,all,2,,20260409T170544Z,2026-04-09T17:19:59.706230+00:00 +2025-04-07,Copilot,all,0,1,20260409T170544Z,2026-04-09T17:19:59.706230+00:00 +2025-04-07,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T17:19:59.706230+00:00 +2025-04-07,Crush,all,0,,20260409T170544Z,2026-04-09T17:19:59.706230+00:00 +2025-04-07,Cursor,all,0,,20260409T170544Z,2026-04-09T17:19:59.706230+00:00 +2025-04-07,DeepSource,all,8,,20260409T170544Z,2026-04-09T17:19:59.706230+00:00 +2025-04-07,Devin,all,25,1,20260409T170544Z,2026-04-09T17:19:59.706230+00:00 +2025-04-07,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T17:19:59.706230+00:00 +2025-04-07,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T17:19:59.706230+00:00 +2025-04-07,Gru,all,0,,20260409T170544Z,2026-04-09T17:19:59.706230+00:00 +2025-04-07,Jules (Google),all,1,,20260409T170544Z,2026-04-09T17:19:59.706230+00:00 +2025-04-07,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T17:19:59.706230+00:00 +2025-04-07,Kilo Code,all,0,,20260409T170544Z,2026-04-09T17:19:59.706230+00:00 +2025-04-07,Lovable,all,4,,20260409T170544Z,2026-04-09T17:19:59.706230+00:00 +2025-04-07,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T17:19:59.706230+00:00 +2025-04-07,OpenCode,all,0,,20260409T170544Z,2026-04-09T17:19:59.706230+00:00 +2025-04-07,OpenHands,all,35,,20260409T170544Z,2026-04-09T17:19:59.706230+00:00 +2025-04-07,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T17:19:59.706230+00:00 +2025-04-07,Roo Code,all,0,,20260409T170544Z,2026-04-09T17:19:59.706230+00:00 +2025-04-07,Sketch,all,0,,20260409T170544Z,2026-04-09T17:19:59.706230+00:00 +2025-04-07,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T17:19:59.706230+00:00 +2025-04-07,Sweep AI,all,0,,20260409T170544Z,2026-04-09T17:19:59.706230+00:00 +2025-04-07,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T17:19:59.706230+00:00 +2025-04-08,Aider,all,1532,,20260409T170544Z,2026-04-09T17:23:12.736058+00:00 +2025-04-08,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T17:23:12.736058+00:00 +2025-04-08,ChatGPT,all,2,,20260409T170544Z,2026-04-09T17:23:12.736058+00:00 +2025-04-08,Claude Code,all,1,,20260409T170544Z,2026-04-09T17:23:12.736058+00:00 +2025-04-08,Cline,all,132,,20260409T170544Z,2026-04-09T17:23:12.736058+00:00 +2025-04-08,Codegen,all,0,,20260409T204843Z,2026-04-09T20:48:43.735058+00:00 +2025-04-08,Coderabbit,all,8,,20260409T170544Z,2026-04-09T17:23:12.736058+00:00 +2025-04-08,Copilot,all,0,1,20260409T170544Z,2026-04-09T17:23:12.736058+00:00 +2025-04-08,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T17:23:12.736058+00:00 +2025-04-08,Crush,all,0,,20260409T204843Z,2026-04-09T20:48:43.735058+00:00 +2025-04-08,Cursor,all,0,,20260409T170544Z,2026-04-09T17:23:12.736058+00:00 +2025-04-08,DeepSource,all,15,,20260409T170544Z,2026-04-09T17:23:12.736058+00:00 +2025-04-08,Devin,all,380,,20260409T170544Z,2026-04-09T17:23:12.736058+00:00 +2025-04-08,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T17:23:12.736058+00:00 +2025-04-08,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T17:23:12.736058+00:00 +2025-04-08,Gru,all,7,,20260409T204843Z,2026-04-09T20:48:43.735058+00:00 +2025-04-08,Jules (Google),all,1,1,20260409T170544Z,2026-04-09T17:23:12.736058+00:00 +2025-04-08,Junie (JetBrains),all,0,,20260409T204843Z,2026-04-09T20:48:43.735058+00:00 +2025-04-08,Kilo Code,all,0,,20260409T170544Z,2026-04-09T17:23:12.736058+00:00 +2025-04-08,Lovable,all,0,,20260409T170544Z,2026-04-09T17:23:12.736058+00:00 +2025-04-08,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T17:23:12.736058+00:00 +2025-04-08,OpenCode,all,0,,20260409T170544Z,2026-04-09T17:23:12.736058+00:00 +2025-04-08,OpenHands,all,71,1,20260409T170544Z,2026-04-09T17:23:12.736058+00:00 +2025-04-08,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T17:23:12.736058+00:00 +2025-04-08,Roo Code,all,0,,20260409T170544Z,2026-04-09T17:23:12.736058+00:00 +2025-04-08,Sketch,all,0,,20260409T204843Z,2026-04-09T20:48:43.735058+00:00 +2025-04-08,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T17:23:12.736058+00:00 +2025-04-08,Sweep AI,all,0,,20260409T170544Z,2026-04-09T17:23:12.736058+00:00 +2025-04-08,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T17:23:12.736058+00:00 +2025-04-09,Aider,all,1146,,20260409T170544Z,2026-04-09T17:28:37.528442+00:00 +2025-04-09,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T17:28:37.528442+00:00 +2025-04-09,ChatGPT,all,0,,20260409T170544Z,2026-04-09T17:28:37.528442+00:00 +2025-04-09,Claude Code,all,0,,20260409T170544Z,2026-04-09T17:28:37.528442+00:00 +2025-04-09,Cline,all,173,,20260409T170544Z,2026-04-09T17:28:37.528442+00:00 +2025-04-09,Codegen,all,0,,20260409T170544Z,2026-04-09T17:28:37.528442+00:00 +2025-04-09,Coderabbit,all,1,,20260409T170544Z,2026-04-09T17:28:37.528442+00:00 +2025-04-09,Copilot,all,0,,20260409T170544Z,2026-04-09T17:28:37.528442+00:00 +2025-04-09,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T17:28:37.528442+00:00 +2025-04-09,Crush,all,0,,20260409T170544Z,2026-04-09T17:28:37.528442+00:00 +2025-04-09,Cursor,all,0,,20260409T170544Z,2026-04-09T17:28:37.528442+00:00 +2025-04-09,DeepSource,all,23,,20260409T170544Z,2026-04-09T17:28:37.528442+00:00 +2025-04-09,Devin,all,41,,20260409T170544Z,2026-04-09T17:28:37.528442+00:00 +2025-04-09,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T17:28:37.528442+00:00 +2025-04-09,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T17:28:37.528442+00:00 +2025-04-09,Gru,all,0,,20260409T170544Z,2026-04-09T17:28:37.528442+00:00 +2025-04-09,Jules (Google),all,3,,20260409T170544Z,2026-04-09T17:28:37.528442+00:00 +2025-04-09,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T17:28:37.528442+00:00 +2025-04-09,Kilo Code,all,0,,20260409T170544Z,2026-04-09T17:28:37.528442+00:00 +2025-04-09,Lovable,all,0,,20260409T170544Z,2026-04-09T17:28:37.528442+00:00 +2025-04-09,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T17:28:37.528442+00:00 +2025-04-09,OpenCode,all,0,,20260409T170544Z,2026-04-09T17:28:37.528442+00:00 +2025-04-09,OpenHands,all,25,,20260409T170544Z,2026-04-09T17:28:37.528442+00:00 +2025-04-09,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T17:28:37.528442+00:00 +2025-04-09,Roo Code,all,0,,20260409T170544Z,2026-04-09T17:28:37.528442+00:00 +2025-04-09,Sketch,all,0,,20260409T170544Z,2026-04-09T17:28:37.528442+00:00 +2025-04-09,Sourcery AI,all,1,,20260409T170544Z,2026-04-09T17:28:37.528442+00:00 +2025-04-09,Sweep AI,all,0,,20260409T170544Z,2026-04-09T17:28:37.528442+00:00 +2025-04-09,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T17:28:37.528442+00:00 +2025-04-10,Aider,all,1426,,20260409T170544Z,2026-04-09T17:30:50.780411+00:00 +2025-04-10,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T17:30:50.780411+00:00 +2025-04-10,ChatGPT,all,3,,20260409T170544Z,2026-04-09T17:30:50.780411+00:00 +2025-04-10,Claude Code,all,5,,20260409T170544Z,2026-04-09T17:30:50.780411+00:00 +2025-04-10,Cline,all,136,,20260409T170544Z,2026-04-09T17:30:50.780411+00:00 +2025-04-10,Codegen,all,1,,20260409T170544Z,2026-04-09T17:30:50.780411+00:00 +2025-04-10,Coderabbit,all,2,,20260409T170544Z,2026-04-09T17:30:50.780411+00:00 +2025-04-10,Copilot,all,0,,20260409T170544Z,2026-04-09T17:30:50.780411+00:00 +2025-04-10,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T17:30:50.780411+00:00 +2025-04-10,Crush,all,0,,20260409T170544Z,2026-04-09T17:30:50.780411+00:00 +2025-04-10,Cursor,all,0,,20260409T170544Z,2026-04-09T17:30:50.780411+00:00 +2025-04-10,DeepSource,all,15,,20260409T170544Z,2026-04-09T17:30:50.780411+00:00 +2025-04-10,Devin,all,196,,20260409T170544Z,2026-04-09T17:30:50.780411+00:00 +2025-04-10,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T17:30:50.780411+00:00 +2025-04-10,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T17:30:50.780411+00:00 +2025-04-10,Gru,all,7,,20260409T170544Z,2026-04-09T17:30:50.780411+00:00 +2025-04-10,Jules (Google),all,1,1,20260409T170544Z,2026-04-09T17:30:50.780411+00:00 +2025-04-10,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T17:30:50.780411+00:00 +2025-04-10,Kilo Code,all,0,,20260409T170544Z,2026-04-09T17:30:50.780411+00:00 +2025-04-10,Lovable,all,0,,20260409T170544Z,2026-04-09T17:30:50.780411+00:00 +2025-04-10,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T17:30:50.780411+00:00 +2025-04-10,OpenCode,all,0,,20260409T170544Z,2026-04-09T17:30:50.780411+00:00 +2025-04-10,OpenHands,all,35,,20260409T170544Z,2026-04-09T17:30:50.780411+00:00 +2025-04-10,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T17:30:50.780411+00:00 +2025-04-10,Roo Code,all,0,,20260409T170544Z,2026-04-09T17:30:50.780411+00:00 +2025-04-10,Sketch,all,0,,20260409T170544Z,2026-04-09T17:30:50.780411+00:00 +2025-04-10,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T17:30:50.780411+00:00 +2025-04-10,Sweep AI,all,0,,20260409T170544Z,2026-04-09T17:30:50.780411+00:00 +2025-04-10,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T17:30:50.780411+00:00 +2025-04-11,Aider,all,1022,,20260409T170544Z,2026-04-09T17:33:04.569457+00:00 +2025-04-11,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T17:33:04.569457+00:00 +2025-04-11,ChatGPT,all,0,,20260409T170544Z,2026-04-09T17:33:04.569457+00:00 +2025-04-11,Claude Code,all,0,,20260409T170544Z,2026-04-09T17:33:04.569457+00:00 +2025-04-11,Cline,all,172,,20260409T170544Z,2026-04-09T17:33:04.569457+00:00 +2025-04-11,Codegen,all,0,,20260409T170544Z,2026-04-09T17:33:04.569457+00:00 +2025-04-11,Coderabbit,all,2,,20260409T170544Z,2026-04-09T17:33:04.569457+00:00 +2025-04-11,Copilot,all,0,,20260409T170544Z,2026-04-09T17:33:04.569457+00:00 +2025-04-11,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T17:33:04.569457+00:00 +2025-04-11,Crush,all,0,,20260409T170544Z,2026-04-09T17:33:04.569457+00:00 +2025-04-11,Cursor,all,0,,20260409T170544Z,2026-04-09T17:33:04.569457+00:00 +2025-04-11,DeepSource,all,26,,20260409T170544Z,2026-04-09T17:33:04.569457+00:00 +2025-04-11,Devin,all,362,,20260409T170544Z,2026-04-09T17:33:04.569457+00:00 +2025-04-11,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T17:33:04.569457+00:00 +2025-04-11,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T17:33:04.569457+00:00 +2025-04-11,Gru,all,0,,20260409T170544Z,2026-04-09T17:33:04.569457+00:00 +2025-04-11,Jules (Google),all,2,,20260409T170544Z,2026-04-09T17:33:04.569457+00:00 +2025-04-11,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T17:33:04.569457+00:00 +2025-04-11,Kilo Code,all,0,,20260409T170544Z,2026-04-09T17:33:04.569457+00:00 +2025-04-11,Lovable,all,0,,20260409T170544Z,2026-04-09T17:33:04.569457+00:00 +2025-04-11,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T17:33:04.569457+00:00 +2025-04-11,OpenCode,all,0,,20260409T170544Z,2026-04-09T17:33:04.569457+00:00 +2025-04-11,OpenHands,all,95,,20260409T170544Z,2026-04-09T17:33:04.569457+00:00 +2025-04-11,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T17:33:04.569457+00:00 +2025-04-11,Roo Code,all,0,,20260409T170544Z,2026-04-09T17:33:04.569457+00:00 +2025-04-11,Sketch,all,0,,20260409T170544Z,2026-04-09T17:33:04.569457+00:00 +2025-04-11,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T17:33:04.569457+00:00 +2025-04-11,Sweep AI,all,0,,20260409T170544Z,2026-04-09T17:33:04.569457+00:00 +2025-04-11,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T17:33:04.569457+00:00 +2025-04-12,Aider,all,1765,,20260409T170544Z,2026-04-09T17:35:17.382353+00:00 +2025-04-12,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T17:35:17.382353+00:00 +2025-04-12,ChatGPT,all,0,,20260409T170544Z,2026-04-09T17:35:17.382353+00:00 +2025-04-12,Claude Code,all,1,,20260409T170544Z,2026-04-09T17:35:17.382353+00:00 +2025-04-12,Cline,all,6,,20260409T170544Z,2026-04-09T17:35:17.382353+00:00 +2025-04-12,Codegen,all,19,,20260409T170544Z,2026-04-09T17:35:17.382353+00:00 +2025-04-12,Coderabbit,all,3,,20260409T170544Z,2026-04-09T17:35:17.382353+00:00 +2025-04-12,Copilot,all,0,,20260409T170544Z,2026-04-09T17:35:17.382353+00:00 +2025-04-12,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T17:35:17.382353+00:00 +2025-04-12,Crush,all,0,,20260409T170544Z,2026-04-09T17:35:17.382353+00:00 +2025-04-12,Cursor,all,0,,20260409T170544Z,2026-04-09T17:35:17.382353+00:00 +2025-04-12,DeepSource,all,45,,20260409T170544Z,2026-04-09T17:35:17.382353+00:00 +2025-04-12,Devin,all,239,,20260409T170544Z,2026-04-09T17:35:17.382353+00:00 +2025-04-12,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T17:35:17.382353+00:00 +2025-04-12,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T17:35:17.382353+00:00 +2025-04-12,Gru,all,0,,20260409T170544Z,2026-04-09T17:35:17.382353+00:00 +2025-04-12,Jules (Google),all,14,,20260409T170544Z,2026-04-09T17:35:17.382353+00:00 +2025-04-12,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T17:35:17.382353+00:00 +2025-04-12,Kilo Code,all,0,,20260409T204843Z,2026-04-09T20:49:05.953190+00:00 +2025-04-12,Lovable,all,0,,20260409T170544Z,2026-04-09T17:35:17.382353+00:00 +2025-04-12,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T17:35:17.382353+00:00 +2025-04-12,OpenCode,all,0,,20260409T170544Z,2026-04-09T17:35:17.382353+00:00 +2025-04-12,OpenHands,all,75,,20260409T170544Z,2026-04-09T17:35:17.382353+00:00 +2025-04-12,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T17:35:17.382353+00:00 +2025-04-12,Roo Code,all,0,,20260409T170544Z,2026-04-09T17:35:17.382353+00:00 +2025-04-12,Sketch,all,0,,20260409T170544Z,2026-04-09T17:35:17.382353+00:00 +2025-04-12,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T17:35:17.382353+00:00 +2025-04-12,Sweep AI,all,0,,20260409T170544Z,2026-04-09T17:35:17.382353+00:00 +2025-04-12,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T17:35:17.382353+00:00 +2025-04-13,Aider,all,3449,,20260409T204843Z,2026-04-09T20:49:10.357046+00:00 +2025-04-13,Amp (Sourcegraph),all,0,,20260409T204843Z,2026-04-09T20:49:10.357046+00:00 +2025-04-13,ChatGPT,all,68,,20260409T204843Z,2026-04-09T20:49:10.357046+00:00 +2025-04-13,Claude Code,all,5,,20260409T204843Z,2026-04-09T20:49:10.357046+00:00 +2025-04-13,Cline,all,12,,20260409T204843Z,2026-04-09T20:49:10.357046+00:00 +2025-04-13,Codegen,all,0,,20260409T204843Z,2026-04-09T20:49:10.357046+00:00 +2025-04-13,Coderabbit,all,2,,20260409T204843Z,2026-04-09T20:49:10.357046+00:00 +2025-04-13,Copilot,all,0,,20260409T204843Z,2026-04-09T20:49:10.357046+00:00 +2025-04-13,Copilot SWE Agent,all,0,,20260409T204843Z,2026-04-09T20:49:10.357046+00:00 +2025-04-13,Crush,all,0,,20260409T204843Z,2026-04-09T20:49:10.357046+00:00 +2025-04-13,Cursor,all,0,,20260409T204843Z,2026-04-09T20:49:10.357046+00:00 +2025-04-13,DeepSource,all,4,,20260409T204843Z,2026-04-09T20:49:10.357046+00:00 +2025-04-13,Devin,all,36,1,20260409T170544Z,2026-04-09T17:39:10.338088+00:00 +2025-04-13,Gemini CLI,all,0,,20260409T204843Z,2026-04-09T20:49:10.357046+00:00 +2025-04-13,Gemini Code Assist,all,0,,20260409T204843Z,2026-04-09T20:49:10.357046+00:00 +2025-04-13,Gru,all,0,,20260409T204843Z,2026-04-09T20:49:10.357046+00:00 +2025-04-13,Jules (Google),all,9,,20260409T204843Z,2026-04-09T20:49:10.357046+00:00 +2025-04-13,Junie (JetBrains),all,0,,20260409T204843Z,2026-04-09T20:49:10.357046+00:00 +2025-04-13,Kilo Code,all,0,,20260409T204843Z,2026-04-09T20:49:10.357046+00:00 +2025-04-13,Lovable,all,0,,20260409T170544Z,2026-04-09T17:39:10.338088+00:00 +2025-04-13,OpenAI Codex,all,0,,20260409T204843Z,2026-04-09T20:49:10.357046+00:00 +2025-04-13,OpenCode,all,0,,20260409T204843Z,2026-04-09T20:49:10.357046+00:00 +2025-04-13,OpenHands,all,19,,20260409T204843Z,2026-04-09T20:49:10.357046+00:00 +2025-04-13,Qwen Coder,all,0,,20260409T204843Z,2026-04-09T20:49:10.357046+00:00 +2025-04-13,Roo Code,all,0,,20260409T204843Z,2026-04-09T20:49:10.357046+00:00 +2025-04-13,Sketch,all,0,,20260409T204843Z,2026-04-09T20:49:10.357046+00:00 +2025-04-13,Sourcery AI,all,0,,20260409T204843Z,2026-04-09T20:49:10.357046+00:00 +2025-04-13,Sweep AI,all,12,,20260409T204843Z,2026-04-09T20:49:10.357046+00:00 +2025-04-13,Warp (Oz Agent),all,0,,20260409T204843Z,2026-04-09T20:49:10.357046+00:00 +2025-04-14,Aider,all,1728,,20260409T204843Z,2026-04-09T20:51:11.146348+00:00 +2025-04-14,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T17:46:17.875082+00:00 +2025-04-14,ChatGPT,all,97,,20260409T204843Z,2026-04-09T20:51:11.146348+00:00 +2025-04-14,Claude Code,all,2,,20260409T204843Z,2026-04-09T20:51:11.146348+00:00 +2025-04-14,Cline,all,6,,20260409T204843Z,2026-04-09T20:51:11.146348+00:00 +2025-04-14,Codegen,all,0,,20260409T170544Z,2026-04-09T17:46:17.875082+00:00 +2025-04-14,Coderabbit,all,1,,20260409T204843Z,2026-04-09T20:51:11.146348+00:00 +2025-04-14,Copilot,all,0,,20260409T204843Z,2026-04-09T20:51:11.146348+00:00 +2025-04-14,Copilot SWE Agent,all,0,1,20260409T204843Z,2026-04-09T20:51:11.146348+00:00 +2025-04-14,Crush,all,0,,20260409T170544Z,2026-04-09T17:46:17.875082+00:00 +2025-04-14,Cursor,all,0,,20260409T204843Z,2026-04-09T20:51:11.146348+00:00 +2025-04-14,DeepSource,all,3,,20260409T204843Z,2026-04-09T20:51:11.146348+00:00 +2025-04-14,Devin,all,1074,,20260409T204843Z,2026-04-09T20:51:11.146348+00:00 +2025-04-14,Gemini CLI,all,0,,20260409T204843Z,2026-04-09T20:51:11.146348+00:00 +2025-04-14,Gemini Code Assist,all,0,,20260409T204843Z,2026-04-09T20:51:11.146348+00:00 +2025-04-14,Gru,all,0,,20260409T204843Z,2026-04-09T20:51:11.146348+00:00 +2025-04-14,Jules (Google),all,5,,20260409T204843Z,2026-04-09T20:51:11.146348+00:00 +2025-04-14,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T17:46:17.875082+00:00 +2025-04-14,Kilo Code,all,0,,20260409T170544Z,2026-04-09T17:46:17.875082+00:00 +2025-04-14,Lovable,all,0,,20260409T204843Z,2026-04-09T20:51:11.146348+00:00 +2025-04-14,OpenAI Codex,all,0,,20260409T204843Z,2026-04-09T20:51:11.146348+00:00 +2025-04-14,OpenCode,all,0,,20260409T204843Z,2026-04-09T20:51:11.146348+00:00 +2025-04-14,OpenHands,all,39,,20260409T204843Z,2026-04-09T20:51:11.146348+00:00 +2025-04-14,Qwen Coder,all,0,,20260409T204843Z,2026-04-09T20:51:11.146348+00:00 +2025-04-14,Roo Code,all,0,,20260409T204843Z,2026-04-09T20:51:11.146348+00:00 +2025-04-14,Sketch,all,0,,20260409T170544Z,2026-04-09T17:46:17.875082+00:00 +2025-04-14,Sourcery AI,all,0,,20260409T204843Z,2026-04-09T20:51:11.146348+00:00 +2025-04-14,Sweep AI,all,1,,20260409T204843Z,2026-04-09T20:51:11.146348+00:00 +2025-04-14,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T17:46:17.875082+00:00 +2025-04-15,Aider,all,1133,,20260409T170544Z,2026-04-09T17:48:29.344526+00:00 +2025-04-15,Amp (Sourcegraph),all,0,,20260409T204843Z,2026-04-09T20:52:49.900973+00:00 +2025-04-15,ChatGPT,all,24,,20260409T170544Z,2026-04-09T17:48:29.344526+00:00 +2025-04-15,Claude Code,all,0,,20260409T170544Z,2026-04-09T17:48:29.344526+00:00 +2025-04-15,Cline,all,16,,20260409T170544Z,2026-04-09T17:48:29.344526+00:00 +2025-04-15,Codegen,all,7,,20260409T204843Z,2026-04-09T20:52:49.900973+00:00 +2025-04-15,Coderabbit,all,2,,20260409T170544Z,2026-04-09T17:48:29.344526+00:00 +2025-04-15,Copilot,all,0,,20260409T170544Z,2026-04-09T17:48:29.344526+00:00 +2025-04-15,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T17:48:29.344526+00:00 +2025-04-15,Crush,all,0,,20260409T204843Z,2026-04-09T20:52:49.900973+00:00 +2025-04-15,Cursor,all,0,,20260409T170544Z,2026-04-09T17:48:29.344526+00:00 +2025-04-15,DeepSource,all,12,,20260409T170544Z,2026-04-09T17:48:29.344526+00:00 +2025-04-15,Devin,all,58,1,20260409T170544Z,2026-04-09T17:48:29.344526+00:00 +2025-04-15,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T17:48:29.344526+00:00 +2025-04-15,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T17:48:29.344526+00:00 +2025-04-15,Gru,all,7,,20260409T204843Z,2026-04-09T20:52:49.900973+00:00 +2025-04-15,Jules (Google),all,13,,20260409T170544Z,2026-04-09T17:48:29.344526+00:00 +2025-04-15,Junie (JetBrains),all,0,,20260409T204843Z,2026-04-09T20:52:49.900973+00:00 +2025-04-15,Kilo Code,all,0,,20260409T204843Z,2026-04-09T20:52:49.900973+00:00 +2025-04-15,Lovable,all,3,,20260409T170544Z,2026-04-09T17:48:29.344526+00:00 +2025-04-15,OpenAI Codex,all,0,,20260409T204843Z,2026-04-09T20:52:49.900973+00:00 +2025-04-15,OpenCode,all,0,,20260409T170544Z,2026-04-09T17:48:29.344526+00:00 +2025-04-15,OpenHands,all,137,,20260409T170544Z,2026-04-09T17:48:29.344526+00:00 +2025-04-15,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T17:48:29.344526+00:00 +2025-04-15,Roo Code,all,0,,20260409T170544Z,2026-04-09T17:48:29.344526+00:00 +2025-04-15,Sketch,all,0,,20260409T204843Z,2026-04-09T20:52:49.900973+00:00 +2025-04-15,Sourcery AI,all,1,,20260409T170544Z,2026-04-09T17:48:29.344526+00:00 +2025-04-15,Sweep AI,all,2,,20260409T170544Z,2026-04-09T17:48:29.344526+00:00 +2025-04-15,Warp (Oz Agent),all,0,,20260409T204843Z,2026-04-09T20:52:49.900973+00:00 +2025-04-16,Aider,all,953,,20260409T204843Z,2026-04-09T20:53:30.469712+00:00 +2025-04-16,Amp (Sourcegraph),all,0,,20260409T204843Z,2026-04-09T20:53:30.469712+00:00 +2025-04-16,ChatGPT,all,0,,20260409T204843Z,2026-04-09T20:53:30.469712+00:00 +2025-04-16,Claude Code,all,1,,20260409T204843Z,2026-04-09T20:53:30.469712+00:00 +2025-04-16,Cline,all,48,,20260409T204843Z,2026-04-09T20:53:30.469712+00:00 +2025-04-16,Codegen,all,9,,20260409T204843Z,2026-04-09T20:53:30.469712+00:00 +2025-04-16,Coderabbit,all,2,,20260409T204843Z,2026-04-09T20:53:30.469712+00:00 +2025-04-16,Copilot,all,10,,20260409T204843Z,2026-04-09T20:53:30.469712+00:00 +2025-04-16,Copilot SWE Agent,all,0,,20260409T204843Z,2026-04-09T20:53:30.469712+00:00 +2025-04-16,Crush,all,0,,20260409T204843Z,2026-04-09T20:53:30.469712+00:00 +2025-04-16,Cursor,all,0,,20260409T204843Z,2026-04-09T20:53:30.469712+00:00 +2025-04-16,DeepSource,all,27,,20260409T204843Z,2026-04-09T20:53:30.469712+00:00 +2025-04-16,Devin,all,84,,20260409T204843Z,2026-04-09T20:53:30.469712+00:00 +2025-04-16,Gemini CLI,all,0,,20260409T204843Z,2026-04-09T20:53:30.469712+00:00 +2025-04-16,Gemini Code Assist,all,0,,20260409T204843Z,2026-04-09T20:53:30.469712+00:00 +2025-04-16,Gru,all,7,,20260409T204843Z,2026-04-09T20:53:30.469712+00:00 +2025-04-16,Jules (Google),all,0,,20260409T204843Z,2026-04-09T20:53:30.469712+00:00 +2025-04-16,Junie (JetBrains),all,0,,20260409T204843Z,2026-04-09T20:53:30.469712+00:00 +2025-04-16,Kilo Code,all,0,,20260409T204843Z,2026-04-09T20:53:30.469712+00:00 +2025-04-16,Lovable,all,0,,20260409T204843Z,2026-04-09T20:53:30.469712+00:00 +2025-04-16,OpenAI Codex,all,0,,20260409T204843Z,2026-04-09T20:53:30.469712+00:00 +2025-04-16,OpenCode,all,0,,20260409T204843Z,2026-04-09T20:53:30.469712+00:00 +2025-04-16,OpenHands,all,105,,20260409T204843Z,2026-04-09T20:53:30.469712+00:00 +2025-04-16,Qwen Coder,all,0,,20260409T204843Z,2026-04-09T20:53:30.469712+00:00 +2025-04-16,Roo Code,all,0,,20260409T204843Z,2026-04-09T20:53:30.469712+00:00 +2025-04-16,Sketch,all,0,,20260409T204843Z,2026-04-09T20:53:30.469712+00:00 +2025-04-16,Sourcery AI,all,0,1,20260409T204843Z,2026-04-09T20:53:30.469712+00:00 +2025-04-16,Sweep AI,all,0,,20260409T204843Z,2026-04-09T20:53:30.469712+00:00 +2025-04-16,Warp (Oz Agent),all,0,,20260409T204843Z,2026-04-09T20:53:30.469712+00:00 +2025-04-17,Aider,all,933,,20260409T170544Z,2026-04-09T17:53:44.409784+00:00 +2025-04-17,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T17:53:44.409784+00:00 +2025-04-17,ChatGPT,all,0,,20260409T170544Z,2026-04-09T17:53:44.409784+00:00 +2025-04-17,Claude Code,all,19,,20260409T204843Z,2026-04-09T20:55:41.284950+00:00 +2025-04-17,Cline,all,75,,20260409T170544Z,2026-04-09T17:53:44.409784+00:00 +2025-04-17,Codegen,all,21,,20260409T170544Z,2026-04-09T17:53:44.409784+00:00 +2025-04-17,Coderabbit,all,3,,20260409T170544Z,2026-04-09T17:53:44.409784+00:00 +2025-04-17,Copilot,all,3,,20260409T204843Z,2026-04-09T20:55:41.284950+00:00 +2025-04-17,Copilot SWE Agent,all,0,,20260409T204843Z,2026-04-09T20:55:41.284950+00:00 +2025-04-17,Crush,all,0,,20260409T170544Z,2026-04-09T17:53:44.409784+00:00 +2025-04-17,Cursor,all,0,,20260409T170544Z,2026-04-09T17:53:44.409784+00:00 +2025-04-17,DeepSource,all,41,,20260409T170544Z,2026-04-09T17:53:44.409784+00:00 +2025-04-17,Devin,all,21,,20260409T170544Z,2026-04-09T17:53:44.409784+00:00 +2025-04-17,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T17:53:44.409784+00:00 +2025-04-17,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T17:53:44.409784+00:00 +2025-04-17,Gru,all,0,1,20260409T170544Z,2026-04-09T17:53:44.409784+00:00 +2025-04-17,Jules (Google),all,1,,20260409T170544Z,2026-04-09T17:53:44.409784+00:00 +2025-04-17,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T17:53:44.409784+00:00 +2025-04-17,Kilo Code,all,0,,20260409T170544Z,2026-04-09T17:53:44.409784+00:00 +2025-04-17,Lovable,all,0,,20260409T170544Z,2026-04-09T17:53:44.409784+00:00 +2025-04-17,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T17:53:44.409784+00:00 +2025-04-17,OpenCode,all,0,,20260409T170544Z,2026-04-09T17:53:44.409784+00:00 +2025-04-17,OpenHands,all,142,,20260409T170544Z,2026-04-09T17:53:44.409784+00:00 +2025-04-17,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T17:53:44.409784+00:00 +2025-04-17,Roo Code,all,0,,20260409T170544Z,2026-04-09T17:53:44.409784+00:00 +2025-04-17,Sketch,all,0,,20260409T170544Z,2026-04-09T17:53:44.409784+00:00 +2025-04-17,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T17:53:44.409784+00:00 +2025-04-17,Sweep AI,all,0,,20260409T170544Z,2026-04-09T17:53:44.409784+00:00 +2025-04-17,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T17:53:44.409784+00:00 +2025-04-18,Aider,all,1309,,20260409T170544Z,2026-04-09T17:55:54.999792+00:00 +2025-04-18,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T17:55:54.999792+00:00 +2025-04-18,ChatGPT,all,6,,20260409T170544Z,2026-04-09T17:55:54.999792+00:00 +2025-04-18,Claude Code,all,30,,20260409T170544Z,2026-04-09T17:55:54.999792+00:00 +2025-04-18,Cline,all,111,,20260409T170544Z,2026-04-09T17:55:54.999792+00:00 +2025-04-18,Codegen,all,1,,20260409T170544Z,2026-04-09T17:55:54.999792+00:00 +2025-04-18,Coderabbit,all,6,,20260409T170544Z,2026-04-09T17:55:54.999792+00:00 +2025-04-18,Copilot,all,12,,20260409T170544Z,2026-04-09T17:55:54.999792+00:00 +2025-04-18,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T17:55:54.999792+00:00 +2025-04-18,Crush,all,0,,20260409T170544Z,2026-04-09T17:55:54.999792+00:00 +2025-04-18,Cursor,all,0,,20260409T170544Z,2026-04-09T17:55:54.999792+00:00 +2025-04-18,DeepSource,all,3,,20260409T170544Z,2026-04-09T17:55:54.999792+00:00 +2025-04-18,Devin,all,12,,20260409T170544Z,2026-04-09T17:55:54.999792+00:00 +2025-04-18,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T17:55:54.999792+00:00 +2025-04-18,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T17:55:54.999792+00:00 +2025-04-18,Gru,all,0,,20260409T170544Z,2026-04-09T17:55:54.999792+00:00 +2025-04-18,Jules (Google),all,20,,20260409T170544Z,2026-04-09T17:55:54.999792+00:00 +2025-04-18,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T17:55:54.999792+00:00 +2025-04-18,Kilo Code,all,0,,20260409T170544Z,2026-04-09T17:55:54.999792+00:00 +2025-04-18,Lovable,all,2,,20260409T170544Z,2026-04-09T17:55:54.999792+00:00 +2025-04-18,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T17:55:54.999792+00:00 +2025-04-18,OpenCode,all,0,,20260409T170544Z,2026-04-09T17:55:54.999792+00:00 +2025-04-18,OpenHands,all,42,,20260409T170544Z,2026-04-09T17:55:54.999792+00:00 +2025-04-18,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T17:55:54.999792+00:00 +2025-04-18,Roo Code,all,0,,20260409T170544Z,2026-04-09T17:55:54.999792+00:00 +2025-04-18,Sketch,all,0,,20260409T170544Z,2026-04-09T17:55:54.999792+00:00 +2025-04-18,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T17:55:54.999792+00:00 +2025-04-18,Sweep AI,all,0,,20260409T170544Z,2026-04-09T17:55:54.999792+00:00 +2025-04-18,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T17:55:54.999792+00:00 +2025-04-19,Aider,all,1089,,20260409T170544Z,2026-04-09T17:58:06.943702+00:00 +2025-04-19,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T17:58:06.943702+00:00 +2025-04-19,ChatGPT,all,5,,20260409T170544Z,2026-04-09T17:58:06.943702+00:00 +2025-04-19,Claude Code,all,16,,20260409T170544Z,2026-04-09T17:58:06.943702+00:00 +2025-04-19,Cline,all,4,,20260409T170544Z,2026-04-09T17:58:06.943702+00:00 +2025-04-19,Codegen,all,2,,20260409T170544Z,2026-04-09T17:58:06.943702+00:00 +2025-04-19,Coderabbit,all,0,,20260409T170544Z,2026-04-09T17:58:06.943702+00:00 +2025-04-19,Copilot,all,3,,20260409T170544Z,2026-04-09T17:58:06.943702+00:00 +2025-04-19,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T17:58:06.943702+00:00 +2025-04-19,Crush,all,0,,20260409T170544Z,2026-04-09T17:58:06.943702+00:00 +2025-04-19,Cursor,all,0,,20260409T170544Z,2026-04-09T17:58:06.943702+00:00 +2025-04-19,DeepSource,all,10,,20260409T170544Z,2026-04-09T17:58:06.943702+00:00 +2025-04-19,Devin,all,9,,20260409T170544Z,2026-04-09T17:58:06.943702+00:00 +2025-04-19,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T17:58:06.943702+00:00 +2025-04-19,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T17:58:06.943702+00:00 +2025-04-19,Gru,all,0,,20260409T170544Z,2026-04-09T17:58:06.943702+00:00 +2025-04-19,Jules (Google),all,0,,20260409T170544Z,2026-04-09T17:58:06.943702+00:00 +2025-04-19,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T17:58:06.943702+00:00 +2025-04-19,Kilo Code,all,0,,20260409T170544Z,2026-04-09T17:58:06.943702+00:00 +2025-04-19,Lovable,all,0,,20260409T170544Z,2026-04-09T17:58:06.943702+00:00 +2025-04-19,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T17:58:06.943702+00:00 +2025-04-19,OpenCode,all,0,,20260409T170544Z,2026-04-09T17:58:06.943702+00:00 +2025-04-19,OpenHands,all,155,,20260409T170544Z,2026-04-09T17:58:06.943702+00:00 +2025-04-19,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T17:58:06.943702+00:00 +2025-04-19,Roo Code,all,0,,20260409T170544Z,2026-04-09T17:58:06.943702+00:00 +2025-04-19,Sketch,all,0,,20260409T170544Z,2026-04-09T17:58:06.943702+00:00 +2025-04-19,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T17:58:06.943702+00:00 +2025-04-19,Sweep AI,all,0,,20260409T170544Z,2026-04-09T17:58:06.943702+00:00 +2025-04-19,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T17:58:06.943702+00:00 +2025-04-20,Aider,all,1755,,20260409T170544Z,2026-04-09T18:00:18.580018+00:00 +2025-04-20,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T18:00:18.580018+00:00 +2025-04-20,ChatGPT,all,0,,20260409T170544Z,2026-04-09T18:00:18.580018+00:00 +2025-04-20,Claude Code,all,2,,20260409T170544Z,2026-04-09T18:00:18.580018+00:00 +2025-04-20,Cline,all,12,,20260409T170544Z,2026-04-09T18:00:18.580018+00:00 +2025-04-20,Codegen,all,2,,20260409T170544Z,2026-04-09T18:00:18.580018+00:00 +2025-04-20,Coderabbit,all,4,,20260409T170544Z,2026-04-09T18:00:18.580018+00:00 +2025-04-20,Copilot,all,2,,20260409T170544Z,2026-04-09T18:00:18.580018+00:00 +2025-04-20,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T18:00:18.580018+00:00 +2025-04-20,Crush,all,0,,20260409T170544Z,2026-04-09T18:00:18.580018+00:00 +2025-04-20,Cursor,all,0,,20260409T170544Z,2026-04-09T18:00:18.580018+00:00 +2025-04-20,DeepSource,all,4,,20260409T170544Z,2026-04-09T18:00:18.580018+00:00 +2025-04-20,Devin,all,37,,20260409T170544Z,2026-04-09T18:00:18.580018+00:00 +2025-04-20,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T18:00:18.580018+00:00 +2025-04-20,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T18:00:18.580018+00:00 +2025-04-20,Gru,all,7,,20260409T170544Z,2026-04-09T18:00:18.580018+00:00 +2025-04-20,Jules (Google),all,1,,20260409T170544Z,2026-04-09T18:00:18.580018+00:00 +2025-04-20,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T18:00:18.580018+00:00 +2025-04-20,Kilo Code,all,0,,20260409T170544Z,2026-04-09T18:00:18.580018+00:00 +2025-04-20,Lovable,all,0,,20260409T170544Z,2026-04-09T18:00:18.580018+00:00 +2025-04-20,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T18:00:18.580018+00:00 +2025-04-20,OpenCode,all,0,,20260409T170544Z,2026-04-09T18:00:18.580018+00:00 +2025-04-20,OpenHands,all,176,,20260409T170544Z,2026-04-09T18:00:18.580018+00:00 +2025-04-20,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T18:00:18.580018+00:00 +2025-04-20,Roo Code,all,0,,20260409T170544Z,2026-04-09T18:00:18.580018+00:00 +2025-04-20,Sketch,all,0,,20260409T170544Z,2026-04-09T18:00:18.580018+00:00 +2025-04-20,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T18:00:18.580018+00:00 +2025-04-20,Sweep AI,all,0,,20260409T170544Z,2026-04-09T18:00:18.580018+00:00 +2025-04-20,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T18:00:18.580018+00:00 +2025-04-21,Aider,all,850,,20260409T170544Z,2026-04-09T18:02:30.870675+00:00 +2025-04-21,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T18:02:30.870675+00:00 +2025-04-21,ChatGPT,all,0,,20260409T170544Z,2026-04-09T18:02:30.870675+00:00 +2025-04-21,Claude Code,all,1,,20260409T170544Z,2026-04-09T18:02:30.870675+00:00 +2025-04-21,Cline,all,275,,20260409T170544Z,2026-04-09T18:02:30.870675+00:00 +2025-04-21,Codegen,all,2,,20260409T170544Z,2026-04-09T18:02:30.870675+00:00 +2025-04-21,Coderabbit,all,4,,20260409T170544Z,2026-04-09T18:02:30.870675+00:00 +2025-04-21,Copilot,all,2,,20260409T170544Z,2026-04-09T18:02:30.870675+00:00 +2025-04-21,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T18:02:30.870675+00:00 +2025-04-21,Crush,all,0,,20260409T170544Z,2026-04-09T18:02:30.870675+00:00 +2025-04-21,Cursor,all,0,,20260409T170544Z,2026-04-09T18:02:30.870675+00:00 +2025-04-21,DeepSource,all,15,,20260409T170544Z,2026-04-09T18:02:30.870675+00:00 +2025-04-21,Devin,all,29,,20260409T170544Z,2026-04-09T18:02:30.870675+00:00 +2025-04-21,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T18:02:30.870675+00:00 +2025-04-21,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T18:02:30.870675+00:00 +2025-04-21,Gru,all,0,,20260409T170544Z,2026-04-09T18:02:30.870675+00:00 +2025-04-21,Jules (Google),all,0,,20260409T170544Z,2026-04-09T18:02:30.870675+00:00 +2025-04-21,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T18:02:30.870675+00:00 +2025-04-21,Kilo Code,all,0,,20260409T170544Z,2026-04-09T18:02:30.870675+00:00 +2025-04-21,Lovable,all,0,,20260409T170544Z,2026-04-09T18:02:30.870675+00:00 +2025-04-21,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T18:02:30.870675+00:00 +2025-04-21,OpenCode,all,0,,20260409T170544Z,2026-04-09T18:02:30.870675+00:00 +2025-04-21,OpenHands,all,96,,20260409T170544Z,2026-04-09T18:02:30.870675+00:00 +2025-04-21,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T18:02:30.870675+00:00 +2025-04-21,Roo Code,all,0,,20260409T170544Z,2026-04-09T18:02:30.870675+00:00 +2025-04-21,Sketch,all,0,,20260409T170544Z,2026-04-09T18:02:30.870675+00:00 +2025-04-21,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T18:02:30.870675+00:00 +2025-04-21,Sweep AI,all,0,,20260409T170544Z,2026-04-09T18:02:30.870675+00:00 +2025-04-21,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T18:02:30.870675+00:00 +2025-04-22,Aider,all,890,,20260409T170544Z,2026-04-09T18:04:43.014768+00:00 +2025-04-22,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T18:04:43.014768+00:00 +2025-04-22,ChatGPT,all,21,,20260409T170544Z,2026-04-09T18:04:43.014768+00:00 +2025-04-22,Claude Code,all,49,,20260409T170544Z,2026-04-09T18:04:43.014768+00:00 +2025-04-22,Cline,all,153,,20260409T170544Z,2026-04-09T18:04:43.014768+00:00 +2025-04-22,Codegen,all,2,,20260409T170544Z,2026-04-09T18:04:43.014768+00:00 +2025-04-22,Coderabbit,all,9,,20260409T170544Z,2026-04-09T18:04:43.014768+00:00 +2025-04-22,Copilot,all,0,,20260409T170544Z,2026-04-09T18:04:43.014768+00:00 +2025-04-22,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T18:04:43.014768+00:00 +2025-04-22,Crush,all,0,,20260409T170544Z,2026-04-09T18:04:43.014768+00:00 +2025-04-22,Cursor,all,0,,20260409T170544Z,2026-04-09T18:04:43.014768+00:00 +2025-04-22,DeepSource,all,6,,20260409T170544Z,2026-04-09T18:04:43.014768+00:00 +2025-04-22,Devin,all,181,,20260409T170544Z,2026-04-09T18:04:43.014768+00:00 +2025-04-22,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T18:04:43.014768+00:00 +2025-04-22,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T18:04:43.014768+00:00 +2025-04-22,Gru,all,11,,20260409T170544Z,2026-04-09T18:04:43.014768+00:00 +2025-04-22,Jules (Google),all,16,,20260409T170544Z,2026-04-09T18:04:43.014768+00:00 +2025-04-22,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T18:04:43.014768+00:00 +2025-04-22,Kilo Code,all,0,,20260409T170544Z,2026-04-09T18:04:43.014768+00:00 +2025-04-22,Lovable,all,0,,20260409T170544Z,2026-04-09T18:04:43.014768+00:00 +2025-04-22,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T18:04:43.014768+00:00 +2025-04-22,OpenCode,all,0,,20260409T170544Z,2026-04-09T18:04:43.014768+00:00 +2025-04-22,OpenHands,all,158,,20260409T170544Z,2026-04-09T18:04:43.014768+00:00 +2025-04-22,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T18:04:43.014768+00:00 +2025-04-22,Roo Code,all,0,,20260409T170544Z,2026-04-09T18:04:43.014768+00:00 +2025-04-22,Sketch,all,0,,20260409T170544Z,2026-04-09T18:04:43.014768+00:00 +2025-04-22,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T18:04:43.014768+00:00 +2025-04-22,Sweep AI,all,4,,20260409T170544Z,2026-04-09T18:04:43.014768+00:00 +2025-04-22,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T18:04:43.014768+00:00 +2025-04-23,Aider,all,1272,,20260409T170544Z,2026-04-09T18:06:55.896471+00:00 +2025-04-23,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T18:06:55.896471+00:00 +2025-04-23,ChatGPT,all,20,,20260409T170544Z,2026-04-09T18:06:55.896471+00:00 +2025-04-23,Claude Code,all,43,,20260409T170544Z,2026-04-09T18:06:55.896471+00:00 +2025-04-23,Cline,all,152,,20260409T170544Z,2026-04-09T18:06:55.896471+00:00 +2025-04-23,Codegen,all,21,,20260409T170544Z,2026-04-09T18:06:55.896471+00:00 +2025-04-23,Coderabbit,all,10,,20260409T170544Z,2026-04-09T18:06:55.896471+00:00 +2025-04-23,Copilot,all,0,,20260409T170544Z,2026-04-09T18:06:55.896471+00:00 +2025-04-23,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T18:06:55.896471+00:00 +2025-04-23,Crush,all,0,,20260409T170544Z,2026-04-09T18:06:55.896471+00:00 +2025-04-23,Cursor,all,0,,20260409T170544Z,2026-04-09T18:06:55.896471+00:00 +2025-04-23,DeepSource,all,9,,20260409T170544Z,2026-04-09T18:06:55.896471+00:00 +2025-04-23,Devin,all,182,,20260409T170544Z,2026-04-09T18:06:55.896471+00:00 +2025-04-23,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T18:06:55.896471+00:00 +2025-04-23,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T18:06:55.896471+00:00 +2025-04-23,Gru,all,7,,20260409T170544Z,2026-04-09T18:06:55.896471+00:00 +2025-04-23,Jules (Google),all,11,,20260409T170544Z,2026-04-09T18:06:55.896471+00:00 +2025-04-23,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T18:06:55.896471+00:00 +2025-04-23,Kilo Code,all,0,,20260409T170544Z,2026-04-09T18:06:55.896471+00:00 +2025-04-23,Lovable,all,0,,20260409T170544Z,2026-04-09T18:06:55.896471+00:00 +2025-04-23,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T18:06:55.896471+00:00 +2025-04-23,OpenCode,all,0,,20260409T170544Z,2026-04-09T18:06:55.896471+00:00 +2025-04-23,OpenHands,all,78,,20260409T170544Z,2026-04-09T18:06:55.896471+00:00 +2025-04-23,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T18:06:55.896471+00:00 +2025-04-23,Roo Code,all,0,,20260409T170544Z,2026-04-09T18:06:55.896471+00:00 +2025-04-23,Sketch,all,0,,20260409T170544Z,2026-04-09T18:06:55.896471+00:00 +2025-04-23,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T18:06:55.896471+00:00 +2025-04-23,Sweep AI,all,0,,20260409T170544Z,2026-04-09T18:06:55.896471+00:00 +2025-04-23,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T18:06:55.896471+00:00 +2025-04-24,Aider,all,970,,20260409T170544Z,2026-04-09T18:09:06.970357+00:00 +2025-04-24,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T18:09:06.970357+00:00 +2025-04-24,ChatGPT,all,8,,20260409T170544Z,2026-04-09T18:09:06.970357+00:00 +2025-04-24,Claude Code,all,18,,20260409T170544Z,2026-04-09T18:09:06.970357+00:00 +2025-04-24,Cline,all,148,,20260409T170544Z,2026-04-09T18:09:06.970357+00:00 +2025-04-24,Codegen,all,64,,20260409T170544Z,2026-04-09T18:09:06.970357+00:00 +2025-04-24,Coderabbit,all,28,,20260409T170544Z,2026-04-09T18:09:06.970357+00:00 +2025-04-24,Copilot,all,0,,20260409T170544Z,2026-04-09T18:09:06.970357+00:00 +2025-04-24,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T18:09:06.970357+00:00 +2025-04-24,Crush,all,0,,20260409T170544Z,2026-04-09T18:09:06.970357+00:00 +2025-04-24,Cursor,all,0,,20260409T170544Z,2026-04-09T18:09:06.970357+00:00 +2025-04-24,DeepSource,all,4,,20260409T170544Z,2026-04-09T18:09:06.970357+00:00 +2025-04-24,Devin,all,191,,20260409T170544Z,2026-04-09T18:09:06.970357+00:00 +2025-04-24,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T18:09:06.970357+00:00 +2025-04-24,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T18:09:06.970357+00:00 +2025-04-24,Gru,all,0,,20260409T170544Z,2026-04-09T18:09:06.970357+00:00 +2025-04-24,Jules (Google),all,8,,20260409T170544Z,2026-04-09T18:09:06.970357+00:00 +2025-04-24,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T18:09:06.970357+00:00 +2025-04-24,Kilo Code,all,0,,20260409T170544Z,2026-04-09T18:09:06.970357+00:00 +2025-04-24,Lovable,all,0,,20260409T170544Z,2026-04-09T18:09:06.970357+00:00 +2025-04-24,OpenAI Codex,all,6,,20260409T170544Z,2026-04-09T18:09:06.970357+00:00 +2025-04-24,OpenCode,all,0,,20260409T204843Z,2026-04-09T20:55:54.998048+00:00 +2025-04-24,OpenHands,all,137,,20260409T170544Z,2026-04-09T18:09:06.970357+00:00 +2025-04-24,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T18:09:06.970357+00:00 +2025-04-24,Roo Code,all,0,,20260409T204843Z,2026-04-09T20:55:54.998048+00:00 +2025-04-24,Sketch,all,0,,20260409T170544Z,2026-04-09T18:09:06.970357+00:00 +2025-04-24,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T18:09:06.970357+00:00 +2025-04-24,Sweep AI,all,0,,20260409T170544Z,2026-04-09T18:09:06.970357+00:00 +2025-04-24,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T18:09:06.970357+00:00 +2025-04-25,Aider,all,1126,,20260409T170544Z,2026-04-09T18:13:33.929204+00:00 +2025-04-25,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T18:13:33.929204+00:00 +2025-04-25,ChatGPT,all,18,,20260409T170544Z,2026-04-09T18:13:33.929204+00:00 +2025-04-25,Claude Code,all,1,,20260409T170544Z,2026-04-09T18:13:33.929204+00:00 +2025-04-25,Cline,all,57,,20260409T170544Z,2026-04-09T18:13:33.929204+00:00 +2025-04-25,Codegen,all,41,,20260409T170544Z,2026-04-09T18:13:33.929204+00:00 +2025-04-25,Coderabbit,all,21,,20260409T170544Z,2026-04-09T18:13:33.929204+00:00 +2025-04-25,Copilot,all,5,,20260409T170544Z,2026-04-09T18:13:33.929204+00:00 +2025-04-25,Copilot SWE Agent,all,0,1,20260409T170544Z,2026-04-09T18:13:33.929204+00:00 +2025-04-25,Crush,all,0,,20260409T170544Z,2026-04-09T18:13:33.929204+00:00 +2025-04-25,Cursor,all,0,1,20260409T170544Z,2026-04-09T18:13:33.929204+00:00 +2025-04-25,DeepSource,all,82,,20260409T170544Z,2026-04-09T18:13:33.929204+00:00 +2025-04-25,Devin,all,23,,20260409T170544Z,2026-04-09T18:13:33.929204+00:00 +2025-04-25,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T18:13:33.929204+00:00 +2025-04-25,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T18:13:33.929204+00:00 +2025-04-25,Gru,all,0,1,20260409T170544Z,2026-04-09T18:13:33.929204+00:00 +2025-04-25,Jules (Google),all,15,,20260409T170544Z,2026-04-09T18:13:33.929204+00:00 +2025-04-25,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T18:13:33.929204+00:00 +2025-04-25,Kilo Code,all,0,,20260409T170544Z,2026-04-09T18:13:33.929204+00:00 +2025-04-25,Lovable,all,0,,20260409T170544Z,2026-04-09T18:13:33.929204+00:00 +2025-04-25,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T18:13:33.929204+00:00 +2025-04-25,OpenCode,all,0,,20260409T170544Z,2026-04-09T18:13:33.929204+00:00 +2025-04-25,OpenHands,all,70,,20260409T170544Z,2026-04-09T18:13:33.929204+00:00 +2025-04-25,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T18:13:33.929204+00:00 +2025-04-25,Roo Code,all,0,,20260409T170544Z,2026-04-09T18:13:33.929204+00:00 +2025-04-25,Sketch,all,0,,20260409T170544Z,2026-04-09T18:13:33.929204+00:00 +2025-04-25,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T18:13:33.929204+00:00 +2025-04-25,Sweep AI,all,0,,20260409T170544Z,2026-04-09T18:13:33.929204+00:00 +2025-04-25,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T18:13:33.929204+00:00 +2025-04-26,Aider,all,981,,20260409T170544Z,2026-04-09T18:16:47.487176+00:00 +2025-04-26,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T18:16:47.487176+00:00 +2025-04-26,ChatGPT,all,17,,20260409T170544Z,2026-04-09T18:16:47.487176+00:00 +2025-04-26,Claude Code,all,0,,20260409T170544Z,2026-04-09T18:16:47.487176+00:00 +2025-04-26,Cline,all,3,,20260409T170544Z,2026-04-09T18:16:47.487176+00:00 +2025-04-26,Codegen,all,23,,20260409T170544Z,2026-04-09T18:16:47.487176+00:00 +2025-04-26,Coderabbit,all,7,,20260409T170544Z,2026-04-09T18:16:47.487176+00:00 +2025-04-26,Copilot,all,0,,20260409T170544Z,2026-04-09T18:16:47.487176+00:00 +2025-04-26,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T18:16:47.487176+00:00 +2025-04-26,Crush,all,0,,20260409T170544Z,2026-04-09T18:16:47.487176+00:00 +2025-04-26,Cursor,all,0,,20260409T170544Z,2026-04-09T18:16:47.487176+00:00 +2025-04-26,DeepSource,all,126,,20260409T170544Z,2026-04-09T18:16:47.487176+00:00 +2025-04-26,Devin,all,11,,20260409T170544Z,2026-04-09T18:16:47.487176+00:00 +2025-04-26,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T18:16:47.487176+00:00 +2025-04-26,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T18:16:47.487176+00:00 +2025-04-26,Gru,all,0,,20260409T170544Z,2026-04-09T18:16:47.487176+00:00 +2025-04-26,Jules (Google),all,16,,20260409T170544Z,2026-04-09T18:16:47.487176+00:00 +2025-04-26,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T18:16:47.487176+00:00 +2025-04-26,Kilo Code,all,0,,20260409T170544Z,2026-04-09T18:16:47.487176+00:00 +2025-04-26,Lovable,all,0,,20260409T170544Z,2026-04-09T18:16:47.487176+00:00 +2025-04-26,OpenAI Codex,all,8,,20260409T170544Z,2026-04-09T18:16:47.487176+00:00 +2025-04-26,OpenCode,all,0,,20260409T170544Z,2026-04-09T18:16:47.487176+00:00 +2025-04-26,OpenHands,all,46,,20260409T170544Z,2026-04-09T18:16:47.487176+00:00 +2025-04-26,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T18:16:47.487176+00:00 +2025-04-26,Roo Code,all,0,,20260409T170544Z,2026-04-09T18:16:47.487176+00:00 +2025-04-26,Sketch,all,0,,20260409T170544Z,2026-04-09T18:16:47.487176+00:00 +2025-04-26,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T18:16:47.487176+00:00 +2025-04-26,Sweep AI,all,0,,20260409T170544Z,2026-04-09T18:16:47.487176+00:00 +2025-04-26,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T18:16:47.487176+00:00 +2025-04-27,Aider,all,1416,,20260409T170544Z,2026-04-09T18:19:00.105589+00:00 +2025-04-27,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T18:19:00.105589+00:00 +2025-04-27,ChatGPT,all,78,,20260409T170544Z,2026-04-09T18:19:00.105589+00:00 +2025-04-27,Claude Code,all,1,,20260409T170544Z,2026-04-09T18:19:00.105589+00:00 +2025-04-27,Cline,all,13,,20260409T170544Z,2026-04-09T18:19:00.105589+00:00 +2025-04-27,Codegen,all,10,,20260409T170544Z,2026-04-09T18:19:00.105589+00:00 +2025-04-27,Coderabbit,all,5,,20260409T170544Z,2026-04-09T18:19:00.105589+00:00 +2025-04-27,Copilot,all,0,,20260409T170544Z,2026-04-09T18:19:00.105589+00:00 +2025-04-27,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T18:19:00.105589+00:00 +2025-04-27,Crush,all,0,,20260409T170544Z,2026-04-09T18:19:00.105589+00:00 +2025-04-27,Cursor,all,0,,20260409T170544Z,2026-04-09T18:19:00.105589+00:00 +2025-04-27,DeepSource,all,4,,20260409T170544Z,2026-04-09T18:19:00.105589+00:00 +2025-04-27,Devin,all,8,,20260409T170544Z,2026-04-09T18:19:00.105589+00:00 +2025-04-27,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T18:19:00.105589+00:00 +2025-04-27,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T18:19:00.105589+00:00 +2025-04-27,Gru,all,22,,20260409T170544Z,2026-04-09T18:19:00.105589+00:00 +2025-04-27,Jules (Google),all,14,1,20260409T170544Z,2026-04-09T18:19:00.105589+00:00 +2025-04-27,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T18:19:00.105589+00:00 +2025-04-27,Kilo Code,all,0,,20260409T170544Z,2026-04-09T18:19:00.105589+00:00 +2025-04-27,Lovable,all,1,,20260409T170544Z,2026-04-09T18:19:00.105589+00:00 +2025-04-27,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T18:19:00.105589+00:00 +2025-04-27,OpenCode,all,0,,20260409T170544Z,2026-04-09T18:19:00.105589+00:00 +2025-04-27,OpenHands,all,39,,20260409T170544Z,2026-04-09T18:19:00.105589+00:00 +2025-04-27,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T18:19:00.105589+00:00 +2025-04-27,Roo Code,all,0,1,20260409T170544Z,2026-04-09T18:19:00.105589+00:00 +2025-04-27,Sketch,all,0,,20260409T170544Z,2026-04-09T18:19:00.105589+00:00 +2025-04-27,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T18:19:00.105589+00:00 +2025-04-27,Sweep AI,all,0,,20260409T170544Z,2026-04-09T18:19:00.105589+00:00 +2025-04-27,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T18:19:00.105589+00:00 +2025-04-28,Aider,all,1229,,20260409T170544Z,2026-04-09T18:22:13.313529+00:00 +2025-04-28,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T18:22:13.313529+00:00 +2025-04-28,ChatGPT,all,19,,20260409T170544Z,2026-04-09T18:22:13.313529+00:00 +2025-04-28,Claude Code,all,0,,20260409T170544Z,2026-04-09T18:22:13.313529+00:00 +2025-04-28,Cline,all,316,,20260409T170544Z,2026-04-09T18:22:13.313529+00:00 +2025-04-28,Codegen,all,7,,20260409T170544Z,2026-04-09T18:22:13.313529+00:00 +2025-04-28,Coderabbit,all,1,,20260409T170544Z,2026-04-09T18:22:13.313529+00:00 +2025-04-28,Copilot,all,0,1,20260409T170544Z,2026-04-09T18:22:13.313529+00:00 +2025-04-28,Copilot SWE Agent,all,5,,20260409T170544Z,2026-04-09T18:22:13.313529+00:00 +2025-04-28,Crush,all,0,,20260409T170544Z,2026-04-09T18:22:13.313529+00:00 +2025-04-28,Cursor,all,0,,20260409T170544Z,2026-04-09T18:22:13.313529+00:00 +2025-04-28,DeepSource,all,7,,20260409T170544Z,2026-04-09T18:22:13.313529+00:00 +2025-04-28,Devin,all,199,,20260409T170544Z,2026-04-09T18:22:13.313529+00:00 +2025-04-28,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T18:22:13.313529+00:00 +2025-04-28,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T18:22:13.313529+00:00 +2025-04-28,Gru,all,7,,20260409T170544Z,2026-04-09T18:22:13.313529+00:00 +2025-04-28,Jules (Google),all,19,,20260409T170544Z,2026-04-09T18:22:13.313529+00:00 +2025-04-28,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T18:22:13.313529+00:00 +2025-04-28,Kilo Code,all,0,,20260409T170544Z,2026-04-09T18:22:13.313529+00:00 +2025-04-28,Lovable,all,0,,20260409T170544Z,2026-04-09T18:22:13.313529+00:00 +2025-04-28,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T18:22:13.313529+00:00 +2025-04-28,OpenCode,all,0,,20260409T170544Z,2026-04-09T18:22:13.313529+00:00 +2025-04-28,OpenHands,all,90,,20260409T170544Z,2026-04-09T18:22:13.313529+00:00 +2025-04-28,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T18:22:13.313529+00:00 +2025-04-28,Roo Code,all,0,,20260409T170544Z,2026-04-09T18:22:13.313529+00:00 +2025-04-28,Sketch,all,0,,20260409T170544Z,2026-04-09T18:22:13.313529+00:00 +2025-04-28,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T18:22:13.313529+00:00 +2025-04-28,Sweep AI,all,0,,20260409T170544Z,2026-04-09T18:22:13.313529+00:00 +2025-04-28,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T18:22:13.313529+00:00 +2025-04-29,Aider,all,1060,,20260409T170544Z,2026-04-09T18:24:26.376351+00:00 +2025-04-29,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T18:24:26.376351+00:00 +2025-04-29,ChatGPT,all,1,,20260409T170544Z,2026-04-09T18:24:26.376351+00:00 +2025-04-29,Claude Code,all,1,,20260409T170544Z,2026-04-09T18:24:26.376351+00:00 +2025-04-29,Cline,all,13,,20260409T170544Z,2026-04-09T18:24:26.376351+00:00 +2025-04-29,Codegen,all,95,,20260409T170544Z,2026-04-09T18:24:26.376351+00:00 +2025-04-29,Coderabbit,all,7,,20260409T170544Z,2026-04-09T18:24:26.376351+00:00 +2025-04-29,Copilot,all,0,,20260409T170544Z,2026-04-09T18:24:26.376351+00:00 +2025-04-29,Copilot SWE Agent,all,2,,20260409T170544Z,2026-04-09T18:24:26.376351+00:00 +2025-04-29,Crush,all,0,,20260409T170544Z,2026-04-09T18:24:26.376351+00:00 +2025-04-29,Cursor,all,0,,20260409T170544Z,2026-04-09T18:24:26.376351+00:00 +2025-04-29,DeepSource,all,13,,20260409T170544Z,2026-04-09T18:24:26.376351+00:00 +2025-04-29,Devin,all,114,,20260409T170544Z,2026-04-09T18:24:26.376351+00:00 +2025-04-29,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T18:24:26.376351+00:00 +2025-04-29,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T18:24:26.376351+00:00 +2025-04-29,Gru,all,0,,20260409T170544Z,2026-04-09T18:24:26.376351+00:00 +2025-04-29,Jules (Google),all,5,,20260409T170544Z,2026-04-09T18:24:26.376351+00:00 +2025-04-29,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T18:24:26.376351+00:00 +2025-04-29,Kilo Code,all,0,,20260409T170544Z,2026-04-09T18:24:26.376351+00:00 +2025-04-29,Lovable,all,0,,20260409T170544Z,2026-04-09T18:24:26.376351+00:00 +2025-04-29,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T18:24:26.376351+00:00 +2025-04-29,OpenCode,all,0,,20260409T170544Z,2026-04-09T18:24:26.376351+00:00 +2025-04-29,OpenHands,all,233,,20260409T170544Z,2026-04-09T18:24:26.376351+00:00 +2025-04-29,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T18:24:26.376351+00:00 +2025-04-29,Roo Code,all,0,,20260409T170544Z,2026-04-09T18:24:26.376351+00:00 +2025-04-29,Sketch,all,0,,20260409T170544Z,2026-04-09T18:24:26.376351+00:00 +2025-04-29,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T18:24:26.376351+00:00 +2025-04-29,Sweep AI,all,2,,20260409T170544Z,2026-04-09T18:24:26.376351+00:00 +2025-04-29,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T18:24:26.376351+00:00 +2025-04-30,Aider,all,966,,20260409T170544Z,2026-04-09T18:26:38.943265+00:00 +2025-04-30,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T18:26:38.943265+00:00 +2025-04-30,ChatGPT,all,14,,20260409T170544Z,2026-04-09T18:26:38.943265+00:00 +2025-04-30,Claude Code,all,16,,20260409T170544Z,2026-04-09T18:26:38.943265+00:00 +2025-04-30,Cline,all,51,,20260409T170544Z,2026-04-09T18:26:38.943265+00:00 +2025-04-30,Codegen,all,31,,20260409T170544Z,2026-04-09T18:26:38.943265+00:00 +2025-04-30,Coderabbit,all,16,,20260409T170544Z,2026-04-09T18:26:38.943265+00:00 +2025-04-30,Copilot,all,0,1,20260409T170544Z,2026-04-09T18:26:38.943265+00:00 +2025-04-30,Copilot SWE Agent,all,7,,20260409T170544Z,2026-04-09T18:26:38.943265+00:00 +2025-04-30,Crush,all,0,,20260409T170544Z,2026-04-09T18:26:38.943265+00:00 +2025-04-30,Cursor,all,0,,20260409T170544Z,2026-04-09T18:26:38.943265+00:00 +2025-04-30,DeepSource,all,9,,20260409T170544Z,2026-04-09T18:26:38.943265+00:00 +2025-04-30,Devin,all,44,1,20260409T170544Z,2026-04-09T18:26:38.943265+00:00 +2025-04-30,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T18:26:38.943265+00:00 +2025-04-30,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T18:26:38.943265+00:00 +2025-04-30,Gru,all,0,,20260409T170544Z,2026-04-09T18:26:38.943265+00:00 +2025-04-30,Jules (Google),all,4,,20260409T170544Z,2026-04-09T18:26:38.943265+00:00 +2025-04-30,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T18:26:38.943265+00:00 +2025-04-30,Kilo Code,all,0,,20260409T170544Z,2026-04-09T18:26:38.943265+00:00 +2025-04-30,Lovable,all,0,,20260409T170544Z,2026-04-09T18:26:38.943265+00:00 +2025-04-30,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T18:26:38.943265+00:00 +2025-04-30,OpenCode,all,0,,20260409T170544Z,2026-04-09T18:26:38.943265+00:00 +2025-04-30,OpenHands,all,152,,20260409T170544Z,2026-04-09T18:26:38.943265+00:00 +2025-04-30,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T18:26:38.943265+00:00 +2025-04-30,Roo Code,all,0,,20260409T170544Z,2026-04-09T18:26:38.943265+00:00 +2025-04-30,Sketch,all,0,,20260409T170544Z,2026-04-09T18:26:38.943265+00:00 +2025-04-30,Sourcery AI,all,0,1,20260409T170544Z,2026-04-09T18:26:38.943265+00:00 +2025-04-30,Sweep AI,all,0,,20260409T170544Z,2026-04-09T18:26:38.943265+00:00 +2025-04-30,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T18:26:38.943265+00:00 +2025-05-01,Aider,all,947,,20260409T170544Z,2026-04-09T18:29:53.461268+00:00 +2025-05-01,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T18:29:53.461268+00:00 +2025-05-01,ChatGPT,all,56,,20260409T170544Z,2026-04-09T18:29:53.461268+00:00 +2025-05-01,Claude Code,all,1,,20260409T170544Z,2026-04-09T18:29:53.461268+00:00 +2025-05-01,Cline,all,303,,20260409T170544Z,2026-04-09T18:29:53.461268+00:00 +2025-05-01,Codegen,all,20,,20260409T170544Z,2026-04-09T18:29:53.461268+00:00 +2025-05-01,Coderabbit,all,4,,20260409T170544Z,2026-04-09T18:29:53.461268+00:00 +2025-05-01,Copilot,all,0,,20260409T170544Z,2026-04-09T18:29:53.461268+00:00 +2025-05-01,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T18:29:53.461268+00:00 +2025-05-01,Crush,all,0,,20260409T170544Z,2026-04-09T18:29:53.461268+00:00 +2025-05-01,Cursor,all,0,,20260409T170544Z,2026-04-09T18:29:53.461268+00:00 +2025-05-01,DeepSource,all,1,,20260409T170544Z,2026-04-09T18:29:53.461268+00:00 +2025-05-01,Devin,all,30,,20260409T170544Z,2026-04-09T18:29:53.461268+00:00 +2025-05-01,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T18:29:53.461268+00:00 +2025-05-01,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T18:29:53.461268+00:00 +2025-05-01,Gru,all,0,,20260409T170544Z,2026-04-09T18:29:53.461268+00:00 +2025-05-01,Jules (Google),all,5,,20260409T170544Z,2026-04-09T18:29:53.461268+00:00 +2025-05-01,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T18:29:53.461268+00:00 +2025-05-01,Kilo Code,all,0,,20260409T170544Z,2026-04-09T18:29:53.461268+00:00 +2025-05-01,Lovable,all,0,,20260409T170544Z,2026-04-09T18:29:53.461268+00:00 +2025-05-01,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T18:29:53.461268+00:00 +2025-05-01,OpenCode,all,0,,20260409T170544Z,2026-04-09T18:29:53.461268+00:00 +2025-05-01,OpenHands,all,104,,20260409T170544Z,2026-04-09T18:29:53.461268+00:00 +2025-05-01,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T18:29:53.461268+00:00 +2025-05-01,Roo Code,all,0,,20260409T170544Z,2026-04-09T18:29:53.461268+00:00 +2025-05-01,Sketch,all,0,,20260409T170544Z,2026-04-09T18:29:53.461268+00:00 +2025-05-01,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T18:29:53.461268+00:00 +2025-05-01,Sweep AI,all,0,,20260409T170544Z,2026-04-09T18:29:53.461268+00:00 +2025-05-01,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T18:29:53.461268+00:00 +2025-05-02,Aider,all,1180,,20260409T170544Z,2026-04-09T18:32:05.401909+00:00 +2025-05-02,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T18:32:05.401909+00:00 +2025-05-02,ChatGPT,all,43,,20260409T170544Z,2026-04-09T18:32:05.401909+00:00 +2025-05-02,Claude Code,all,45,,20260409T170544Z,2026-04-09T18:32:05.401909+00:00 +2025-05-02,Cline,all,22,,20260409T170544Z,2026-04-09T18:32:05.401909+00:00 +2025-05-02,Codegen,all,5,,20260409T170544Z,2026-04-09T18:32:05.401909+00:00 +2025-05-02,Coderabbit,all,12,,20260409T170544Z,2026-04-09T18:32:05.401909+00:00 +2025-05-02,Copilot,all,0,,20260409T170544Z,2026-04-09T18:32:05.401909+00:00 +2025-05-02,Copilot SWE Agent,all,6,,20260409T170544Z,2026-04-09T18:32:05.401909+00:00 +2025-05-02,Crush,all,0,,20260409T170544Z,2026-04-09T18:32:05.401909+00:00 +2025-05-02,Cursor,all,0,,20260409T170544Z,2026-04-09T18:32:05.401909+00:00 +2025-05-02,DeepSource,all,2,,20260409T170544Z,2026-04-09T18:32:05.401909+00:00 +2025-05-02,Devin,all,145,1,20260409T170544Z,2026-04-09T18:32:05.401909+00:00 +2025-05-02,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T18:32:05.401909+00:00 +2025-05-02,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T18:32:05.401909+00:00 +2025-05-02,Gru,all,7,,20260409T170544Z,2026-04-09T18:32:05.401909+00:00 +2025-05-02,Jules (Google),all,9,,20260409T170544Z,2026-04-09T18:32:05.401909+00:00 +2025-05-02,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T18:32:05.401909+00:00 +2025-05-02,Kilo Code,all,0,,20260409T170544Z,2026-04-09T18:32:05.401909+00:00 +2025-05-02,Lovable,all,0,,20260409T170544Z,2026-04-09T18:32:05.401909+00:00 +2025-05-02,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T18:32:05.401909+00:00 +2025-05-02,OpenCode,all,0,,20260409T170544Z,2026-04-09T18:32:05.401909+00:00 +2025-05-02,OpenHands,all,89,,20260409T170544Z,2026-04-09T18:32:05.401909+00:00 +2025-05-02,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T18:32:05.401909+00:00 +2025-05-02,Roo Code,all,0,,20260409T170544Z,2026-04-09T18:32:05.401909+00:00 +2025-05-02,Sketch,all,0,,20260409T170544Z,2026-04-09T18:32:05.401909+00:00 +2025-05-02,Sourcery AI,all,2,,20260409T170544Z,2026-04-09T18:32:05.401909+00:00 +2025-05-02,Sweep AI,all,1,,20260409T170544Z,2026-04-09T18:32:05.401909+00:00 +2025-05-02,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T18:32:05.401909+00:00 +2025-05-03,Aider,all,1335,,20260409T170544Z,2026-04-09T18:34:19.298440+00:00 +2025-05-03,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T18:34:19.298440+00:00 +2025-05-03,ChatGPT,all,37,,20260409T170544Z,2026-04-09T18:34:19.298440+00:00 +2025-05-03,Claude Code,all,31,,20260409T170544Z,2026-04-09T18:34:19.298440+00:00 +2025-05-03,Cline,all,11,,20260409T170544Z,2026-04-09T18:34:19.298440+00:00 +2025-05-03,Codegen,all,16,,20260409T170544Z,2026-04-09T18:34:19.298440+00:00 +2025-05-03,Coderabbit,all,8,,20260409T170544Z,2026-04-09T18:34:19.298440+00:00 +2025-05-03,Copilot,all,0,1,20260409T170544Z,2026-04-09T18:34:19.298440+00:00 +2025-05-03,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T18:34:19.298440+00:00 +2025-05-03,Crush,all,0,,20260409T170544Z,2026-04-09T18:34:19.298440+00:00 +2025-05-03,Cursor,all,0,,20260409T170544Z,2026-04-09T18:34:19.298440+00:00 +2025-05-03,DeepSource,all,13,,20260409T170544Z,2026-04-09T18:34:19.298440+00:00 +2025-05-03,Devin,all,25,,20260409T170544Z,2026-04-09T18:34:19.298440+00:00 +2025-05-03,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T18:34:19.298440+00:00 +2025-05-03,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T18:34:19.298440+00:00 +2025-05-03,Gru,all,55,,20260409T170544Z,2026-04-09T18:34:19.298440+00:00 +2025-05-03,Jules (Google),all,58,,20260409T170544Z,2026-04-09T18:34:19.298440+00:00 +2025-05-03,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T18:34:19.298440+00:00 +2025-05-03,Kilo Code,all,0,,20260409T170544Z,2026-04-09T18:34:19.298440+00:00 +2025-05-03,Lovable,all,0,,20260409T170544Z,2026-04-09T18:34:19.298440+00:00 +2025-05-03,OpenAI Codex,all,1,,20260409T170544Z,2026-04-09T18:34:19.298440+00:00 +2025-05-03,OpenCode,all,0,,20260409T170544Z,2026-04-09T18:34:19.298440+00:00 +2025-05-03,OpenHands,all,103,,20260409T170544Z,2026-04-09T18:34:19.298440+00:00 +2025-05-03,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T18:34:19.298440+00:00 +2025-05-03,Roo Code,all,0,,20260409T170544Z,2026-04-09T18:34:19.298440+00:00 +2025-05-03,Sketch,all,0,,20260409T170544Z,2026-04-09T18:34:19.298440+00:00 +2025-05-03,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T18:34:19.298440+00:00 +2025-05-03,Sweep AI,all,0,,20260409T170544Z,2026-04-09T18:34:19.298440+00:00 +2025-05-03,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T18:34:19.298440+00:00 +2025-05-04,Aider,all,1136,,20260409T170544Z,2026-04-09T18:36:31.441913+00:00 +2025-05-04,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T18:36:31.441913+00:00 +2025-05-04,ChatGPT,all,17,,20260409T170544Z,2026-04-09T18:36:31.441913+00:00 +2025-05-04,Claude Code,all,5,,20260409T170544Z,2026-04-09T18:36:31.441913+00:00 +2025-05-04,Cline,all,25,,20260409T170544Z,2026-04-09T18:36:31.441913+00:00 +2025-05-04,Codegen,all,63,,20260409T170544Z,2026-04-09T18:36:31.441913+00:00 +2025-05-04,Coderabbit,all,8,,20260409T170544Z,2026-04-09T18:36:31.441913+00:00 +2025-05-04,Copilot,all,0,1,20260409T170544Z,2026-04-09T18:36:31.441913+00:00 +2025-05-04,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T18:36:31.441913+00:00 +2025-05-04,Crush,all,0,,20260409T170544Z,2026-04-09T18:36:31.441913+00:00 +2025-05-04,Cursor,all,0,,20260409T170544Z,2026-04-09T18:36:31.441913+00:00 +2025-05-04,DeepSource,all,5,,20260409T170544Z,2026-04-09T18:36:31.441913+00:00 +2025-05-04,Devin,all,18,,20260409T170544Z,2026-04-09T18:36:31.441913+00:00 +2025-05-04,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T18:36:31.441913+00:00 +2025-05-04,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T18:36:31.441913+00:00 +2025-05-04,Gru,all,55,,20260409T170544Z,2026-04-09T18:36:31.441913+00:00 +2025-05-04,Jules (Google),all,48,,20260409T170544Z,2026-04-09T18:36:31.441913+00:00 +2025-05-04,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T18:36:31.441913+00:00 +2025-05-04,Kilo Code,all,0,,20260409T170544Z,2026-04-09T18:36:31.441913+00:00 +2025-05-04,Lovable,all,0,,20260409T170544Z,2026-04-09T18:36:31.441913+00:00 +2025-05-04,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T18:36:31.441913+00:00 +2025-05-04,OpenCode,all,0,,20260409T170544Z,2026-04-09T18:36:31.441913+00:00 +2025-05-04,OpenHands,all,141,,20260409T170544Z,2026-04-09T18:36:31.441913+00:00 +2025-05-04,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T18:36:31.441913+00:00 +2025-05-04,Roo Code,all,0,,20260409T170544Z,2026-04-09T18:36:31.441913+00:00 +2025-05-04,Sketch,all,0,,20260409T170544Z,2026-04-09T18:36:31.441913+00:00 +2025-05-04,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T18:36:31.441913+00:00 +2025-05-04,Sweep AI,all,0,,20260409T170544Z,2026-04-09T18:36:31.441913+00:00 +2025-05-04,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T18:36:31.441913+00:00 +2025-05-05,Aider,all,1379,,20260409T170544Z,2026-04-09T18:38:44.565180+00:00 +2025-05-05,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T18:38:44.565180+00:00 +2025-05-05,ChatGPT,all,17,,20260409T170544Z,2026-04-09T18:38:44.565180+00:00 +2025-05-05,Claude Code,all,3,,20260409T170544Z,2026-04-09T18:38:44.565180+00:00 +2025-05-05,Cline,all,18,,20260409T170544Z,2026-04-09T18:38:44.565180+00:00 +2025-05-05,Codegen,all,83,,20260409T170544Z,2026-04-09T18:38:44.565180+00:00 +2025-05-05,Coderabbit,all,14,,20260409T170544Z,2026-04-09T18:38:44.565180+00:00 +2025-05-05,Copilot,all,0,,20260409T170544Z,2026-04-09T18:38:44.565180+00:00 +2025-05-05,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T18:38:44.565180+00:00 +2025-05-05,Crush,all,0,,20260409T170544Z,2026-04-09T18:38:44.565180+00:00 +2025-05-05,Cursor,all,0,,20260409T170544Z,2026-04-09T18:38:44.565180+00:00 +2025-05-05,DeepSource,all,5,,20260409T170544Z,2026-04-09T18:38:44.565180+00:00 +2025-05-05,Devin,all,30,,20260409T170544Z,2026-04-09T18:38:44.565180+00:00 +2025-05-05,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T18:38:44.565180+00:00 +2025-05-05,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T18:38:44.565180+00:00 +2025-05-05,Gru,all,0,,20260409T170544Z,2026-04-09T18:38:44.565180+00:00 +2025-05-05,Jules (Google),all,42,,20260409T170544Z,2026-04-09T18:38:44.565180+00:00 +2025-05-05,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T18:38:44.565180+00:00 +2025-05-05,Kilo Code,all,0,,20260409T170544Z,2026-04-09T18:38:44.565180+00:00 +2025-05-05,Lovable,all,0,,20260409T170544Z,2026-04-09T18:38:44.565180+00:00 +2025-05-05,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T18:38:44.565180+00:00 +2025-05-05,OpenCode,all,0,,20260409T170544Z,2026-04-09T18:38:44.565180+00:00 +2025-05-05,OpenHands,all,93,,20260409T170544Z,2026-04-09T18:38:44.565180+00:00 +2025-05-05,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T18:38:44.565180+00:00 +2025-05-05,Roo Code,all,0,,20260409T170544Z,2026-04-09T18:38:44.565180+00:00 +2025-05-05,Sketch,all,0,,20260409T170544Z,2026-04-09T18:38:44.565180+00:00 +2025-05-05,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T18:38:44.565180+00:00 +2025-05-05,Sweep AI,all,0,,20260409T170544Z,2026-04-09T18:38:44.565180+00:00 +2025-05-05,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T18:38:44.565180+00:00 +2025-05-06,Aider,all,1044,,20260409T170544Z,2026-04-09T18:40:58.358973+00:00 +2025-05-06,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T18:40:58.358973+00:00 +2025-05-06,ChatGPT,all,2,,20260409T170544Z,2026-04-09T18:40:58.358973+00:00 +2025-05-06,Claude Code,all,0,,20260409T170544Z,2026-04-09T18:40:58.358973+00:00 +2025-05-06,Cline,all,30,,20260409T170544Z,2026-04-09T18:40:58.358973+00:00 +2025-05-06,Codegen,all,20,,20260409T170544Z,2026-04-09T18:40:58.358973+00:00 +2025-05-06,Coderabbit,all,10,,20260409T170544Z,2026-04-09T18:40:58.358973+00:00 +2025-05-06,Copilot,all,1,,20260409T170544Z,2026-04-09T18:40:58.358973+00:00 +2025-05-06,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T18:40:58.358973+00:00 +2025-05-06,Crush,all,0,,20260409T170544Z,2026-04-09T18:40:58.358973+00:00 +2025-05-06,Cursor,all,0,,20260409T170544Z,2026-04-09T18:40:58.358973+00:00 +2025-05-06,DeepSource,all,2,,20260409T170544Z,2026-04-09T18:40:58.358973+00:00 +2025-05-06,Devin,all,374,,20260409T170544Z,2026-04-09T18:40:58.358973+00:00 +2025-05-06,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T18:40:58.358973+00:00 +2025-05-06,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T18:40:58.358973+00:00 +2025-05-06,Gru,all,0,,20260409T170544Z,2026-04-09T18:40:58.358973+00:00 +2025-05-06,Jules (Google),all,21,,20260409T170544Z,2026-04-09T18:40:58.358973+00:00 +2025-05-06,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T18:40:58.358973+00:00 +2025-05-06,Kilo Code,all,0,,20260409T170544Z,2026-04-09T18:40:58.358973+00:00 +2025-05-06,Lovable,all,0,,20260409T170544Z,2026-04-09T18:40:58.358973+00:00 +2025-05-06,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T18:40:58.358973+00:00 +2025-05-06,OpenCode,all,0,,20260409T170544Z,2026-04-09T18:40:58.358973+00:00 +2025-05-06,OpenHands,all,62,,20260409T170544Z,2026-04-09T18:40:58.358973+00:00 +2025-05-06,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T18:40:58.358973+00:00 +2025-05-06,Roo Code,all,0,,20260409T170544Z,2026-04-09T18:40:58.358973+00:00 +2025-05-06,Sketch,all,0,,20260409T170544Z,2026-04-09T18:40:58.358973+00:00 +2025-05-06,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T18:40:58.358973+00:00 +2025-05-06,Sweep AI,all,1,,20260409T170544Z,2026-04-09T18:40:58.358973+00:00 +2025-05-06,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T18:40:58.358973+00:00 +2025-05-07,Aider,all,1205,,20260409T170544Z,2026-04-09T18:43:10.912090+00:00 +2025-05-07,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T18:43:10.912090+00:00 +2025-05-07,ChatGPT,all,15,,20260409T170544Z,2026-04-09T18:43:10.912090+00:00 +2025-05-07,Claude Code,all,1,,20260409T170544Z,2026-04-09T18:43:10.912090+00:00 +2025-05-07,Cline,all,10,,20260409T170544Z,2026-04-09T18:43:10.912090+00:00 +2025-05-07,Codegen,all,23,,20260409T170544Z,2026-04-09T18:43:10.912090+00:00 +2025-05-07,Coderabbit,all,36,,20260409T170544Z,2026-04-09T18:43:10.912090+00:00 +2025-05-07,Copilot,all,1,,20260409T170544Z,2026-04-09T18:43:10.912090+00:00 +2025-05-07,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T18:43:10.912090+00:00 +2025-05-07,Crush,all,0,,20260409T170544Z,2026-04-09T18:43:10.912090+00:00 +2025-05-07,Cursor,all,0,,20260409T170544Z,2026-04-09T18:43:10.912090+00:00 +2025-05-07,DeepSource,all,8,,20260409T170544Z,2026-04-09T18:43:10.912090+00:00 +2025-05-07,Devin,all,500,,20260409T170544Z,2026-04-09T18:43:10.912090+00:00 +2025-05-07,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T18:43:10.912090+00:00 +2025-05-07,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T18:43:10.912090+00:00 +2025-05-07,Gru,all,0,,20260409T170544Z,2026-04-09T18:43:10.912090+00:00 +2025-05-07,Jules (Google),all,15,,20260409T170544Z,2026-04-09T18:43:10.912090+00:00 +2025-05-07,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T18:43:10.912090+00:00 +2025-05-07,Kilo Code,all,0,,20260409T170544Z,2026-04-09T18:43:10.912090+00:00 +2025-05-07,Lovable,all,1,,20260409T170544Z,2026-04-09T18:43:10.912090+00:00 +2025-05-07,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T18:43:10.912090+00:00 +2025-05-07,OpenCode,all,0,,20260409T170544Z,2026-04-09T18:43:10.912090+00:00 +2025-05-07,OpenHands,all,54,,20260409T170544Z,2026-04-09T18:43:10.912090+00:00 +2025-05-07,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T18:43:10.912090+00:00 +2025-05-07,Roo Code,all,0,,20260409T170544Z,2026-04-09T18:43:10.912090+00:00 +2025-05-07,Sketch,all,0,,20260409T170544Z,2026-04-09T18:43:10.912090+00:00 +2025-05-07,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T18:43:10.912090+00:00 +2025-05-07,Sweep AI,all,0,,20260409T170544Z,2026-04-09T18:43:10.912090+00:00 +2025-05-07,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T18:43:10.912090+00:00 +2025-05-08,Aider,all,2471,,20260409T170544Z,2026-04-09T18:45:24.439123+00:00 +2025-05-08,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T18:45:24.439123+00:00 +2025-05-08,ChatGPT,all,32,,20260409T170544Z,2026-04-09T18:45:24.439123+00:00 +2025-05-08,Claude Code,all,17,,20260409T170544Z,2026-04-09T18:45:24.439123+00:00 +2025-05-08,Cline,all,59,,20260409T170544Z,2026-04-09T18:45:24.439123+00:00 +2025-05-08,Codegen,all,2,,20260409T170544Z,2026-04-09T18:45:24.439123+00:00 +2025-05-08,Coderabbit,all,59,,20260409T170544Z,2026-04-09T18:45:24.439123+00:00 +2025-05-08,Copilot,all,0,,20260409T170544Z,2026-04-09T18:45:24.439123+00:00 +2025-05-08,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T18:45:24.439123+00:00 +2025-05-08,Crush,all,0,,20260409T170544Z,2026-04-09T18:45:24.439123+00:00 +2025-05-08,Cursor,all,0,,20260409T170544Z,2026-04-09T18:45:24.439123+00:00 +2025-05-08,DeepSource,all,5,,20260409T170544Z,2026-04-09T18:45:24.439123+00:00 +2025-05-08,Devin,all,74,,20260409T170544Z,2026-04-09T18:45:24.439123+00:00 +2025-05-08,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T18:45:24.439123+00:00 +2025-05-08,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T18:45:24.439123+00:00 +2025-05-08,Gru,all,70,,20260409T170544Z,2026-04-09T18:45:24.439123+00:00 +2025-05-08,Jules (Google),all,4,,20260409T170544Z,2026-04-09T18:45:24.439123+00:00 +2025-05-08,Junie (JetBrains),all,0,1,20260409T170544Z,2026-04-09T18:45:24.439123+00:00 +2025-05-08,Kilo Code,all,0,,20260409T170544Z,2026-04-09T18:45:24.439123+00:00 +2025-05-08,Lovable,all,0,,20260409T170544Z,2026-04-09T18:45:24.439123+00:00 +2025-05-08,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T18:45:24.439123+00:00 +2025-05-08,OpenCode,all,0,,20260409T170544Z,2026-04-09T18:45:24.439123+00:00 +2025-05-08,OpenHands,all,107,,20260409T170544Z,2026-04-09T18:45:24.439123+00:00 +2025-05-08,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T18:45:24.439123+00:00 +2025-05-08,Roo Code,all,0,,20260409T170544Z,2026-04-09T18:45:24.439123+00:00 +2025-05-08,Sketch,all,0,,20260409T170544Z,2026-04-09T18:45:24.439123+00:00 +2025-05-08,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T18:45:24.439123+00:00 +2025-05-08,Sweep AI,all,0,,20260409T170544Z,2026-04-09T18:45:24.439123+00:00 +2025-05-08,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T18:45:24.439123+00:00 +2025-05-09,Aider,all,1855,,20260409T170544Z,2026-04-09T18:47:37.050523+00:00 +2025-05-09,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T18:47:37.050523+00:00 +2025-05-09,ChatGPT,all,7,,20260409T170544Z,2026-04-09T18:47:37.050523+00:00 +2025-05-09,Claude Code,all,10,,20260409T170544Z,2026-04-09T18:47:37.050523+00:00 +2025-05-09,Cline,all,8,,20260409T170544Z,2026-04-09T18:47:37.050523+00:00 +2025-05-09,Codegen,all,8,,20260409T170544Z,2026-04-09T18:47:37.050523+00:00 +2025-05-09,Coderabbit,all,8,,20260409T170544Z,2026-04-09T18:47:37.050523+00:00 +2025-05-09,Copilot,all,0,,20260409T170544Z,2026-04-09T18:47:37.050523+00:00 +2025-05-09,Copilot SWE Agent,all,14,,20260409T170544Z,2026-04-09T18:47:37.050523+00:00 +2025-05-09,Crush,all,0,,20260409T170544Z,2026-04-09T18:47:37.050523+00:00 +2025-05-09,Cursor,all,0,,20260409T170544Z,2026-04-09T18:47:37.050523+00:00 +2025-05-09,DeepSource,all,6,,20260409T170544Z,2026-04-09T18:47:37.050523+00:00 +2025-05-09,Devin,all,189,,20260409T170544Z,2026-04-09T18:47:37.050523+00:00 +2025-05-09,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T18:47:37.050523+00:00 +2025-05-09,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T18:47:37.050523+00:00 +2025-05-09,Gru,all,61,,20260409T170544Z,2026-04-09T18:47:37.050523+00:00 +2025-05-09,Jules (Google),all,7,,20260409T170544Z,2026-04-09T18:47:37.050523+00:00 +2025-05-09,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T18:47:37.050523+00:00 +2025-05-09,Kilo Code,all,0,,20260409T170544Z,2026-04-09T18:47:37.050523+00:00 +2025-05-09,Lovable,all,0,,20260409T170544Z,2026-04-09T18:47:37.050523+00:00 +2025-05-09,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T18:47:37.050523+00:00 +2025-05-09,OpenCode,all,0,,20260409T170544Z,2026-04-09T18:47:37.050523+00:00 +2025-05-09,OpenHands,all,44,,20260409T170544Z,2026-04-09T18:47:37.050523+00:00 +2025-05-09,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T18:47:37.050523+00:00 +2025-05-09,Roo Code,all,0,,20260409T170544Z,2026-04-09T18:47:37.050523+00:00 +2025-05-09,Sketch,all,0,,20260409T170544Z,2026-04-09T18:47:37.050523+00:00 +2025-05-09,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T18:47:37.050523+00:00 +2025-05-09,Sweep AI,all,0,,20260409T170544Z,2026-04-09T18:47:37.050523+00:00 +2025-05-09,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T18:47:37.050523+00:00 +2025-05-10,Aider,all,1964,,20260409T170544Z,2026-04-09T18:49:48.677932+00:00 +2025-05-10,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T18:49:48.677932+00:00 +2025-05-10,ChatGPT,all,13,,20260409T170544Z,2026-04-09T18:49:48.677932+00:00 +2025-05-10,Claude Code,all,1,,20260409T170544Z,2026-04-09T18:49:48.677932+00:00 +2025-05-10,Cline,all,5,,20260409T170544Z,2026-04-09T18:49:48.677932+00:00 +2025-05-10,Codegen,all,4,,20260409T170544Z,2026-04-09T18:49:48.677932+00:00 +2025-05-10,Coderabbit,all,33,,20260409T170544Z,2026-04-09T18:49:48.677932+00:00 +2025-05-10,Copilot,all,0,,20260409T170544Z,2026-04-09T18:49:48.677932+00:00 +2025-05-10,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T18:49:48.677932+00:00 +2025-05-10,Crush,all,0,,20260409T170544Z,2026-04-09T18:49:48.677932+00:00 +2025-05-10,Cursor,all,0,,20260409T170544Z,2026-04-09T18:49:48.677932+00:00 +2025-05-10,DeepSource,all,5,,20260409T170544Z,2026-04-09T18:49:48.677932+00:00 +2025-05-10,Devin,all,8,,20260409T170544Z,2026-04-09T18:49:48.677932+00:00 +2025-05-10,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T18:49:48.677932+00:00 +2025-05-10,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T18:49:48.677932+00:00 +2025-05-10,Gru,all,215,,20260409T170544Z,2026-04-09T18:49:48.677932+00:00 +2025-05-10,Jules (Google),all,6,,20260409T170544Z,2026-04-09T18:49:48.677932+00:00 +2025-05-10,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T18:49:48.677932+00:00 +2025-05-10,Kilo Code,all,0,,20260409T170544Z,2026-04-09T18:49:48.677932+00:00 +2025-05-10,Lovable,all,0,,20260409T170544Z,2026-04-09T18:49:48.677932+00:00 +2025-05-10,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T18:49:48.677932+00:00 +2025-05-10,OpenCode,all,0,,20260409T170544Z,2026-04-09T18:49:48.677932+00:00 +2025-05-10,OpenHands,all,85,,20260409T170544Z,2026-04-09T18:49:48.677932+00:00 +2025-05-10,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T18:49:48.677932+00:00 +2025-05-10,Roo Code,all,0,,20260409T170544Z,2026-04-09T18:49:48.677932+00:00 +2025-05-10,Sketch,all,0,,20260409T170544Z,2026-04-09T18:49:48.677932+00:00 +2025-05-10,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T18:49:48.677932+00:00 +2025-05-10,Sweep AI,all,11,,20260409T170544Z,2026-04-09T18:49:48.677932+00:00 +2025-05-10,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T18:49:48.677932+00:00 +2025-05-11,Aider,all,1309,,20260409T170544Z,2026-04-09T18:52:01.658973+00:00 +2025-05-11,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T18:52:01.658973+00:00 +2025-05-11,ChatGPT,all,11,,20260409T170544Z,2026-04-09T18:52:01.658973+00:00 +2025-05-11,Claude Code,all,11,,20260409T170544Z,2026-04-09T18:52:01.658973+00:00 +2025-05-11,Cline,all,3,,20260409T170544Z,2026-04-09T18:52:01.658973+00:00 +2025-05-11,Codegen,all,5,,20260409T170544Z,2026-04-09T18:52:01.658973+00:00 +2025-05-11,Coderabbit,all,8,,20260409T170544Z,2026-04-09T18:52:01.658973+00:00 +2025-05-11,Copilot,all,22,,20260409T170544Z,2026-04-09T18:52:01.658973+00:00 +2025-05-11,Copilot SWE Agent,all,2,,20260409T170544Z,2026-04-09T18:52:01.658973+00:00 +2025-05-11,Crush,all,0,,20260409T170544Z,2026-04-09T18:52:01.658973+00:00 +2025-05-11,Cursor,all,0,,20260409T170544Z,2026-04-09T18:52:01.658973+00:00 +2025-05-11,DeepSource,all,4,,20260409T170544Z,2026-04-09T18:52:01.658973+00:00 +2025-05-11,Devin,all,11,,20260409T170544Z,2026-04-09T18:52:01.658973+00:00 +2025-05-11,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T18:52:01.658973+00:00 +2025-05-11,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T18:52:01.658973+00:00 +2025-05-11,Gru,all,0,,20260409T170544Z,2026-04-09T18:52:01.658973+00:00 +2025-05-11,Jules (Google),all,16,,20260409T170544Z,2026-04-09T18:52:01.658973+00:00 +2025-05-11,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T18:52:01.658973+00:00 +2025-05-11,Kilo Code,all,0,,20260409T170544Z,2026-04-09T18:52:01.658973+00:00 +2025-05-11,Lovable,all,1,,20260409T170544Z,2026-04-09T18:52:01.658973+00:00 +2025-05-11,OpenAI Codex,all,1,,20260409T170544Z,2026-04-09T18:52:01.658973+00:00 +2025-05-11,OpenCode,all,0,,20260409T170544Z,2026-04-09T18:52:01.658973+00:00 +2025-05-11,OpenHands,all,36,,20260409T170544Z,2026-04-09T18:52:01.658973+00:00 +2025-05-11,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T18:52:01.658973+00:00 +2025-05-11,Roo Code,all,0,,20260409T170544Z,2026-04-09T18:52:01.658973+00:00 +2025-05-11,Sketch,all,0,,20260409T170544Z,2026-04-09T18:52:01.658973+00:00 +2025-05-11,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T18:52:01.658973+00:00 +2025-05-11,Sweep AI,all,0,,20260409T170544Z,2026-04-09T18:52:01.658973+00:00 +2025-05-11,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T18:52:01.658973+00:00 +2025-05-12,Aider,all,744,,20260409T170544Z,2026-04-09T18:54:13.571958+00:00 +2025-05-12,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T18:54:13.571958+00:00 +2025-05-12,ChatGPT,all,28,,20260409T170544Z,2026-04-09T18:54:13.571958+00:00 +2025-05-12,Claude Code,all,3,,20260409T170544Z,2026-04-09T18:54:13.571958+00:00 +2025-05-12,Cline,all,23,,20260409T170544Z,2026-04-09T18:54:13.571958+00:00 +2025-05-12,Codegen,all,37,,20260409T170544Z,2026-04-09T18:54:13.571958+00:00 +2025-05-12,Coderabbit,all,11,,20260409T170544Z,2026-04-09T18:54:13.571958+00:00 +2025-05-12,Copilot,all,0,,20260409T170544Z,2026-04-09T18:54:13.571958+00:00 +2025-05-12,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T18:54:13.571958+00:00 +2025-05-12,Crush,all,0,,20260409T170544Z,2026-04-09T18:54:13.571958+00:00 +2025-05-12,Cursor,all,0,,20260409T170544Z,2026-04-09T18:54:13.571958+00:00 +2025-05-12,DeepSource,all,17,,20260409T170544Z,2026-04-09T18:54:13.571958+00:00 +2025-05-12,Devin,all,184,,20260409T170544Z,2026-04-09T18:54:13.571958+00:00 +2025-05-12,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T18:54:13.571958+00:00 +2025-05-12,Gemini Code Assist,all,4,,20260409T170544Z,2026-04-09T18:54:13.571958+00:00 +2025-05-12,Gru,all,7,,20260409T170544Z,2026-04-09T18:54:13.571958+00:00 +2025-05-12,Jules (Google),all,11,,20260409T170544Z,2026-04-09T18:54:13.571958+00:00 +2025-05-12,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T18:54:13.571958+00:00 +2025-05-12,Kilo Code,all,0,,20260409T170544Z,2026-04-09T18:54:13.571958+00:00 +2025-05-12,Lovable,all,0,,20260409T170544Z,2026-04-09T18:54:13.571958+00:00 +2025-05-12,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T18:54:13.571958+00:00 +2025-05-12,OpenCode,all,0,,20260409T170544Z,2026-04-09T18:54:13.571958+00:00 +2025-05-12,OpenHands,all,45,,20260409T170544Z,2026-04-09T18:54:13.571958+00:00 +2025-05-12,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T18:54:13.571958+00:00 +2025-05-12,Roo Code,all,0,,20260409T170544Z,2026-04-09T18:54:13.571958+00:00 +2025-05-12,Sketch,all,0,,20260409T170544Z,2026-04-09T18:54:13.571958+00:00 +2025-05-12,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T18:54:13.571958+00:00 +2025-05-12,Sweep AI,all,3,,20260409T170544Z,2026-04-09T18:54:13.571958+00:00 +2025-05-12,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T18:54:13.571958+00:00 +2025-05-13,Aider,all,880,,20260409T170544Z,2026-04-09T18:56:25.017018+00:00 +2025-05-13,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T18:56:25.017018+00:00 +2025-05-13,ChatGPT,all,28,,20260409T170544Z,2026-04-09T18:56:25.017018+00:00 +2025-05-13,Claude Code,all,14,,20260409T170544Z,2026-04-09T18:56:25.017018+00:00 +2025-05-13,Cline,all,25,,20260409T170544Z,2026-04-09T18:56:25.017018+00:00 +2025-05-13,Codegen,all,6,,20260409T170544Z,2026-04-09T18:56:25.017018+00:00 +2025-05-13,Coderabbit,all,11,,20260409T170544Z,2026-04-09T18:56:25.017018+00:00 +2025-05-13,Copilot,all,3,,20260409T170544Z,2026-04-09T18:56:25.017018+00:00 +2025-05-13,Copilot SWE Agent,all,21,1,20260409T170544Z,2026-04-09T18:56:25.017018+00:00 +2025-05-13,Crush,all,0,,20260409T170544Z,2026-04-09T18:56:25.017018+00:00 +2025-05-13,Cursor,all,0,,20260409T170544Z,2026-04-09T18:56:25.017018+00:00 +2025-05-13,DeepSource,all,12,,20260409T170544Z,2026-04-09T18:56:25.017018+00:00 +2025-05-13,Devin,all,397,,20260409T170544Z,2026-04-09T18:56:25.017018+00:00 +2025-05-13,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T18:56:25.017018+00:00 +2025-05-13,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T18:56:25.017018+00:00 +2025-05-13,Gru,all,0,,20260409T170544Z,2026-04-09T18:56:25.017018+00:00 +2025-05-13,Jules (Google),all,6,,20260409T170544Z,2026-04-09T18:56:25.017018+00:00 +2025-05-13,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T18:56:25.017018+00:00 +2025-05-13,Kilo Code,all,0,,20260409T170544Z,2026-04-09T18:56:25.017018+00:00 +2025-05-13,Lovable,all,0,,20260409T170544Z,2026-04-09T18:56:25.017018+00:00 +2025-05-13,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T18:56:25.017018+00:00 +2025-05-13,OpenCode,all,0,,20260409T170544Z,2026-04-09T18:56:25.017018+00:00 +2025-05-13,OpenHands,all,133,,20260409T170544Z,2026-04-09T18:56:25.017018+00:00 +2025-05-13,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T18:56:25.017018+00:00 +2025-05-13,Roo Code,all,0,,20260409T170544Z,2026-04-09T18:56:25.017018+00:00 +2025-05-13,Sketch,all,0,,20260409T170544Z,2026-04-09T18:56:25.017018+00:00 +2025-05-13,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T18:56:25.017018+00:00 +2025-05-13,Sweep AI,all,1,,20260409T170544Z,2026-04-09T18:56:25.017018+00:00 +2025-05-13,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T18:56:25.017018+00:00 +2025-05-14,Aider,all,944,,20260409T170544Z,2026-04-09T18:58:36.668743+00:00 +2025-05-14,Amp (Sourcegraph),all,0,1,20260409T170544Z,2026-04-09T18:58:36.668743+00:00 +2025-05-14,ChatGPT,all,23,,20260409T170544Z,2026-04-09T18:58:36.668743+00:00 +2025-05-14,Claude Code,all,13,,20260409T170544Z,2026-04-09T18:58:36.668743+00:00 +2025-05-14,Cline,all,38,,20260409T170544Z,2026-04-09T18:58:36.668743+00:00 +2025-05-14,Codegen,all,27,,20260409T170544Z,2026-04-09T18:58:36.668743+00:00 +2025-05-14,Coderabbit,all,15,,20260409T170544Z,2026-04-09T18:58:36.668743+00:00 +2025-05-14,Copilot,all,18,,20260409T170544Z,2026-04-09T18:58:36.668743+00:00 +2025-05-14,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T18:58:36.668743+00:00 +2025-05-14,Crush,all,0,,20260409T170544Z,2026-04-09T18:58:36.668743+00:00 +2025-05-14,Cursor,all,0,,20260409T170544Z,2026-04-09T18:58:36.668743+00:00 +2025-05-14,DeepSource,all,10,,20260409T170544Z,2026-04-09T18:58:36.668743+00:00 +2025-05-14,Devin,all,266,,20260409T170544Z,2026-04-09T18:58:36.668743+00:00 +2025-05-14,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T18:58:36.668743+00:00 +2025-05-14,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T18:58:36.668743+00:00 +2025-05-14,Gru,all,0,,20260409T170544Z,2026-04-09T18:58:36.668743+00:00 +2025-05-14,Jules (Google),all,5,,20260409T170544Z,2026-04-09T18:58:36.668743+00:00 +2025-05-14,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T18:58:36.668743+00:00 +2025-05-14,Kilo Code,all,0,,20260409T170544Z,2026-04-09T18:58:36.668743+00:00 +2025-05-14,Lovable,all,0,,20260409T170544Z,2026-04-09T18:58:36.668743+00:00 +2025-05-14,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T18:58:36.668743+00:00 +2025-05-14,OpenCode,all,0,,20260409T170544Z,2026-04-09T18:58:36.668743+00:00 +2025-05-14,OpenHands,all,71,,20260409T170544Z,2026-04-09T18:58:36.668743+00:00 +2025-05-14,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T18:58:36.668743+00:00 +2025-05-14,Roo Code,all,0,,20260409T170544Z,2026-04-09T18:58:36.668743+00:00 +2025-05-14,Sketch,all,0,,20260409T170544Z,2026-04-09T18:58:36.668743+00:00 +2025-05-14,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T18:58:36.668743+00:00 +2025-05-14,Sweep AI,all,0,,20260409T170544Z,2026-04-09T18:58:36.668743+00:00 +2025-05-14,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T18:58:36.668743+00:00 +2025-05-15,Aider,all,670,,20260409T170544Z,2026-04-09T19:00:48.290568+00:00 +2025-05-15,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T19:00:48.290568+00:00 +2025-05-15,ChatGPT,all,13,,20260409T170544Z,2026-04-09T19:00:48.290568+00:00 +2025-05-15,Claude Code,all,25,,20260409T170544Z,2026-04-09T19:00:48.290568+00:00 +2025-05-15,Cline,all,59,,20260409T170544Z,2026-04-09T19:00:48.290568+00:00 +2025-05-15,Codegen,all,24,,20260409T170544Z,2026-04-09T19:00:48.290568+00:00 +2025-05-15,Coderabbit,all,11,,20260409T170544Z,2026-04-09T19:00:48.290568+00:00 +2025-05-15,Copilot,all,1,,20260409T170544Z,2026-04-09T19:00:48.290568+00:00 +2025-05-15,Copilot SWE Agent,all,7,,20260409T170544Z,2026-04-09T19:00:48.290568+00:00 +2025-05-15,Crush,all,0,,20260409T170544Z,2026-04-09T19:00:48.290568+00:00 +2025-05-15,Cursor,all,2,,20260409T170544Z,2026-04-09T19:00:48.290568+00:00 +2025-05-15,DeepSource,all,4,,20260409T170544Z,2026-04-09T19:00:48.290568+00:00 +2025-05-15,Devin,all,70,,20260409T170544Z,2026-04-09T19:00:48.290568+00:00 +2025-05-15,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T19:00:48.290568+00:00 +2025-05-15,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T19:00:48.290568+00:00 +2025-05-15,Gru,all,52,,20260409T170544Z,2026-04-09T19:00:48.290568+00:00 +2025-05-15,Jules (Google),all,3,,20260409T170544Z,2026-04-09T19:00:48.290568+00:00 +2025-05-15,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T19:00:48.290568+00:00 +2025-05-15,Kilo Code,all,0,,20260409T170544Z,2026-04-09T19:00:48.290568+00:00 +2025-05-15,Lovable,all,0,,20260409T170544Z,2026-04-09T19:00:48.290568+00:00 +2025-05-15,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T19:00:48.290568+00:00 +2025-05-15,OpenCode,all,0,,20260409T170544Z,2026-04-09T19:00:48.290568+00:00 +2025-05-15,OpenHands,all,59,,20260409T170544Z,2026-04-09T19:00:48.290568+00:00 +2025-05-15,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T19:00:48.290568+00:00 +2025-05-15,Roo Code,all,0,,20260409T170544Z,2026-04-09T19:00:48.290568+00:00 +2025-05-15,Sketch,all,0,,20260409T170544Z,2026-04-09T19:00:48.290568+00:00 +2025-05-15,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T19:00:48.290568+00:00 +2025-05-15,Sweep AI,all,0,,20260409T170544Z,2026-04-09T19:00:48.290568+00:00 +2025-05-15,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T19:00:48.290568+00:00 +2025-05-16,Aider,all,817,,20260409T170544Z,2026-04-09T19:03:00.150044+00:00 +2025-05-16,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T19:03:00.150044+00:00 +2025-05-16,ChatGPT,all,27,,20260409T170544Z,2026-04-09T19:03:00.150044+00:00 +2025-05-16,Claude Code,all,9,,20260409T170544Z,2026-04-09T19:03:00.150044+00:00 +2025-05-16,Cline,all,14,,20260409T170544Z,2026-04-09T19:03:00.150044+00:00 +2025-05-16,Codegen,all,5,,20260409T170544Z,2026-04-09T19:03:00.150044+00:00 +2025-05-16,Coderabbit,all,8,,20260409T170544Z,2026-04-09T19:03:00.150044+00:00 +2025-05-16,Copilot,all,10,,20260409T170544Z,2026-04-09T19:03:00.150044+00:00 +2025-05-16,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T19:03:00.150044+00:00 +2025-05-16,Crush,all,0,,20260409T170544Z,2026-04-09T19:03:00.150044+00:00 +2025-05-16,Cursor,all,1,,20260409T170544Z,2026-04-09T19:03:00.150044+00:00 +2025-05-16,DeepSource,all,4,,20260409T170544Z,2026-04-09T19:03:00.150044+00:00 +2025-05-16,Devin,all,559,,20260409T170544Z,2026-04-09T19:03:00.150044+00:00 +2025-05-16,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T19:03:00.150044+00:00 +2025-05-16,Gemini Code Assist,all,1,,20260409T170544Z,2026-04-09T19:03:00.150044+00:00 +2025-05-16,Gru,all,14,,20260409T170544Z,2026-04-09T19:03:00.150044+00:00 +2025-05-16,Jules (Google),all,2,,20260409T170544Z,2026-04-09T19:03:00.150044+00:00 +2025-05-16,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T19:03:00.150044+00:00 +2025-05-16,Kilo Code,all,0,,20260409T170544Z,2026-04-09T19:03:00.150044+00:00 +2025-05-16,Lovable,all,0,,20260409T170544Z,2026-04-09T19:03:00.150044+00:00 +2025-05-16,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T19:03:00.150044+00:00 +2025-05-16,OpenCode,all,0,,20260409T170544Z,2026-04-09T19:03:00.150044+00:00 +2025-05-16,OpenHands,all,28,,20260409T170544Z,2026-04-09T19:03:00.150044+00:00 +2025-05-16,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T19:03:00.150044+00:00 +2025-05-16,Roo Code,all,0,,20260409T170544Z,2026-04-09T19:03:00.150044+00:00 +2025-05-16,Sketch,all,0,,20260409T170544Z,2026-04-09T19:03:00.150044+00:00 +2025-05-16,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T19:03:00.150044+00:00 +2025-05-16,Sweep AI,all,0,,20260409T170544Z,2026-04-09T19:03:00.150044+00:00 +2025-05-16,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T19:03:00.150044+00:00 +2025-05-17,Aider,all,745,,20260409T170544Z,2026-04-09T19:05:12.387671+00:00 +2025-05-17,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T19:05:12.387671+00:00 +2025-05-17,ChatGPT,all,27,,20260409T170544Z,2026-04-09T19:05:12.387671+00:00 +2025-05-17,Claude Code,all,0,,20260409T170544Z,2026-04-09T19:05:12.387671+00:00 +2025-05-17,Cline,all,6,,20260409T170544Z,2026-04-09T19:05:12.387671+00:00 +2025-05-17,Codegen,all,82,,20260409T170544Z,2026-04-09T19:05:12.387671+00:00 +2025-05-17,Coderabbit,all,14,,20260409T170544Z,2026-04-09T19:05:12.387671+00:00 +2025-05-17,Copilot,all,6,,20260409T170544Z,2026-04-09T19:05:12.387671+00:00 +2025-05-17,Copilot SWE Agent,all,0,,20260409T170544Z,2026-04-09T19:05:12.387671+00:00 +2025-05-17,Crush,all,0,,20260409T170544Z,2026-04-09T19:05:12.387671+00:00 +2025-05-17,Cursor,all,5,,20260409T170544Z,2026-04-09T19:05:12.387671+00:00 +2025-05-17,DeepSource,all,26,,20260409T170544Z,2026-04-09T19:05:12.387671+00:00 +2025-05-17,Devin,all,508,,20260409T170544Z,2026-04-09T19:05:12.387671+00:00 +2025-05-17,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T19:05:12.387671+00:00 +2025-05-17,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T19:05:12.387671+00:00 +2025-05-17,Gru,all,6,,20260409T170544Z,2026-04-09T19:05:12.387671+00:00 +2025-05-17,Jules (Google),all,3,,20260409T170544Z,2026-04-09T19:05:12.387671+00:00 +2025-05-17,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T19:05:12.387671+00:00 +2025-05-17,Kilo Code,all,0,,20260409T170544Z,2026-04-09T19:05:12.387671+00:00 +2025-05-17,Lovable,all,0,,20260409T170544Z,2026-04-09T19:05:12.387671+00:00 +2025-05-17,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T19:05:12.387671+00:00 +2025-05-17,OpenCode,all,0,,20260409T170544Z,2026-04-09T19:05:12.387671+00:00 +2025-05-17,OpenHands,all,124,,20260409T170544Z,2026-04-09T19:05:12.387671+00:00 +2025-05-17,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T19:05:12.387671+00:00 +2025-05-17,Roo Code,all,0,,20260409T170544Z,2026-04-09T19:05:12.387671+00:00 +2025-05-17,Sketch,all,0,,20260409T170544Z,2026-04-09T19:05:12.387671+00:00 +2025-05-17,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T19:05:12.387671+00:00 +2025-05-17,Sweep AI,all,0,,20260409T170544Z,2026-04-09T19:05:12.387671+00:00 +2025-05-17,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T19:05:12.387671+00:00 +2025-05-18,Aider,all,751,,20260409T170544Z,2026-04-09T19:07:24.026703+00:00 +2025-05-18,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T19:07:24.026703+00:00 +2025-05-18,ChatGPT,all,20,,20260409T170544Z,2026-04-09T19:07:24.026703+00:00 +2025-05-18,Claude Code,all,0,,20260409T170544Z,2026-04-09T19:07:24.026703+00:00 +2025-05-18,Cline,all,2,,20260409T170544Z,2026-04-09T19:07:24.026703+00:00 +2025-05-18,Codegen,all,2,,20260409T170544Z,2026-04-09T19:07:24.026703+00:00 +2025-05-18,Coderabbit,all,6,,20260409T170544Z,2026-04-09T19:07:24.026703+00:00 +2025-05-18,Copilot,all,10,,20260409T170544Z,2026-04-09T19:07:24.026703+00:00 +2025-05-18,Copilot SWE Agent,all,21,,20260409T170544Z,2026-04-09T19:07:24.026703+00:00 +2025-05-18,Crush,all,0,,20260409T170544Z,2026-04-09T19:07:24.026703+00:00 +2025-05-18,Cursor,all,4,,20260409T170544Z,2026-04-09T19:07:24.026703+00:00 +2025-05-18,DeepSource,all,9,,20260409T170544Z,2026-04-09T19:07:24.026703+00:00 +2025-05-18,Devin,all,36,,20260409T170544Z,2026-04-09T19:07:24.026703+00:00 +2025-05-18,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T19:07:24.026703+00:00 +2025-05-18,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T19:07:24.026703+00:00 +2025-05-18,Gru,all,6,,20260409T170544Z,2026-04-09T19:07:24.026703+00:00 +2025-05-18,Jules (Google),all,5,,20260409T170544Z,2026-04-09T19:07:24.026703+00:00 +2025-05-18,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T19:07:24.026703+00:00 +2025-05-18,Kilo Code,all,0,,20260409T170544Z,2026-04-09T19:07:24.026703+00:00 +2025-05-18,Lovable,all,1,,20260409T170544Z,2026-04-09T19:07:24.026703+00:00 +2025-05-18,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T19:07:24.026703+00:00 +2025-05-18,OpenCode,all,0,,20260409T170544Z,2026-04-09T19:07:24.026703+00:00 +2025-05-18,OpenHands,all,50,,20260409T170544Z,2026-04-09T19:07:24.026703+00:00 +2025-05-18,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T19:07:24.026703+00:00 +2025-05-18,Roo Code,all,0,,20260409T170544Z,2026-04-09T19:07:24.026703+00:00 +2025-05-18,Sketch,all,0,,20260409T170544Z,2026-04-09T19:07:24.026703+00:00 +2025-05-18,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T19:07:24.026703+00:00 +2025-05-18,Sweep AI,all,24,,20260409T170544Z,2026-04-09T19:07:24.026703+00:00 +2025-05-18,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T19:07:24.026703+00:00 +2025-05-19,Aider,all,874,,20260409T170544Z,2026-04-09T19:09:35.937015+00:00 +2025-05-19,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T19:09:35.937015+00:00 +2025-05-19,ChatGPT,all,20,,20260409T170544Z,2026-04-09T19:09:35.937015+00:00 +2025-05-19,Claude Code,all,0,,20260409T170544Z,2026-04-09T19:09:35.937015+00:00 +2025-05-19,Cline,all,7,,20260409T170544Z,2026-04-09T19:09:35.937015+00:00 +2025-05-19,Codegen,all,41,,20260409T170544Z,2026-04-09T19:09:35.937015+00:00 +2025-05-19,Coderabbit,all,7,,20260409T170544Z,2026-04-09T19:09:35.937015+00:00 +2025-05-19,Copilot,all,1,,20260409T170544Z,2026-04-09T19:09:35.937015+00:00 +2025-05-19,Copilot SWE Agent,all,137,1,20260409T170544Z,2026-04-09T19:09:35.937015+00:00 +2025-05-19,Crush,all,0,,20260409T170544Z,2026-04-09T19:09:35.937015+00:00 +2025-05-19,Cursor,all,0,,20260409T170544Z,2026-04-09T19:09:35.937015+00:00 +2025-05-19,DeepSource,all,12,,20260409T170544Z,2026-04-09T19:09:35.937015+00:00 +2025-05-19,Devin,all,272,,20260409T170544Z,2026-04-09T19:09:35.937015+00:00 +2025-05-19,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T19:09:35.937015+00:00 +2025-05-19,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T19:09:35.937015+00:00 +2025-05-19,Gru,all,6,,20260409T170544Z,2026-04-09T19:09:35.937015+00:00 +2025-05-19,Jules (Google),all,110,,20260409T170544Z,2026-04-09T19:09:35.937015+00:00 +2025-05-19,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T19:09:35.937015+00:00 +2025-05-19,Kilo Code,all,0,,20260409T170544Z,2026-04-09T19:09:35.937015+00:00 +2025-05-19,Lovable,all,0,,20260409T170544Z,2026-04-09T19:09:35.937015+00:00 +2025-05-19,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T19:09:35.937015+00:00 +2025-05-19,OpenCode,all,0,,20260409T170544Z,2026-04-09T19:09:35.937015+00:00 +2025-05-19,OpenHands,all,116,,20260409T170544Z,2026-04-09T19:09:35.937015+00:00 +2025-05-19,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T19:09:35.937015+00:00 +2025-05-19,Roo Code,all,0,,20260409T170544Z,2026-04-09T19:09:35.937015+00:00 +2025-05-19,Sketch,all,0,,20260409T170544Z,2026-04-09T19:09:35.937015+00:00 +2025-05-19,Sourcery AI,all,0,1,20260409T170544Z,2026-04-09T19:09:35.937015+00:00 +2025-05-19,Sweep AI,all,1,,20260409T170544Z,2026-04-09T19:09:35.937015+00:00 +2025-05-19,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T19:09:35.937015+00:00 +2025-05-20,Aider,all,583,,20260409T170544Z,2026-04-09T19:12:50.175396+00:00 +2025-05-20,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T19:12:50.175396+00:00 +2025-05-20,ChatGPT,all,63,,20260409T170544Z,2026-04-09T19:12:50.175396+00:00 +2025-05-20,Claude Code,all,2,,20260409T170544Z,2026-04-09T19:12:50.175396+00:00 +2025-05-20,Cline,all,39,,20260409T170544Z,2026-04-09T19:12:50.175396+00:00 +2025-05-20,Codegen,all,118,,20260409T170544Z,2026-04-09T19:12:50.175396+00:00 +2025-05-20,Coderabbit,all,10,,20260409T170544Z,2026-04-09T19:12:50.175396+00:00 +2025-05-20,Copilot,all,0,,20260409T170544Z,2026-04-09T19:12:50.175396+00:00 +2025-05-20,Copilot SWE Agent,all,519,,20260409T170544Z,2026-04-09T19:12:50.175396+00:00 +2025-05-20,Crush,all,0,,20260409T170544Z,2026-04-09T19:12:50.175396+00:00 +2025-05-20,Cursor,all,0,,20260409T170544Z,2026-04-09T19:12:50.175396+00:00 +2025-05-20,DeepSource,all,6,,20260409T170544Z,2026-04-09T19:12:50.175396+00:00 +2025-05-20,Devin,all,659,,20260409T170544Z,2026-04-09T19:12:50.175396+00:00 +2025-05-20,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T19:12:50.175396+00:00 +2025-05-20,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T19:12:50.175396+00:00 +2025-05-20,Gru,all,1,,20260409T170544Z,2026-04-09T19:12:50.175396+00:00 +2025-05-20,Jules (Google),all,703,,20260409T170544Z,2026-04-09T19:12:50.175396+00:00 +2025-05-20,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T19:12:50.175396+00:00 +2025-05-20,Kilo Code,all,0,,20260409T170544Z,2026-04-09T19:12:50.175396+00:00 +2025-05-20,Lovable,all,0,,20260409T170544Z,2026-04-09T19:12:50.175396+00:00 +2025-05-20,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T19:12:50.175396+00:00 +2025-05-20,OpenCode,all,0,,20260409T170544Z,2026-04-09T19:12:50.175396+00:00 +2025-05-20,OpenHands,all,97,,20260409T170544Z,2026-04-09T19:12:50.175396+00:00 +2025-05-20,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T19:12:50.175396+00:00 +2025-05-20,Roo Code,all,0,,20260409T170544Z,2026-04-09T19:12:50.175396+00:00 +2025-05-20,Sketch,all,0,,20260409T170544Z,2026-04-09T19:12:50.175396+00:00 +2025-05-20,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T19:12:50.175396+00:00 +2025-05-20,Sweep AI,all,0,,20260409T170544Z,2026-04-09T19:12:50.175396+00:00 +2025-05-20,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T19:12:50.175396+00:00 +2025-05-21,Aider,all,828,,20260409T170544Z,2026-04-09T19:15:02.482008+00:00 +2025-05-21,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T19:15:02.482008+00:00 +2025-05-21,ChatGPT,all,23,,20260409T170544Z,2026-04-09T19:15:02.482008+00:00 +2025-05-21,Claude Code,all,0,,20260409T170544Z,2026-04-09T19:15:02.482008+00:00 +2025-05-21,Cline,all,10,,20260409T170544Z,2026-04-09T19:15:02.482008+00:00 +2025-05-21,Codegen,all,27,,20260409T170544Z,2026-04-09T19:15:02.482008+00:00 +2025-05-21,Coderabbit,all,15,,20260409T170544Z,2026-04-09T19:15:02.482008+00:00 +2025-05-21,Copilot,all,4,,20260409T170544Z,2026-04-09T19:15:02.482008+00:00 +2025-05-21,Copilot SWE Agent,all,663,,20260409T170544Z,2026-04-09T19:15:02.482008+00:00 +2025-05-21,Crush,all,0,,20260409T170544Z,2026-04-09T19:15:02.482008+00:00 +2025-05-21,Cursor,all,2,,20260409T170544Z,2026-04-09T19:15:02.482008+00:00 +2025-05-21,DeepSource,all,4,,20260409T170544Z,2026-04-09T19:15:02.482008+00:00 +2025-05-21,Devin,all,579,,20260409T170544Z,2026-04-09T19:15:02.482008+00:00 +2025-05-21,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T19:15:02.482008+00:00 +2025-05-21,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T19:15:02.482008+00:00 +2025-05-21,Gru,all,0,,20260409T170544Z,2026-04-09T19:15:02.482008+00:00 +2025-05-21,Jules (Google),all,2321,,20260409T170544Z,2026-04-09T19:15:02.482008+00:00 +2025-05-21,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T19:15:02.482008+00:00 +2025-05-21,Kilo Code,all,0,,20260409T170544Z,2026-04-09T19:15:02.482008+00:00 +2025-05-21,Lovable,all,0,,20260409T170544Z,2026-04-09T19:15:02.482008+00:00 +2025-05-21,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T19:15:02.482008+00:00 +2025-05-21,OpenCode,all,0,,20260409T170544Z,2026-04-09T19:15:02.482008+00:00 +2025-05-21,OpenHands,all,155,,20260409T170544Z,2026-04-09T19:15:02.482008+00:00 +2025-05-21,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T19:15:02.482008+00:00 +2025-05-21,Roo Code,all,0,,20260409T170544Z,2026-04-09T19:15:02.482008+00:00 +2025-05-21,Sketch,all,0,,20260409T170544Z,2026-04-09T19:15:02.482008+00:00 +2025-05-21,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T19:15:02.482008+00:00 +2025-05-21,Sweep AI,all,2,,20260409T170544Z,2026-04-09T19:15:02.482008+00:00 +2025-05-21,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T19:15:02.482008+00:00 +2025-05-22,Aider,all,1076,,20260409T170544Z,2026-04-09T19:17:15.230276+00:00 +2025-05-22,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T19:17:15.230276+00:00 +2025-05-22,ChatGPT,all,8,,20260409T170544Z,2026-04-09T19:17:15.230276+00:00 +2025-05-22,Claude Code,all,11,,20260409T170544Z,2026-04-09T19:17:15.230276+00:00 +2025-05-22,Cline,all,23,,20260409T170544Z,2026-04-09T19:17:15.230276+00:00 +2025-05-22,Codegen,all,31,,20260409T170544Z,2026-04-09T19:17:15.230276+00:00 +2025-05-22,Coderabbit,all,7,,20260409T170544Z,2026-04-09T19:17:15.230276+00:00 +2025-05-22,Copilot,all,5,,20260409T170544Z,2026-04-09T19:17:15.230276+00:00 +2025-05-22,Copilot SWE Agent,all,598,,20260409T170544Z,2026-04-09T19:17:15.230276+00:00 +2025-05-22,Crush,all,0,,20260409T170544Z,2026-04-09T19:17:15.230276+00:00 +2025-05-22,Cursor,all,80,,20260409T170544Z,2026-04-09T19:17:15.230276+00:00 +2025-05-22,DeepSource,all,27,,20260409T170544Z,2026-04-09T19:17:15.230276+00:00 +2025-05-22,Devin,all,383,,20260409T170544Z,2026-04-09T19:17:15.230276+00:00 +2025-05-22,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T19:17:15.230276+00:00 +2025-05-22,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T19:17:15.230276+00:00 +2025-05-22,Gru,all,0,,20260409T170544Z,2026-04-09T19:17:15.230276+00:00 +2025-05-22,Jules (Google),all,2387,,20260409T170544Z,2026-04-09T19:17:15.230276+00:00 +2025-05-22,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T19:17:15.230276+00:00 +2025-05-22,Kilo Code,all,0,,20260409T170544Z,2026-04-09T19:17:15.230276+00:00 +2025-05-22,Lovable,all,0,,20260409T170544Z,2026-04-09T19:17:15.230276+00:00 +2025-05-22,OpenAI Codex,all,4,,20260409T170544Z,2026-04-09T19:17:15.230276+00:00 +2025-05-22,OpenCode,all,0,,20260409T170544Z,2026-04-09T19:17:15.230276+00:00 +2025-05-22,OpenHands,all,152,,20260409T170544Z,2026-04-09T19:17:15.230276+00:00 +2025-05-22,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T19:17:15.230276+00:00 +2025-05-22,Roo Code,all,0,,20260409T170544Z,2026-04-09T19:17:15.230276+00:00 +2025-05-22,Sketch,all,0,,20260409T170544Z,2026-04-09T19:17:15.230276+00:00 +2025-05-22,Sourcery AI,all,2,,20260409T170544Z,2026-04-09T19:17:15.230276+00:00 +2025-05-22,Sweep AI,all,0,,20260409T170544Z,2026-04-09T19:17:15.230276+00:00 +2025-05-22,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T19:17:15.230276+00:00 +2025-05-23,Aider,all,1070,,20260409T170544Z,2026-04-09T19:19:26.814616+00:00 +2025-05-23,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T19:19:26.814616+00:00 +2025-05-23,ChatGPT,all,8,,20260409T170544Z,2026-04-09T19:19:26.814616+00:00 +2025-05-23,Claude Code,all,7,,20260409T170544Z,2026-04-09T19:19:26.814616+00:00 +2025-05-23,Cline,all,19,,20260409T170544Z,2026-04-09T19:19:26.814616+00:00 +2025-05-23,Codegen,all,41,,20260409T170544Z,2026-04-09T19:19:26.814616+00:00 +2025-05-23,Coderabbit,all,9,,20260409T170544Z,2026-04-09T19:19:26.814616+00:00 +2025-05-23,Copilot,all,2,1,20260409T170544Z,2026-04-09T19:19:26.814616+00:00 +2025-05-23,Copilot SWE Agent,all,458,1,20260409T170544Z,2026-04-09T19:19:26.814616+00:00 +2025-05-23,Crush,all,0,,20260409T170544Z,2026-04-09T19:19:26.814616+00:00 +2025-05-23,Cursor,all,11,,20260409T170544Z,2026-04-09T19:19:26.814616+00:00 +2025-05-23,DeepSource,all,20,,20260409T170544Z,2026-04-09T19:19:26.814616+00:00 +2025-05-23,Devin,all,377,,20260409T170544Z,2026-04-09T19:19:26.814616+00:00 +2025-05-23,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T19:19:26.814616+00:00 +2025-05-23,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T19:19:26.814616+00:00 +2025-05-23,Gru,all,0,,20260409T170544Z,2026-04-09T19:19:26.814616+00:00 +2025-05-23,Jules (Google),all,2886,1,20260409T170544Z,2026-04-09T19:19:26.814616+00:00 +2025-05-23,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T19:19:26.814616+00:00 +2025-05-23,Kilo Code,all,0,,20260409T170544Z,2026-04-09T19:19:26.814616+00:00 +2025-05-23,Lovable,all,0,,20260409T170544Z,2026-04-09T19:19:26.814616+00:00 +2025-05-23,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T19:19:26.814616+00:00 +2025-05-23,OpenCode,all,0,,20260409T170544Z,2026-04-09T19:19:26.814616+00:00 +2025-05-23,OpenHands,all,211,,20260409T170544Z,2026-04-09T19:19:26.814616+00:00 +2025-05-23,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T19:19:26.814616+00:00 +2025-05-23,Roo Code,all,0,,20260409T170544Z,2026-04-09T19:19:26.814616+00:00 +2025-05-23,Sketch,all,0,,20260409T170544Z,2026-04-09T19:19:26.814616+00:00 +2025-05-23,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T19:19:26.814616+00:00 +2025-05-23,Sweep AI,all,0,,20260409T170544Z,2026-04-09T19:19:26.814616+00:00 +2025-05-23,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T19:19:26.814616+00:00 +2025-05-24,Aider,all,888,,20260409T170544Z,2026-04-09T19:22:40.575059+00:00 +2025-05-24,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T19:22:40.575059+00:00 +2025-05-24,ChatGPT,all,8,1,20260409T170544Z,2026-04-09T19:22:40.575059+00:00 +2025-05-24,Claude Code,all,10,,20260409T170544Z,2026-04-09T19:22:40.575059+00:00 +2025-05-24,Cline,all,83,,20260409T170544Z,2026-04-09T19:22:40.575059+00:00 +2025-05-24,Codegen,all,118,,20260409T170544Z,2026-04-09T19:22:40.575059+00:00 +2025-05-24,Coderabbit,all,8,,20260409T170544Z,2026-04-09T19:22:40.575059+00:00 +2025-05-24,Copilot,all,18,,20260409T170544Z,2026-04-09T19:22:40.575059+00:00 +2025-05-24,Copilot SWE Agent,all,469,,20260409T170544Z,2026-04-09T19:22:40.575059+00:00 +2025-05-24,Crush,all,0,,20260409T170544Z,2026-04-09T19:22:40.575059+00:00 +2025-05-24,Cursor,all,38,,20260409T170544Z,2026-04-09T19:22:40.575059+00:00 +2025-05-24,DeepSource,all,13,,20260409T170544Z,2026-04-09T19:22:40.575059+00:00 +2025-05-24,Devin,all,222,,20260409T170544Z,2026-04-09T19:22:40.575059+00:00 +2025-05-24,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T19:22:40.575059+00:00 +2025-05-24,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T19:22:40.575059+00:00 +2025-05-24,Gru,all,0,,20260409T170544Z,2026-04-09T19:22:40.575059+00:00 +2025-05-24,Jules (Google),all,2399,,20260409T170544Z,2026-04-09T19:22:40.575059+00:00 +2025-05-24,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T19:22:40.575059+00:00 +2025-05-24,Kilo Code,all,0,,20260409T170544Z,2026-04-09T19:22:40.575059+00:00 +2025-05-24,Lovable,all,0,,20260409T170544Z,2026-04-09T19:22:40.575059+00:00 +2025-05-24,OpenAI Codex,all,14,,20260409T170544Z,2026-04-09T19:22:40.575059+00:00 +2025-05-24,OpenCode,all,0,,20260409T170544Z,2026-04-09T19:22:40.575059+00:00 +2025-05-24,OpenHands,all,131,,20260409T170544Z,2026-04-09T19:22:40.575059+00:00 +2025-05-24,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T19:22:40.575059+00:00 +2025-05-24,Roo Code,all,0,,20260409T170544Z,2026-04-09T19:22:40.575059+00:00 +2025-05-24,Sketch,all,0,,20260409T170544Z,2026-04-09T19:22:40.575059+00:00 +2025-05-24,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T19:22:40.575059+00:00 +2025-05-24,Sweep AI,all,0,,20260409T170544Z,2026-04-09T19:22:40.575059+00:00 +2025-05-24,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T19:22:40.575059+00:00 +2025-05-25,Aider,all,1294,,20260409T170544Z,2026-04-09T19:24:53.164897+00:00 +2025-05-25,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T19:24:53.164897+00:00 +2025-05-25,ChatGPT,all,5,,20260409T170544Z,2026-04-09T19:24:53.164897+00:00 +2025-05-25,Claude Code,all,0,,20260409T170544Z,2026-04-09T19:24:53.164897+00:00 +2025-05-25,Cline,all,13,,20260409T170544Z,2026-04-09T19:24:53.164897+00:00 +2025-05-25,Codegen,all,97,,20260409T170544Z,2026-04-09T19:24:53.164897+00:00 +2025-05-25,Coderabbit,all,8,,20260409T170544Z,2026-04-09T19:24:53.164897+00:00 +2025-05-25,Copilot,all,9,,20260409T170544Z,2026-04-09T19:24:53.164897+00:00 +2025-05-25,Copilot SWE Agent,all,436,,20260409T170544Z,2026-04-09T19:24:53.164897+00:00 +2025-05-25,Crush,all,0,,20260409T170544Z,2026-04-09T19:24:53.164897+00:00 +2025-05-25,Cursor,all,8,,20260409T170544Z,2026-04-09T19:24:53.164897+00:00 +2025-05-25,DeepSource,all,8,,20260409T170544Z,2026-04-09T19:24:53.164897+00:00 +2025-05-25,Devin,all,56,,20260409T170544Z,2026-04-09T19:24:53.164897+00:00 +2025-05-25,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T19:24:53.164897+00:00 +2025-05-25,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T19:24:53.164897+00:00 +2025-05-25,Gru,all,1,,20260409T170544Z,2026-04-09T19:24:53.164897+00:00 +2025-05-25,Jules (Google),all,2266,,20260409T170544Z,2026-04-09T19:24:53.164897+00:00 +2025-05-25,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T19:24:53.164897+00:00 +2025-05-25,Kilo Code,all,0,,20260409T170544Z,2026-04-09T19:24:53.164897+00:00 +2025-05-25,Lovable,all,0,,20260409T170544Z,2026-04-09T19:24:53.164897+00:00 +2025-05-25,OpenAI Codex,all,2,,20260409T170544Z,2026-04-09T19:24:53.164897+00:00 +2025-05-25,OpenCode,all,0,,20260409T170544Z,2026-04-09T19:24:53.164897+00:00 +2025-05-25,OpenHands,all,67,,20260409T170544Z,2026-04-09T19:24:53.164897+00:00 +2025-05-25,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T19:24:53.164897+00:00 +2025-05-25,Roo Code,all,0,,20260409T170544Z,2026-04-09T19:24:53.164897+00:00 +2025-05-25,Sketch,all,0,,20260409T170544Z,2026-04-09T19:24:53.164897+00:00 +2025-05-25,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T19:24:53.164897+00:00 +2025-05-25,Sweep AI,all,0,,20260409T170544Z,2026-04-09T19:24:53.164897+00:00 +2025-05-25,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T19:24:53.164897+00:00 +2025-05-26,Aider,all,828,,20260409T170544Z,2026-04-09T19:27:04.854145+00:00 +2025-05-26,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T19:27:04.854145+00:00 +2025-05-26,ChatGPT,all,6,,20260409T170544Z,2026-04-09T19:27:04.854145+00:00 +2025-05-26,Claude Code,all,0,,20260409T170544Z,2026-04-09T19:27:04.854145+00:00 +2025-05-26,Cline,all,28,,20260409T170544Z,2026-04-09T19:27:04.854145+00:00 +2025-05-26,Codegen,all,19,,20260409T170544Z,2026-04-09T19:27:04.854145+00:00 +2025-05-26,Coderabbit,all,19,,20260409T170544Z,2026-04-09T19:27:04.854145+00:00 +2025-05-26,Copilot,all,42,,20260409T170544Z,2026-04-09T19:27:04.854145+00:00 +2025-05-26,Copilot SWE Agent,all,633,,20260409T170544Z,2026-04-09T19:27:04.854145+00:00 +2025-05-26,Crush,all,0,,20260409T170544Z,2026-04-09T19:27:04.854145+00:00 +2025-05-26,Cursor,all,13,,20260409T170544Z,2026-04-09T19:27:04.854145+00:00 +2025-05-26,DeepSource,all,12,,20260409T170544Z,2026-04-09T19:27:04.854145+00:00 +2025-05-26,Devin,all,69,,20260409T170544Z,2026-04-09T19:27:04.854145+00:00 +2025-05-26,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T19:27:04.854145+00:00 +2025-05-26,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T19:27:04.854145+00:00 +2025-05-26,Gru,all,18,,20260409T170544Z,2026-04-09T19:27:04.854145+00:00 +2025-05-26,Jules (Google),all,2285,,20260409T170544Z,2026-04-09T19:27:04.854145+00:00 +2025-05-26,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T19:27:04.854145+00:00 +2025-05-26,Kilo Code,all,0,,20260409T170544Z,2026-04-09T19:27:04.854145+00:00 +2025-05-26,Lovable,all,0,,20260409T170544Z,2026-04-09T19:27:04.854145+00:00 +2025-05-26,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T19:27:04.854145+00:00 +2025-05-26,OpenCode,all,0,,20260409T170544Z,2026-04-09T19:27:04.854145+00:00 +2025-05-26,OpenHands,all,206,,20260409T170544Z,2026-04-09T19:27:04.854145+00:00 +2025-05-26,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T19:27:04.854145+00:00 +2025-05-26,Roo Code,all,0,,20260409T170544Z,2026-04-09T19:27:04.854145+00:00 +2025-05-26,Sketch,all,0,,20260409T170544Z,2026-04-09T19:27:04.854145+00:00 +2025-05-26,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T19:27:04.854145+00:00 +2025-05-26,Sweep AI,all,0,,20260409T170544Z,2026-04-09T19:27:04.854145+00:00 +2025-05-26,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T19:27:04.854145+00:00 +2025-05-27,Aider,all,967,,20260409T170544Z,2026-04-09T19:29:17.142547+00:00 +2025-05-27,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T19:29:17.142547+00:00 +2025-05-27,ChatGPT,all,1,,20260409T170544Z,2026-04-09T19:29:17.142547+00:00 +2025-05-27,Claude Code,all,1,,20260409T170544Z,2026-04-09T19:29:17.142547+00:00 +2025-05-27,Cline,all,33,,20260409T170544Z,2026-04-09T19:29:17.142547+00:00 +2025-05-27,Codegen,all,64,,20260409T170544Z,2026-04-09T19:29:17.142547+00:00 +2025-05-27,Coderabbit,all,6,,20260409T170544Z,2026-04-09T19:29:17.142547+00:00 +2025-05-27,Copilot,all,30,,20260409T170544Z,2026-04-09T19:29:17.142547+00:00 +2025-05-27,Copilot SWE Agent,all,737,,20260409T170544Z,2026-04-09T19:29:17.142547+00:00 +2025-05-27,Crush,all,0,,20260409T170544Z,2026-04-09T19:29:17.142547+00:00 +2025-05-27,Cursor,all,5,,20260409T170544Z,2026-04-09T19:29:17.142547+00:00 +2025-05-27,DeepSource,all,29,,20260409T170544Z,2026-04-09T19:29:17.142547+00:00 +2025-05-27,Devin,all,77,,20260409T170544Z,2026-04-09T19:29:17.142547+00:00 +2025-05-27,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T19:29:17.142547+00:00 +2025-05-27,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T19:29:17.142547+00:00 +2025-05-27,Gru,all,0,,20260409T170544Z,2026-04-09T19:29:17.142547+00:00 +2025-05-27,Jules (Google),all,2117,,20260409T170544Z,2026-04-09T19:29:17.142547+00:00 +2025-05-27,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T19:29:17.142547+00:00 +2025-05-27,Kilo Code,all,0,,20260409T170544Z,2026-04-09T19:29:17.142547+00:00 +2025-05-27,Lovable,all,0,,20260409T170544Z,2026-04-09T19:29:17.142547+00:00 +2025-05-27,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T19:29:17.142547+00:00 +2025-05-27,OpenCode,all,0,,20260409T170544Z,2026-04-09T19:29:17.142547+00:00 +2025-05-27,OpenHands,all,74,,20260409T170544Z,2026-04-09T19:29:17.142547+00:00 +2025-05-27,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T19:29:17.142547+00:00 +2025-05-27,Roo Code,all,0,,20260409T170544Z,2026-04-09T19:29:17.142547+00:00 +2025-05-27,Sketch,all,0,,20260409T170544Z,2026-04-09T19:29:17.142547+00:00 +2025-05-27,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T19:29:17.142547+00:00 +2025-05-27,Sweep AI,all,0,,20260409T170544Z,2026-04-09T19:29:17.142547+00:00 +2025-05-27,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T19:29:17.142547+00:00 +2025-05-28,Aider,all,1062,,20260409T170544Z,2026-04-09T19:31:28.160992+00:00 +2025-05-28,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T19:31:28.160992+00:00 +2025-05-28,ChatGPT,all,21,,20260409T170544Z,2026-04-09T19:31:28.160992+00:00 +2025-05-28,Claude Code,all,6,,20260409T170544Z,2026-04-09T19:31:28.160992+00:00 +2025-05-28,Cline,all,55,,20260409T170544Z,2026-04-09T19:31:28.160992+00:00 +2025-05-28,Codegen,all,25,,20260409T170544Z,2026-04-09T19:31:28.160992+00:00 +2025-05-28,Coderabbit,all,10,,20260409T170544Z,2026-04-09T19:31:28.160992+00:00 +2025-05-28,Copilot,all,23,1,20260409T170544Z,2026-04-09T19:31:28.160992+00:00 +2025-05-28,Copilot SWE Agent,all,654,,20260409T170544Z,2026-04-09T19:31:28.160992+00:00 +2025-05-28,Crush,all,0,,20260409T170544Z,2026-04-09T19:31:28.160992+00:00 +2025-05-28,Cursor,all,10,,20260409T170544Z,2026-04-09T19:31:28.160992+00:00 +2025-05-28,DeepSource,all,7,,20260409T170544Z,2026-04-09T19:31:28.160992+00:00 +2025-05-28,Devin,all,51,,20260409T170544Z,2026-04-09T19:31:28.160992+00:00 +2025-05-28,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T19:31:28.160992+00:00 +2025-05-28,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T19:31:28.160992+00:00 +2025-05-28,Gru,all,0,,20260409T170544Z,2026-04-09T19:31:28.160992+00:00 +2025-05-28,Jules (Google),all,1817,,20260409T170544Z,2026-04-09T19:31:28.160992+00:00 +2025-05-28,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T19:31:28.160992+00:00 +2025-05-28,Kilo Code,all,0,,20260409T170544Z,2026-04-09T19:31:28.160992+00:00 +2025-05-28,Lovable,all,0,,20260409T170544Z,2026-04-09T19:31:28.160992+00:00 +2025-05-28,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T19:31:28.160992+00:00 +2025-05-28,OpenCode,all,0,,20260409T170544Z,2026-04-09T19:31:28.160992+00:00 +2025-05-28,OpenHands,all,118,,20260409T170544Z,2026-04-09T19:31:28.160992+00:00 +2025-05-28,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T19:31:28.160992+00:00 +2025-05-28,Roo Code,all,0,,20260409T170544Z,2026-04-09T19:31:28.160992+00:00 +2025-05-28,Sketch,all,0,,20260409T170544Z,2026-04-09T19:31:28.160992+00:00 +2025-05-28,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T19:31:28.160992+00:00 +2025-05-28,Sweep AI,all,0,,20260409T170544Z,2026-04-09T19:31:28.160992+00:00 +2025-05-28,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T19:31:28.160992+00:00 +2025-05-29,Aider,all,763,,20260409T170544Z,2026-04-09T19:33:41.000770+00:00 +2025-05-29,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T19:33:41.000770+00:00 +2025-05-29,ChatGPT,all,3,,20260409T170544Z,2026-04-09T19:33:41.000770+00:00 +2025-05-29,Claude Code,all,18,,20260409T170544Z,2026-04-09T19:33:41.000770+00:00 +2025-05-29,Cline,all,20,,20260409T170544Z,2026-04-09T19:33:41.000770+00:00 +2025-05-29,Codegen,all,18,,20260409T170544Z,2026-04-09T19:33:41.000770+00:00 +2025-05-29,Coderabbit,all,13,,20260409T170544Z,2026-04-09T19:33:41.000770+00:00 +2025-05-29,Copilot,all,2,1,20260409T170544Z,2026-04-09T19:33:41.000770+00:00 +2025-05-29,Copilot SWE Agent,all,569,,20260409T170544Z,2026-04-09T19:33:41.000770+00:00 +2025-05-29,Crush,all,0,,20260409T170544Z,2026-04-09T19:33:41.000770+00:00 +2025-05-29,Cursor,all,7,,20260409T170544Z,2026-04-09T19:33:41.000770+00:00 +2025-05-29,DeepSource,all,5,,20260409T170544Z,2026-04-09T19:33:41.000770+00:00 +2025-05-29,Devin,all,220,,20260409T170544Z,2026-04-09T19:33:41.000770+00:00 +2025-05-29,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T19:33:41.000770+00:00 +2025-05-29,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T19:33:41.000770+00:00 +2025-05-29,Gru,all,0,,20260409T170544Z,2026-04-09T19:33:41.000770+00:00 +2025-05-29,Jules (Google),all,1973,,20260409T170544Z,2026-04-09T19:33:41.000770+00:00 +2025-05-29,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T19:33:41.000770+00:00 +2025-05-29,Kilo Code,all,0,,20260409T170544Z,2026-04-09T19:33:41.000770+00:00 +2025-05-29,Lovable,all,1,,20260409T170544Z,2026-04-09T19:33:41.000770+00:00 +2025-05-29,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T19:33:41.000770+00:00 +2025-05-29,OpenCode,all,0,,20260409T170544Z,2026-04-09T19:33:41.000770+00:00 +2025-05-29,OpenHands,all,201,,20260409T170544Z,2026-04-09T19:33:41.000770+00:00 +2025-05-29,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T19:33:41.000770+00:00 +2025-05-29,Roo Code,all,0,,20260409T170544Z,2026-04-09T19:33:41.000770+00:00 +2025-05-29,Sketch,all,0,,20260409T170544Z,2026-04-09T19:33:41.000770+00:00 +2025-05-29,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T19:33:41.000770+00:00 +2025-05-29,Sweep AI,all,1,,20260409T170544Z,2026-04-09T19:33:41.000770+00:00 +2025-05-29,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T19:33:41.000770+00:00 +2025-05-30,Aider,all,733,,20260409T170544Z,2026-04-09T19:35:53.183821+00:00 +2025-05-30,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T19:35:53.183821+00:00 +2025-05-30,ChatGPT,all,17,,20260409T170544Z,2026-04-09T19:35:53.183821+00:00 +2025-05-30,Claude Code,all,43,,20260409T170544Z,2026-04-09T19:35:53.183821+00:00 +2025-05-30,Cline,all,34,,20260409T170544Z,2026-04-09T19:35:53.183821+00:00 +2025-05-30,Codegen,all,79,,20260409T170544Z,2026-04-09T19:35:53.183821+00:00 +2025-05-30,Coderabbit,all,32,,20260409T170544Z,2026-04-09T19:35:53.183821+00:00 +2025-05-30,Copilot,all,24,,20260409T170544Z,2026-04-09T19:35:53.183821+00:00 +2025-05-30,Copilot SWE Agent,all,532,,20260409T170544Z,2026-04-09T19:35:53.183821+00:00 +2025-05-30,Crush,all,0,,20260409T170544Z,2026-04-09T19:35:53.183821+00:00 +2025-05-30,Cursor,all,7,1,20260409T170544Z,2026-04-09T19:35:53.183821+00:00 +2025-05-30,DeepSource,all,4,,20260409T170544Z,2026-04-09T19:35:53.183821+00:00 +2025-05-30,Devin,all,217,,20260409T170544Z,2026-04-09T19:35:53.183821+00:00 +2025-05-30,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T19:35:53.183821+00:00 +2025-05-30,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T19:35:53.183821+00:00 +2025-05-30,Gru,all,0,,20260409T170544Z,2026-04-09T19:35:53.183821+00:00 +2025-05-30,Jules (Google),all,2177,,20260409T170544Z,2026-04-09T19:35:53.183821+00:00 +2025-05-30,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T19:35:53.183821+00:00 +2025-05-30,Kilo Code,all,0,,20260409T170544Z,2026-04-09T19:35:53.183821+00:00 +2025-05-30,Lovable,all,0,,20260409T170544Z,2026-04-09T19:35:53.183821+00:00 +2025-05-30,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T19:35:53.183821+00:00 +2025-05-30,OpenCode,all,0,,20260409T170544Z,2026-04-09T19:35:53.183821+00:00 +2025-05-30,OpenHands,all,95,,20260409T170544Z,2026-04-09T19:35:53.183821+00:00 +2025-05-30,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T19:35:53.183821+00:00 +2025-05-30,Roo Code,all,0,,20260409T170544Z,2026-04-09T19:35:53.183821+00:00 +2025-05-30,Sketch,all,0,,20260409T170544Z,2026-04-09T19:35:53.183821+00:00 +2025-05-30,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T19:35:53.183821+00:00 +2025-05-30,Sweep AI,all,0,,20260409T170544Z,2026-04-09T19:35:53.183821+00:00 +2025-05-30,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T19:35:53.183821+00:00 +2025-05-31,Aider,all,824,,20260409T170544Z,2026-04-09T19:38:05.437093+00:00 +2025-05-31,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T19:38:05.437093+00:00 +2025-05-31,ChatGPT,all,16,,20260409T170544Z,2026-04-09T19:38:05.437093+00:00 +2025-05-31,Claude Code,all,32,,20260409T170544Z,2026-04-09T19:38:05.437093+00:00 +2025-05-31,Cline,all,1,,20260409T170544Z,2026-04-09T19:38:05.437093+00:00 +2025-05-31,Codegen,all,116,,20260409T170544Z,2026-04-09T19:38:05.437093+00:00 +2025-05-31,Coderabbit,all,6,,20260409T170544Z,2026-04-09T19:38:05.437093+00:00 +2025-05-31,Copilot,all,15,,20260409T170544Z,2026-04-09T19:38:05.437093+00:00 +2025-05-31,Copilot SWE Agent,all,604,,20260409T170544Z,2026-04-09T19:38:05.437093+00:00 +2025-05-31,Crush,all,0,,20260409T170544Z,2026-04-09T19:38:05.437093+00:00 +2025-05-31,Cursor,all,19,,20260409T170544Z,2026-04-09T19:38:05.437093+00:00 +2025-05-31,DeepSource,all,5,,20260409T170544Z,2026-04-09T19:38:05.437093+00:00 +2025-05-31,Devin,all,35,,20260409T170544Z,2026-04-09T19:38:05.437093+00:00 +2025-05-31,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T19:38:05.437093+00:00 +2025-05-31,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T19:38:05.437093+00:00 +2025-05-31,Gru,all,6,,20260409T170544Z,2026-04-09T19:38:05.437093+00:00 +2025-05-31,Jules (Google),all,2730,,20260409T170544Z,2026-04-09T19:38:05.437093+00:00 +2025-05-31,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T19:38:05.437093+00:00 +2025-05-31,Kilo Code,all,0,,20260409T170544Z,2026-04-09T19:38:05.437093+00:00 +2025-05-31,Lovable,all,0,,20260409T170544Z,2026-04-09T19:38:05.437093+00:00 +2025-05-31,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T19:38:05.437093+00:00 +2025-05-31,OpenCode,all,0,,20260409T170544Z,2026-04-09T19:38:05.437093+00:00 +2025-05-31,OpenHands,all,108,,20260409T170544Z,2026-04-09T19:38:05.437093+00:00 +2025-05-31,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T19:38:05.437093+00:00 +2025-05-31,Roo Code,all,0,,20260409T170544Z,2026-04-09T19:38:05.437093+00:00 +2025-05-31,Sketch,all,0,,20260409T170544Z,2026-04-09T19:38:05.437093+00:00 +2025-05-31,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T19:38:05.437093+00:00 +2025-05-31,Sweep AI,all,1,,20260409T170544Z,2026-04-09T19:38:05.437093+00:00 +2025-05-31,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T19:38:05.437093+00:00 +2025-06-01,Aider,all,859,,20260409T170544Z,2026-04-09T19:40:18.563980+00:00 +2025-06-01,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T19:40:18.563980+00:00 +2025-06-01,ChatGPT,all,22,,20260409T170544Z,2026-04-09T19:40:18.563980+00:00 +2025-06-01,Claude Code,all,9,,20260409T170544Z,2026-04-09T19:40:18.563980+00:00 +2025-06-01,Cline,all,8,,20260409T170544Z,2026-04-09T19:40:18.563980+00:00 +2025-06-01,Codegen,all,134,,20260409T170544Z,2026-04-09T19:40:18.563980+00:00 +2025-06-01,Coderabbit,all,12,,20260409T170544Z,2026-04-09T19:40:18.563980+00:00 +2025-06-01,Copilot,all,8,,20260409T170544Z,2026-04-09T19:40:18.563980+00:00 +2025-06-01,Copilot SWE Agent,all,618,,20260409T170544Z,2026-04-09T19:40:18.563980+00:00 +2025-06-01,Crush,all,0,,20260409T170544Z,2026-04-09T19:40:18.563980+00:00 +2025-06-01,Cursor,all,20,,20260409T170544Z,2026-04-09T19:40:18.563980+00:00 +2025-06-01,DeepSource,all,11,,20260409T170544Z,2026-04-09T19:40:18.563980+00:00 +2025-06-01,Devin,all,33,,20260409T170544Z,2026-04-09T19:40:18.563980+00:00 +2025-06-01,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T19:40:18.563980+00:00 +2025-06-01,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T19:40:18.563980+00:00 +2025-06-01,Gru,all,0,,20260409T170544Z,2026-04-09T19:40:18.563980+00:00 +2025-06-01,Jules (Google),all,2789,,20260409T170544Z,2026-04-09T19:40:18.563980+00:00 +2025-06-01,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T19:40:18.563980+00:00 +2025-06-01,Kilo Code,all,0,,20260409T170544Z,2026-04-09T19:40:18.563980+00:00 +2025-06-01,Lovable,all,0,,20260409T170544Z,2026-04-09T19:40:18.563980+00:00 +2025-06-01,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T19:40:18.563980+00:00 +2025-06-01,OpenCode,all,0,,20260409T170544Z,2026-04-09T19:40:18.563980+00:00 +2025-06-01,OpenHands,all,201,,20260409T170544Z,2026-04-09T19:40:18.563980+00:00 +2025-06-01,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T19:40:18.563980+00:00 +2025-06-01,Roo Code,all,0,,20260409T170544Z,2026-04-09T19:40:18.563980+00:00 +2025-06-01,Sketch,all,0,,20260409T170544Z,2026-04-09T19:40:18.563980+00:00 +2025-06-01,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T19:40:18.563980+00:00 +2025-06-01,Sweep AI,all,67,,20260409T170544Z,2026-04-09T19:40:18.563980+00:00 +2025-06-01,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T19:40:18.563980+00:00 +2025-06-02,Aider,all,630,,20260409T170544Z,2026-04-09T19:42:30.944533+00:00 +2025-06-02,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T19:42:30.944533+00:00 +2025-06-02,ChatGPT,all,42,,20260409T170544Z,2026-04-09T19:42:30.944533+00:00 +2025-06-02,Claude Code,all,56,,20260409T170544Z,2026-04-09T19:42:30.944533+00:00 +2025-06-02,Cline,all,16,,20260409T170544Z,2026-04-09T19:42:30.944533+00:00 +2025-06-02,Codegen,all,12,,20260409T170544Z,2026-04-09T19:42:30.944533+00:00 +2025-06-02,Coderabbit,all,8,,20260409T170544Z,2026-04-09T19:42:30.944533+00:00 +2025-06-02,Copilot,all,18,,20260409T170544Z,2026-04-09T19:42:30.944533+00:00 +2025-06-02,Copilot SWE Agent,all,535,,20260409T170544Z,2026-04-09T19:42:30.944533+00:00 +2025-06-02,Crush,all,0,,20260409T170544Z,2026-04-09T19:42:30.944533+00:00 +2025-06-02,Cursor,all,9,,20260409T170544Z,2026-04-09T19:42:30.944533+00:00 +2025-06-02,DeepSource,all,9,,20260409T170544Z,2026-04-09T19:42:30.944533+00:00 +2025-06-02,Devin,all,55,,20260409T170544Z,2026-04-09T19:42:30.944533+00:00 +2025-06-02,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T19:42:30.944533+00:00 +2025-06-02,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T19:42:30.944533+00:00 +2025-06-02,Gru,all,30,,20260409T170544Z,2026-04-09T19:42:30.944533+00:00 +2025-06-02,Jules (Google),all,2998,,20260409T170544Z,2026-04-09T19:42:30.944533+00:00 +2025-06-02,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T19:42:30.944533+00:00 +2025-06-02,Kilo Code,all,0,,20260409T170544Z,2026-04-09T19:42:30.944533+00:00 +2025-06-02,Lovable,all,0,,20260409T170544Z,2026-04-09T19:42:30.944533+00:00 +2025-06-02,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T19:42:30.944533+00:00 +2025-06-02,OpenCode,all,0,,20260409T170544Z,2026-04-09T19:42:30.944533+00:00 +2025-06-02,OpenHands,all,153,,20260409T170544Z,2026-04-09T19:42:30.944533+00:00 +2025-06-02,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T19:42:30.944533+00:00 +2025-06-02,Roo Code,all,0,,20260409T170544Z,2026-04-09T19:42:30.944533+00:00 +2025-06-02,Sketch,all,0,,20260409T170544Z,2026-04-09T19:42:30.944533+00:00 +2025-06-02,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T19:42:30.944533+00:00 +2025-06-02,Sweep AI,all,0,,20260409T170544Z,2026-04-09T19:42:30.944533+00:00 +2025-06-02,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T19:42:30.944533+00:00 +2025-06-03,Aider,all,743,,20260409T170544Z,2026-04-09T19:44:42.373004+00:00 +2025-06-03,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T19:44:42.373004+00:00 +2025-06-03,ChatGPT,all,41,,20260409T170544Z,2026-04-09T19:44:42.373004+00:00 +2025-06-03,Claude Code,all,41,,20260409T170544Z,2026-04-09T19:44:42.373004+00:00 +2025-06-03,Cline,all,32,,20260409T170544Z,2026-04-09T19:44:42.373004+00:00 +2025-06-03,Codegen,all,18,,20260409T170544Z,2026-04-09T19:44:42.373004+00:00 +2025-06-03,Coderabbit,all,14,,20260409T170544Z,2026-04-09T19:44:42.373004+00:00 +2025-06-03,Copilot,all,1,,20260409T170544Z,2026-04-09T19:44:42.373004+00:00 +2025-06-03,Copilot SWE Agent,all,529,1,20260409T170544Z,2026-04-09T19:44:42.373004+00:00 +2025-06-03,Crush,all,0,,20260409T170544Z,2026-04-09T19:44:42.373004+00:00 +2025-06-03,Cursor,all,7,,20260409T170544Z,2026-04-09T19:44:42.373004+00:00 +2025-06-03,DeepSource,all,9,,20260409T170544Z,2026-04-09T19:44:42.373004+00:00 +2025-06-03,Devin,all,94,,20260409T170544Z,2026-04-09T19:44:42.373004+00:00 +2025-06-03,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T19:44:42.373004+00:00 +2025-06-03,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T19:44:42.373004+00:00 +2025-06-03,Gru,all,6,,20260409T170544Z,2026-04-09T19:44:42.373004+00:00 +2025-06-03,Jules (Google),all,2968,,20260409T170544Z,2026-04-09T19:44:42.373004+00:00 +2025-06-03,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T19:44:42.373004+00:00 +2025-06-03,Kilo Code,all,0,,20260409T170544Z,2026-04-09T19:44:42.373004+00:00 +2025-06-03,Lovable,all,0,,20260409T170544Z,2026-04-09T19:44:42.373004+00:00 +2025-06-03,OpenAI Codex,all,0,,20260409T170544Z,2026-04-09T19:44:42.373004+00:00 +2025-06-03,OpenCode,all,0,,20260409T170544Z,2026-04-09T19:44:42.373004+00:00 +2025-06-03,OpenHands,all,117,,20260409T170544Z,2026-04-09T19:44:42.373004+00:00 +2025-06-03,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T19:44:42.373004+00:00 +2025-06-03,Roo Code,all,0,,20260409T170544Z,2026-04-09T19:44:42.373004+00:00 +2025-06-03,Sketch,all,0,,20260409T170544Z,2026-04-09T19:44:42.373004+00:00 +2025-06-03,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T19:44:42.373004+00:00 +2025-06-03,Sweep AI,all,1,,20260409T170544Z,2026-04-09T19:44:42.373004+00:00 +2025-06-03,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T19:44:42.373004+00:00 +2025-06-04,Aider,all,760,,20260409T170544Z,2026-04-09T19:46:55.552117+00:00 +2025-06-04,Amp (Sourcegraph),all,2,,20260409T170544Z,2026-04-09T19:46:55.552117+00:00 +2025-06-04,ChatGPT,all,22,,20260409T170544Z,2026-04-09T19:46:55.552117+00:00 +2025-06-04,Claude Code,all,53,,20260409T170544Z,2026-04-09T19:46:55.552117+00:00 +2025-06-04,Cline,all,50,,20260409T170544Z,2026-04-09T19:46:55.552117+00:00 +2025-06-04,Codegen,all,43,,20260409T170544Z,2026-04-09T19:46:55.552117+00:00 +2025-06-04,Coderabbit,all,12,,20260409T170544Z,2026-04-09T19:46:55.552117+00:00 +2025-06-04,Copilot,all,13,,20260409T170544Z,2026-04-09T19:46:55.552117+00:00 +2025-06-04,Copilot SWE Agent,all,1190,,20260409T170544Z,2026-04-09T19:46:55.552117+00:00 +2025-06-04,Crush,all,0,,20260409T170544Z,2026-04-09T19:46:55.552117+00:00 +2025-06-04,Cursor,all,23,,20260409T170544Z,2026-04-09T19:46:55.552117+00:00 +2025-06-04,DeepSource,all,7,,20260409T170544Z,2026-04-09T19:46:55.552117+00:00 +2025-06-04,Devin,all,86,,20260409T170544Z,2026-04-09T19:46:55.552117+00:00 +2025-06-04,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T19:46:55.552117+00:00 +2025-06-04,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T19:46:55.552117+00:00 +2025-06-04,Gru,all,6,,20260409T170544Z,2026-04-09T19:46:55.552117+00:00 +2025-06-04,Jules (Google),all,2602,,20260409T170544Z,2026-04-09T19:46:55.552117+00:00 +2025-06-04,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T19:46:55.552117+00:00 +2025-06-04,Kilo Code,all,0,,20260409T170544Z,2026-04-09T19:46:55.552117+00:00 +2025-06-04,Lovable,all,0,,20260409T170544Z,2026-04-09T19:46:55.552117+00:00 +2025-06-04,OpenAI Codex,all,17,,20260409T170544Z,2026-04-09T19:46:55.552117+00:00 +2025-06-04,OpenCode,all,0,,20260409T170544Z,2026-04-09T19:46:55.552117+00:00 +2025-06-04,OpenHands,all,229,,20260409T170544Z,2026-04-09T19:46:55.552117+00:00 +2025-06-04,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T19:46:55.552117+00:00 +2025-06-04,Roo Code,all,0,,20260409T170544Z,2026-04-09T19:46:55.552117+00:00 +2025-06-04,Sketch,all,0,,20260409T170544Z,2026-04-09T19:46:55.552117+00:00 +2025-06-04,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T19:46:55.552117+00:00 +2025-06-04,Sweep AI,all,0,,20260409T170544Z,2026-04-09T19:46:55.552117+00:00 +2025-06-04,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T19:46:55.552117+00:00 +2025-06-05,Aider,all,537,,20260409T170544Z,2026-04-09T19:49:08.297821+00:00 +2025-06-05,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T19:49:08.297821+00:00 +2025-06-05,ChatGPT,all,28,,20260409T170544Z,2026-04-09T19:49:08.297821+00:00 +2025-06-05,Claude Code,all,71,,20260409T170544Z,2026-04-09T19:49:08.297821+00:00 +2025-06-05,Cline,all,11,,20260409T170544Z,2026-04-09T19:49:08.297821+00:00 +2025-06-05,Codegen,all,9,,20260409T170544Z,2026-04-09T19:49:08.297821+00:00 +2025-06-05,Coderabbit,all,12,,20260409T170544Z,2026-04-09T19:49:08.297821+00:00 +2025-06-05,Copilot,all,9,,20260409T170544Z,2026-04-09T19:49:08.297821+00:00 +2025-06-05,Copilot SWE Agent,all,1875,,20260409T170544Z,2026-04-09T19:49:08.297821+00:00 +2025-06-05,Crush,all,0,,20260409T170544Z,2026-04-09T19:49:08.297821+00:00 +2025-06-05,Cursor,all,176,,20260409T170544Z,2026-04-09T19:49:08.297821+00:00 +2025-06-05,DeepSource,all,11,,20260409T170544Z,2026-04-09T19:49:08.297821+00:00 +2025-06-05,Devin,all,42,,20260409T170544Z,2026-04-09T19:49:08.297821+00:00 +2025-06-05,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T19:49:08.297821+00:00 +2025-06-05,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T19:49:08.297821+00:00 +2025-06-05,Gru,all,0,,20260409T170544Z,2026-04-09T19:49:08.297821+00:00 +2025-06-05,Jules (Google),all,2770,,20260409T170544Z,2026-04-09T19:49:08.297821+00:00 +2025-06-05,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T19:49:08.297821+00:00 +2025-06-05,Kilo Code,all,0,,20260409T170544Z,2026-04-09T19:49:08.297821+00:00 +2025-06-05,Lovable,all,0,,20260409T170544Z,2026-04-09T19:49:08.297821+00:00 +2025-06-05,OpenAI Codex,all,23,,20260409T170544Z,2026-04-09T19:49:08.297821+00:00 +2025-06-05,OpenCode,all,0,,20260409T170544Z,2026-04-09T19:49:08.297821+00:00 +2025-06-05,OpenHands,all,137,,20260409T170544Z,2026-04-09T19:49:08.297821+00:00 +2025-06-05,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T19:49:08.297821+00:00 +2025-06-05,Roo Code,all,0,,20260409T170544Z,2026-04-09T19:49:08.297821+00:00 +2025-06-05,Sketch,all,0,,20260409T170544Z,2026-04-09T19:49:08.297821+00:00 +2025-06-05,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T19:49:08.297821+00:00 +2025-06-05,Sweep AI,all,0,,20260409T170544Z,2026-04-09T19:49:08.297821+00:00 +2025-06-05,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T19:49:08.297821+00:00 +2025-06-06,Aider,all,660,,20260409T170544Z,2026-04-09T19:51:21.518153+00:00 +2025-06-06,Amp (Sourcegraph),all,1,,20260409T170544Z,2026-04-09T19:51:21.518153+00:00 +2025-06-06,ChatGPT,all,4,,20260409T170544Z,2026-04-09T19:51:21.518153+00:00 +2025-06-06,Claude Code,all,29,,20260409T170544Z,2026-04-09T19:51:21.518153+00:00 +2025-06-06,Cline,all,25,,20260409T170544Z,2026-04-09T19:51:21.518153+00:00 +2025-06-06,Codegen,all,14,,20260409T170544Z,2026-04-09T19:51:21.518153+00:00 +2025-06-06,Coderabbit,all,11,,20260409T170544Z,2026-04-09T19:51:21.518153+00:00 +2025-06-06,Copilot,all,7,,20260409T170544Z,2026-04-09T19:51:21.518153+00:00 +2025-06-06,Copilot SWE Agent,all,737,,20260409T170544Z,2026-04-09T19:51:21.518153+00:00 +2025-06-06,Crush,all,0,,20260409T170544Z,2026-04-09T19:51:21.518153+00:00 +2025-06-06,Cursor,all,90,,20260409T170544Z,2026-04-09T19:51:21.518153+00:00 +2025-06-06,DeepSource,all,2,,20260409T170544Z,2026-04-09T19:51:21.518153+00:00 +2025-06-06,Devin,all,60,,20260409T170544Z,2026-04-09T19:51:21.518153+00:00 +2025-06-06,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T19:51:21.518153+00:00 +2025-06-06,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T19:51:21.518153+00:00 +2025-06-06,Gru,all,0,,20260409T170544Z,2026-04-09T19:51:21.518153+00:00 +2025-06-06,Jules (Google),all,2345,,20260409T170544Z,2026-04-09T19:51:21.518153+00:00 +2025-06-06,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T19:51:21.518153+00:00 +2025-06-06,Kilo Code,all,0,,20260409T170544Z,2026-04-09T19:51:21.518153+00:00 +2025-06-06,Lovable,all,0,,20260409T170544Z,2026-04-09T19:51:21.518153+00:00 +2025-06-06,OpenAI Codex,all,3,,20260409T170544Z,2026-04-09T19:51:21.518153+00:00 +2025-06-06,OpenCode,all,0,,20260409T170544Z,2026-04-09T19:51:21.518153+00:00 +2025-06-06,OpenHands,all,242,,20260409T170544Z,2026-04-09T19:51:21.518153+00:00 +2025-06-06,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T19:51:21.518153+00:00 +2025-06-06,Roo Code,all,0,,20260409T170544Z,2026-04-09T19:51:21.518153+00:00 +2025-06-06,Sketch,all,0,,20260409T170544Z,2026-04-09T19:51:21.518153+00:00 +2025-06-06,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T19:51:21.518153+00:00 +2025-06-06,Sweep AI,all,0,,20260409T170544Z,2026-04-09T19:51:21.518153+00:00 +2025-06-06,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T19:51:21.518153+00:00 +2025-06-07,Aider,all,591,,20260409T170544Z,2026-04-09T19:53:32.577645+00:00 +2025-06-07,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T19:53:32.577645+00:00 +2025-06-07,ChatGPT,all,32,,20260409T170544Z,2026-04-09T19:53:32.577645+00:00 +2025-06-07,Claude Code,all,19,,20260409T170544Z,2026-04-09T19:53:32.577645+00:00 +2025-06-07,Cline,all,6,,20260409T170544Z,2026-04-09T19:53:32.577645+00:00 +2025-06-07,Codegen,all,61,,20260409T170544Z,2026-04-09T19:53:32.577645+00:00 +2025-06-07,Coderabbit,all,10,,20260409T170544Z,2026-04-09T19:53:32.577645+00:00 +2025-06-07,Copilot,all,41,,20260409T170544Z,2026-04-09T19:53:32.577645+00:00 +2025-06-07,Copilot SWE Agent,all,645,1,20260409T170544Z,2026-04-09T19:53:32.577645+00:00 +2025-06-07,Crush,all,0,,20260409T170544Z,2026-04-09T19:53:32.577645+00:00 +2025-06-07,Cursor,all,135,,20260409T170544Z,2026-04-09T19:53:32.577645+00:00 +2025-06-07,DeepSource,all,8,,20260409T170544Z,2026-04-09T19:53:32.577645+00:00 +2025-06-07,Devin,all,212,,20260409T170544Z,2026-04-09T19:53:32.577645+00:00 +2025-06-07,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T19:53:32.577645+00:00 +2025-06-07,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T19:53:32.577645+00:00 +2025-06-07,Gru,all,0,,20260409T170544Z,2026-04-09T19:53:32.577645+00:00 +2025-06-07,Jules (Google),all,2250,,20260409T170544Z,2026-04-09T19:53:32.577645+00:00 +2025-06-07,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T19:53:32.577645+00:00 +2025-06-07,Kilo Code,all,0,,20260409T170544Z,2026-04-09T19:53:32.577645+00:00 +2025-06-07,Lovable,all,0,,20260409T170544Z,2026-04-09T19:53:32.577645+00:00 +2025-06-07,OpenAI Codex,all,20,,20260409T170544Z,2026-04-09T19:53:32.577645+00:00 +2025-06-07,OpenCode,all,0,,20260409T170544Z,2026-04-09T19:53:32.577645+00:00 +2025-06-07,OpenHands,all,172,,20260409T170544Z,2026-04-09T19:53:32.577645+00:00 +2025-06-07,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T19:53:32.577645+00:00 +2025-06-07,Roo Code,all,0,,20260409T170544Z,2026-04-09T19:53:32.577645+00:00 +2025-06-07,Sketch,all,0,,20260409T170544Z,2026-04-09T19:53:32.577645+00:00 +2025-06-07,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T19:53:32.577645+00:00 +2025-06-07,Sweep AI,all,0,,20260409T170544Z,2026-04-09T19:53:32.577645+00:00 +2025-06-07,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T19:53:32.577645+00:00 +2025-06-08,Aider,all,919,,20260409T170544Z,2026-04-09T19:55:45.046471+00:00 +2025-06-08,Amp (Sourcegraph),all,1,,20260409T170544Z,2026-04-09T19:55:45.046471+00:00 +2025-06-08,ChatGPT,all,16,,20260409T170544Z,2026-04-09T19:55:45.046471+00:00 +2025-06-08,Claude Code,all,32,,20260409T170544Z,2026-04-09T19:55:45.046471+00:00 +2025-06-08,Cline,all,4,,20260409T170544Z,2026-04-09T19:55:45.046471+00:00 +2025-06-08,Codegen,all,84,,20260409T170544Z,2026-04-09T19:55:45.046471+00:00 +2025-06-08,Coderabbit,all,3,,20260409T170544Z,2026-04-09T19:55:45.046471+00:00 +2025-06-08,Copilot,all,22,,20260409T170544Z,2026-04-09T19:55:45.046471+00:00 +2025-06-08,Copilot SWE Agent,all,529,,20260409T170544Z,2026-04-09T19:55:45.046471+00:00 +2025-06-08,Crush,all,0,,20260409T170544Z,2026-04-09T19:55:45.046471+00:00 +2025-06-08,Cursor,all,156,,20260409T170544Z,2026-04-09T19:55:45.046471+00:00 +2025-06-08,DeepSource,all,14,,20260409T170544Z,2026-04-09T19:55:45.046471+00:00 +2025-06-08,Devin,all,25,,20260409T170544Z,2026-04-09T19:55:45.046471+00:00 +2025-06-08,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T19:55:45.046471+00:00 +2025-06-08,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T19:55:45.046471+00:00 +2025-06-08,Gru,all,0,,20260409T170544Z,2026-04-09T19:55:45.046471+00:00 +2025-06-08,Jules (Google),all,2624,,20260409T170544Z,2026-04-09T19:55:45.046471+00:00 +2025-06-08,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T19:55:45.046471+00:00 +2025-06-08,Kilo Code,all,0,,20260409T170544Z,2026-04-09T19:55:45.046471+00:00 +2025-06-08,Lovable,all,2,,20260409T170544Z,2026-04-09T19:55:45.046471+00:00 +2025-06-08,OpenAI Codex,all,42,,20260409T170544Z,2026-04-09T19:55:45.046471+00:00 +2025-06-08,OpenCode,all,0,,20260409T170544Z,2026-04-09T19:55:45.046471+00:00 +2025-06-08,OpenHands,all,189,,20260409T170544Z,2026-04-09T19:55:45.046471+00:00 +2025-06-08,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T19:55:45.046471+00:00 +2025-06-08,Roo Code,all,0,,20260409T170544Z,2026-04-09T19:55:45.046471+00:00 +2025-06-08,Sketch,all,0,,20260409T170544Z,2026-04-09T19:55:45.046471+00:00 +2025-06-08,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T19:55:45.046471+00:00 +2025-06-08,Sweep AI,all,0,,20260409T170544Z,2026-04-09T19:55:45.046471+00:00 +2025-06-08,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T19:55:45.046471+00:00 +2025-06-09,Aider,all,714,,20260409T170544Z,2026-04-09T19:57:58.365042+00:00 +2025-06-09,Amp (Sourcegraph),all,2,,20260409T170544Z,2026-04-09T19:57:58.365042+00:00 +2025-06-09,ChatGPT,all,4,,20260409T170544Z,2026-04-09T19:57:58.365042+00:00 +2025-06-09,Claude Code,all,66,,20260409T170544Z,2026-04-09T19:57:58.365042+00:00 +2025-06-09,Cline,all,8,1,20260409T170544Z,2026-04-09T19:57:58.365042+00:00 +2025-06-09,Codegen,all,69,,20260409T170544Z,2026-04-09T19:57:58.365042+00:00 +2025-06-09,Coderabbit,all,12,,20260409T170544Z,2026-04-09T19:57:58.365042+00:00 +2025-06-09,Copilot,all,28,,20260409T170544Z,2026-04-09T19:57:58.365042+00:00 +2025-06-09,Copilot SWE Agent,all,673,,20260409T170544Z,2026-04-09T19:57:58.365042+00:00 +2025-06-09,Crush,all,0,,20260409T170544Z,2026-04-09T19:57:58.365042+00:00 +2025-06-09,Cursor,all,124,,20260409T170544Z,2026-04-09T19:57:58.365042+00:00 +2025-06-09,DeepSource,all,27,,20260409T170544Z,2026-04-09T19:57:58.365042+00:00 +2025-06-09,Devin,all,53,,20260409T170544Z,2026-04-09T19:57:58.365042+00:00 +2025-06-09,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T19:57:58.365042+00:00 +2025-06-09,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T19:57:58.365042+00:00 +2025-06-09,Gru,all,0,,20260409T170544Z,2026-04-09T19:57:58.365042+00:00 +2025-06-09,Jules (Google),all,2493,,20260409T170544Z,2026-04-09T19:57:58.365042+00:00 +2025-06-09,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T19:57:58.365042+00:00 +2025-06-09,Kilo Code,all,0,,20260409T170544Z,2026-04-09T19:57:58.365042+00:00 +2025-06-09,Lovable,all,0,,20260409T170544Z,2026-04-09T19:57:58.365042+00:00 +2025-06-09,OpenAI Codex,all,2,,20260409T170544Z,2026-04-09T19:57:58.365042+00:00 +2025-06-09,OpenCode,all,0,,20260409T170544Z,2026-04-09T19:57:58.365042+00:00 +2025-06-09,OpenHands,all,239,,20260409T170544Z,2026-04-09T19:57:58.365042+00:00 +2025-06-09,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T19:57:58.365042+00:00 +2025-06-09,Roo Code,all,0,,20260409T170544Z,2026-04-09T19:57:58.365042+00:00 +2025-06-09,Sketch,all,0,,20260409T170544Z,2026-04-09T19:57:58.365042+00:00 +2025-06-09,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T19:57:58.365042+00:00 +2025-06-09,Sweep AI,all,0,,20260409T170544Z,2026-04-09T19:57:58.365042+00:00 +2025-06-09,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T19:57:58.365042+00:00 +2025-06-10,Aider,all,520,,20260409T170544Z,2026-04-09T20:00:10.265407+00:00 +2025-06-10,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T20:00:10.265407+00:00 +2025-06-10,ChatGPT,all,1,,20260409T170544Z,2026-04-09T20:00:10.265407+00:00 +2025-06-10,Claude Code,all,75,,20260409T170544Z,2026-04-09T20:00:10.265407+00:00 +2025-06-10,Cline,all,9,,20260409T170544Z,2026-04-09T20:00:10.265407+00:00 +2025-06-10,Codegen,all,62,,20260409T170544Z,2026-04-09T20:00:10.265407+00:00 +2025-06-10,Coderabbit,all,8,,20260409T170544Z,2026-04-09T20:00:10.265407+00:00 +2025-06-10,Copilot,all,2,,20260409T170544Z,2026-04-09T20:00:10.265407+00:00 +2025-06-10,Copilot SWE Agent,all,713,,20260409T170544Z,2026-04-09T20:00:10.265407+00:00 +2025-06-10,Crush,all,0,,20260409T170544Z,2026-04-09T20:00:10.265407+00:00 +2025-06-10,Cursor,all,213,,20260409T170544Z,2026-04-09T20:00:10.265407+00:00 +2025-06-10,DeepSource,all,12,,20260409T170544Z,2026-04-09T20:00:10.265407+00:00 +2025-06-10,Devin,all,199,,20260409T170544Z,2026-04-09T20:00:10.265407+00:00 +2025-06-10,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T20:00:10.265407+00:00 +2025-06-10,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T20:00:10.265407+00:00 +2025-06-10,Gru,all,9,,20260409T170544Z,2026-04-09T20:00:10.265407+00:00 +2025-06-10,Jules (Google),all,2677,,20260409T170544Z,2026-04-09T20:00:10.265407+00:00 +2025-06-10,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T20:00:10.265407+00:00 +2025-06-10,Kilo Code,all,30,,20260409T170544Z,2026-04-09T20:00:10.265407+00:00 +2025-06-10,Lovable,all,0,,20260409T170544Z,2026-04-09T20:00:10.265407+00:00 +2025-06-10,OpenAI Codex,all,10,,20260409T170544Z,2026-04-09T20:00:10.265407+00:00 +2025-06-10,OpenCode,all,0,,20260409T170544Z,2026-04-09T20:00:10.265407+00:00 +2025-06-10,OpenHands,all,137,,20260409T170544Z,2026-04-09T20:00:10.265407+00:00 +2025-06-10,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T20:00:10.265407+00:00 +2025-06-10,Roo Code,all,0,,20260409T170544Z,2026-04-09T20:00:10.265407+00:00 +2025-06-10,Sketch,all,0,,20260409T170544Z,2026-04-09T20:00:10.265407+00:00 +2025-06-10,Sourcery AI,all,1,,20260409T170544Z,2026-04-09T20:00:10.265407+00:00 +2025-06-10,Sweep AI,all,0,,20260409T170544Z,2026-04-09T20:00:10.265407+00:00 +2025-06-10,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T20:00:10.265407+00:00 +2025-06-11,Aider,all,647,,20260409T170544Z,2026-04-09T20:02:22.880459+00:00 +2025-06-11,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T20:02:22.880459+00:00 +2025-06-11,ChatGPT,all,0,,20260409T170544Z,2026-04-09T20:02:22.880459+00:00 +2025-06-11,Claude Code,all,14,,20260409T170544Z,2026-04-09T20:02:22.880459+00:00 +2025-06-11,Cline,all,8,,20260409T170544Z,2026-04-09T20:02:22.880459+00:00 +2025-06-11,Codegen,all,32,,20260409T170544Z,2026-04-09T20:02:22.880459+00:00 +2025-06-11,Coderabbit,all,20,,20260409T170544Z,2026-04-09T20:02:22.880459+00:00 +2025-06-11,Copilot,all,13,1,20260409T170544Z,2026-04-09T20:02:22.880459+00:00 +2025-06-11,Copilot SWE Agent,all,904,,20260409T170544Z,2026-04-09T20:02:22.880459+00:00 +2025-06-11,Crush,all,0,,20260409T170544Z,2026-04-09T20:02:22.880459+00:00 +2025-06-11,Cursor,all,165,,20260409T170544Z,2026-04-09T20:02:22.880459+00:00 +2025-06-11,DeepSource,all,21,,20260409T170544Z,2026-04-09T20:02:22.880459+00:00 +2025-06-11,Devin,all,112,,20260409T170544Z,2026-04-09T20:02:22.880459+00:00 +2025-06-11,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T20:02:22.880459+00:00 +2025-06-11,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T20:02:22.880459+00:00 +2025-06-11,Gru,all,30,,20260409T170544Z,2026-04-09T20:02:22.880459+00:00 +2025-06-11,Jules (Google),all,2296,,20260409T170544Z,2026-04-09T20:02:22.880459+00:00 +2025-06-11,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T20:02:22.880459+00:00 +2025-06-11,Kilo Code,all,0,,20260409T170544Z,2026-04-09T20:02:22.880459+00:00 +2025-06-11,Lovable,all,1,,20260409T170544Z,2026-04-09T20:02:22.880459+00:00 +2025-06-11,OpenAI Codex,all,6,,20260409T170544Z,2026-04-09T20:02:22.880459+00:00 +2025-06-11,OpenCode,all,0,,20260409T170544Z,2026-04-09T20:02:22.880459+00:00 +2025-06-11,OpenHands,all,168,,20260409T170544Z,2026-04-09T20:02:22.880459+00:00 +2025-06-11,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T20:02:22.880459+00:00 +2025-06-11,Roo Code,all,0,,20260409T170544Z,2026-04-09T20:02:22.880459+00:00 +2025-06-11,Sketch,all,0,,20260409T170544Z,2026-04-09T20:02:22.880459+00:00 +2025-06-11,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T20:02:22.880459+00:00 +2025-06-11,Sweep AI,all,0,,20260409T170544Z,2026-04-09T20:02:22.880459+00:00 +2025-06-11,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T20:02:22.880459+00:00 +2025-06-12,Aider,all,683,,20260409T170544Z,2026-04-09T20:04:34.028089+00:00 +2025-06-12,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T20:04:34.028089+00:00 +2025-06-12,ChatGPT,all,17,,20260409T170544Z,2026-04-09T20:04:34.028089+00:00 +2025-06-12,Claude Code,all,60,,20260409T170544Z,2026-04-09T20:04:34.028089+00:00 +2025-06-12,Cline,all,9,,20260409T170544Z,2026-04-09T20:04:34.028089+00:00 +2025-06-12,Codegen,all,35,,20260409T170544Z,2026-04-09T20:04:34.028089+00:00 +2025-06-12,Coderabbit,all,21,,20260409T170544Z,2026-04-09T20:04:34.028089+00:00 +2025-06-12,Copilot,all,12,,20260409T170544Z,2026-04-09T20:04:34.028089+00:00 +2025-06-12,Copilot SWE Agent,all,755,,20260409T170544Z,2026-04-09T20:04:34.028089+00:00 +2025-06-12,Crush,all,0,,20260409T170544Z,2026-04-09T20:04:34.028089+00:00 +2025-06-12,Cursor,all,88,,20260409T170544Z,2026-04-09T20:04:34.028089+00:00 +2025-06-12,DeepSource,all,22,,20260409T170544Z,2026-04-09T20:04:34.028089+00:00 +2025-06-12,Devin,all,352,1,20260409T170544Z,2026-04-09T20:04:34.028089+00:00 +2025-06-12,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T20:04:34.028089+00:00 +2025-06-12,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T20:04:34.028089+00:00 +2025-06-12,Gru,all,30,,20260409T170544Z,2026-04-09T20:04:34.028089+00:00 +2025-06-12,Jules (Google),all,2053,,20260409T170544Z,2026-04-09T20:04:34.028089+00:00 +2025-06-12,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T20:04:34.028089+00:00 +2025-06-12,Kilo Code,all,0,,20260409T170544Z,2026-04-09T20:04:34.028089+00:00 +2025-06-12,Lovable,all,0,,20260409T170544Z,2026-04-09T20:04:34.028089+00:00 +2025-06-12,OpenAI Codex,all,9,,20260409T170544Z,2026-04-09T20:04:34.028089+00:00 +2025-06-12,OpenCode,all,0,,20260409T170544Z,2026-04-09T20:04:34.028089+00:00 +2025-06-12,OpenHands,all,388,,20260409T170544Z,2026-04-09T20:04:34.028089+00:00 +2025-06-12,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T20:04:34.028089+00:00 +2025-06-12,Roo Code,all,0,,20260409T170544Z,2026-04-09T20:04:34.028089+00:00 +2025-06-12,Sketch,all,0,,20260409T170544Z,2026-04-09T20:04:34.028089+00:00 +2025-06-12,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T20:04:34.028089+00:00 +2025-06-12,Sweep AI,all,0,,20260409T170544Z,2026-04-09T20:04:34.028089+00:00 +2025-06-12,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T20:04:34.028089+00:00 +2025-06-13,Aider,all,597,,20260409T170544Z,2026-04-09T20:06:45.566929+00:00 +2025-06-13,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T20:06:45.566929+00:00 +2025-06-13,ChatGPT,all,5,,20260409T170544Z,2026-04-09T20:06:45.566929+00:00 +2025-06-13,Claude Code,all,62,,20260409T170544Z,2026-04-09T20:06:45.566929+00:00 +2025-06-13,Cline,all,27,,20260409T170544Z,2026-04-09T20:06:45.566929+00:00 +2025-06-13,Codegen,all,13,,20260409T170544Z,2026-04-09T20:06:45.566929+00:00 +2025-06-13,Coderabbit,all,23,,20260409T170544Z,2026-04-09T20:06:45.566929+00:00 +2025-06-13,Copilot,all,13,1,20260409T170544Z,2026-04-09T20:06:45.566929+00:00 +2025-06-13,Copilot SWE Agent,all,939,,20260409T170544Z,2026-04-09T20:06:45.566929+00:00 +2025-06-13,Crush,all,0,,20260409T170544Z,2026-04-09T20:06:45.566929+00:00 +2025-06-13,Cursor,all,124,,20260409T170544Z,2026-04-09T20:06:45.566929+00:00 +2025-06-13,DeepSource,all,38,,20260409T170544Z,2026-04-09T20:06:45.566929+00:00 +2025-06-13,Devin,all,58,,20260409T170544Z,2026-04-09T20:06:45.566929+00:00 +2025-06-13,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T20:06:45.566929+00:00 +2025-06-13,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T20:06:45.566929+00:00 +2025-06-13,Gru,all,6,,20260409T170544Z,2026-04-09T20:06:45.566929+00:00 +2025-06-13,Jules (Google),all,2140,,20260409T170544Z,2026-04-09T20:06:45.566929+00:00 +2025-06-13,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T20:06:45.566929+00:00 +2025-06-13,Kilo Code,all,0,,20260409T170544Z,2026-04-09T20:06:45.566929+00:00 +2025-06-13,Lovable,all,2,,20260409T170544Z,2026-04-09T20:06:45.566929+00:00 +2025-06-13,OpenAI Codex,all,12,,20260409T170544Z,2026-04-09T20:06:45.566929+00:00 +2025-06-13,OpenCode,all,0,,20260409T170544Z,2026-04-09T20:06:45.566929+00:00 +2025-06-13,OpenHands,all,374,,20260409T170544Z,2026-04-09T20:06:45.566929+00:00 +2025-06-13,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T20:06:45.566929+00:00 +2025-06-13,Roo Code,all,0,,20260409T170544Z,2026-04-09T20:06:45.566929+00:00 +2025-06-13,Sketch,all,0,,20260409T170544Z,2026-04-09T20:06:45.566929+00:00 +2025-06-13,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T20:06:45.566929+00:00 +2025-06-13,Sweep AI,all,0,,20260409T170544Z,2026-04-09T20:06:45.566929+00:00 +2025-06-13,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T20:06:45.566929+00:00 +2025-06-14,Aider,all,475,,20260409T170544Z,2026-04-09T20:08:59.119783+00:00 +2025-06-14,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T20:08:59.119783+00:00 +2025-06-14,ChatGPT,all,3,,20260409T170544Z,2026-04-09T20:08:59.119783+00:00 +2025-06-14,Claude Code,all,28,,20260409T170544Z,2026-04-09T20:08:59.119783+00:00 +2025-06-14,Cline,all,5,,20260409T170544Z,2026-04-09T20:08:59.119783+00:00 +2025-06-14,Codegen,all,5,,20260409T170544Z,2026-04-09T20:08:59.119783+00:00 +2025-06-14,Coderabbit,all,13,,20260409T170544Z,2026-04-09T20:08:59.119783+00:00 +2025-06-14,Copilot,all,8,,20260409T170544Z,2026-04-09T20:08:59.119783+00:00 +2025-06-14,Copilot SWE Agent,all,694,,20260409T170544Z,2026-04-09T20:08:59.119783+00:00 +2025-06-14,Crush,all,0,,20260409T170544Z,2026-04-09T20:08:59.119783+00:00 +2025-06-14,Cursor,all,67,,20260409T170544Z,2026-04-09T20:08:59.119783+00:00 +2025-06-14,DeepSource,all,18,,20260409T170544Z,2026-04-09T20:08:59.119783+00:00 +2025-06-14,Devin,all,32,,20260409T170544Z,2026-04-09T20:08:59.119783+00:00 +2025-06-14,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T20:08:59.119783+00:00 +2025-06-14,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T20:08:59.119783+00:00 +2025-06-14,Gru,all,0,,20260409T170544Z,2026-04-09T20:08:59.119783+00:00 +2025-06-14,Jules (Google),all,1776,,20260409T170544Z,2026-04-09T20:08:59.119783+00:00 +2025-06-14,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T20:08:59.119783+00:00 +2025-06-14,Kilo Code,all,0,,20260409T170544Z,2026-04-09T20:08:59.119783+00:00 +2025-06-14,Lovable,all,1,,20260409T170544Z,2026-04-09T20:08:59.119783+00:00 +2025-06-14,OpenAI Codex,all,11,,20260409T170544Z,2026-04-09T20:08:59.119783+00:00 +2025-06-14,OpenCode,all,0,,20260409T170544Z,2026-04-09T20:08:59.119783+00:00 +2025-06-14,OpenHands,all,301,,20260409T170544Z,2026-04-09T20:08:59.119783+00:00 +2025-06-14,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T20:08:59.119783+00:00 +2025-06-14,Roo Code,all,0,,20260409T170544Z,2026-04-09T20:08:59.119783+00:00 +2025-06-14,Sketch,all,0,,20260409T170544Z,2026-04-09T20:08:59.119783+00:00 +2025-06-14,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T20:08:59.119783+00:00 +2025-06-14,Sweep AI,all,0,,20260409T170544Z,2026-04-09T20:08:59.119783+00:00 +2025-06-14,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T20:08:59.119783+00:00 +2025-06-15,Aider,all,847,,20260409T170544Z,2026-04-09T20:11:11.493088+00:00 +2025-06-15,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T20:11:11.493088+00:00 +2025-06-15,ChatGPT,all,2,,20260409T170544Z,2026-04-09T20:11:11.493088+00:00 +2025-06-15,Claude Code,all,44,,20260409T170544Z,2026-04-09T20:11:11.493088+00:00 +2025-06-15,Cline,all,31,,20260409T170544Z,2026-04-09T20:11:11.493088+00:00 +2025-06-15,Codegen,all,44,,20260409T170544Z,2026-04-09T20:11:11.493088+00:00 +2025-06-15,Coderabbit,all,10,,20260409T170544Z,2026-04-09T20:11:11.493088+00:00 +2025-06-15,Copilot,all,1,,20260409T170544Z,2026-04-09T20:11:11.493088+00:00 +2025-06-15,Copilot SWE Agent,all,627,,20260409T170544Z,2026-04-09T20:11:11.493088+00:00 +2025-06-15,Crush,all,0,,20260409T170544Z,2026-04-09T20:11:11.493088+00:00 +2025-06-15,Cursor,all,145,,20260409T170544Z,2026-04-09T20:11:11.493088+00:00 +2025-06-15,DeepSource,all,13,,20260409T170544Z,2026-04-09T20:11:11.493088+00:00 +2025-06-15,Devin,all,6,,20260409T170544Z,2026-04-09T20:11:11.493088+00:00 +2025-06-15,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T20:11:11.493088+00:00 +2025-06-15,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T20:11:11.493088+00:00 +2025-06-15,Gru,all,0,,20260409T170544Z,2026-04-09T20:11:11.493088+00:00 +2025-06-15,Jules (Google),all,1812,,20260409T170544Z,2026-04-09T20:11:11.493088+00:00 +2025-06-15,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T20:11:11.493088+00:00 +2025-06-15,Kilo Code,all,0,,20260409T170544Z,2026-04-09T20:11:11.493088+00:00 +2025-06-15,Lovable,all,0,,20260409T170544Z,2026-04-09T20:11:11.493088+00:00 +2025-06-15,OpenAI Codex,all,15,,20260409T170544Z,2026-04-09T20:11:11.493088+00:00 +2025-06-15,OpenCode,all,0,,20260409T170544Z,2026-04-09T20:11:11.493088+00:00 +2025-06-15,OpenHands,all,183,,20260409T170544Z,2026-04-09T20:11:11.493088+00:00 +2025-06-15,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T20:11:11.493088+00:00 +2025-06-15,Roo Code,all,0,,20260409T170544Z,2026-04-09T20:11:11.493088+00:00 +2025-06-15,Sketch,all,0,,20260409T170544Z,2026-04-09T20:11:11.493088+00:00 +2025-06-15,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T20:11:11.493088+00:00 +2025-06-15,Sweep AI,all,0,,20260409T170544Z,2026-04-09T20:11:11.493088+00:00 +2025-06-15,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T20:11:11.493088+00:00 +2025-06-16,Aider,all,732,,20260409T170544Z,2026-04-09T20:13:23.123768+00:00 +2025-06-16,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T20:13:23.123768+00:00 +2025-06-16,ChatGPT,all,3,,20260409T170544Z,2026-04-09T20:13:23.123768+00:00 +2025-06-16,Claude Code,all,128,,20260409T170544Z,2026-04-09T20:13:23.123768+00:00 +2025-06-16,Cline,all,63,,20260409T170544Z,2026-04-09T20:13:23.123768+00:00 +2025-06-16,Codegen,all,33,,20260409T170544Z,2026-04-09T20:13:23.123768+00:00 +2025-06-16,Coderabbit,all,10,,20260409T170544Z,2026-04-09T20:13:23.123768+00:00 +2025-06-16,Copilot,all,0,,20260409T170544Z,2026-04-09T20:13:23.123768+00:00 +2025-06-16,Copilot SWE Agent,all,522,,20260409T170544Z,2026-04-09T20:13:23.123768+00:00 +2025-06-16,Crush,all,0,,20260409T170544Z,2026-04-09T20:13:23.123768+00:00 +2025-06-16,Cursor,all,136,,20260409T170544Z,2026-04-09T20:13:23.123768+00:00 +2025-06-16,DeepSource,all,18,,20260409T170544Z,2026-04-09T20:13:23.123768+00:00 +2025-06-16,Devin,all,60,,20260409T170544Z,2026-04-09T20:13:23.123768+00:00 +2025-06-16,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T20:13:23.123768+00:00 +2025-06-16,Gemini Code Assist,all,4,,20260409T170544Z,2026-04-09T20:13:23.123768+00:00 +2025-06-16,Gru,all,0,,20260409T170544Z,2026-04-09T20:13:23.123768+00:00 +2025-06-16,Jules (Google),all,1914,,20260409T170544Z,2026-04-09T20:13:23.123768+00:00 +2025-06-16,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T20:13:23.123768+00:00 +2025-06-16,Kilo Code,all,0,,20260409T170544Z,2026-04-09T20:13:23.123768+00:00 +2025-06-16,Lovable,all,0,,20260409T170544Z,2026-04-09T20:13:23.123768+00:00 +2025-06-16,OpenAI Codex,all,4,,20260409T170544Z,2026-04-09T20:13:23.123768+00:00 +2025-06-16,OpenCode,all,0,,20260409T170544Z,2026-04-09T20:13:23.123768+00:00 +2025-06-16,OpenHands,all,191,,20260409T170544Z,2026-04-09T20:13:23.123768+00:00 +2025-06-16,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T20:13:23.123768+00:00 +2025-06-16,Roo Code,all,0,,20260409T170544Z,2026-04-09T20:13:23.123768+00:00 +2025-06-16,Sketch,all,0,,20260409T170544Z,2026-04-09T20:13:23.123768+00:00 +2025-06-16,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T20:13:23.123768+00:00 +2025-06-16,Sweep AI,all,0,,20260409T170544Z,2026-04-09T20:13:23.123768+00:00 +2025-06-16,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T20:13:23.123768+00:00 +2025-06-17,Aider,all,704,,20260409T170544Z,2026-04-09T20:15:35.535188+00:00 +2025-06-17,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T20:15:35.535188+00:00 +2025-06-17,ChatGPT,all,0,,20260409T170544Z,2026-04-09T20:15:35.535188+00:00 +2025-06-17,Claude Code,all,82,,20260409T170544Z,2026-04-09T20:15:35.535188+00:00 +2025-06-17,Cline,all,23,,20260409T170544Z,2026-04-09T20:15:35.535188+00:00 +2025-06-17,Codegen,all,5,,20260409T170544Z,2026-04-09T20:15:35.535188+00:00 +2025-06-17,Coderabbit,all,11,,20260409T170544Z,2026-04-09T20:15:35.535188+00:00 +2025-06-17,Copilot,all,21,,20260409T170544Z,2026-04-09T20:15:35.535188+00:00 +2025-06-17,Copilot SWE Agent,all,563,1,20260409T170544Z,2026-04-09T20:15:35.535188+00:00 +2025-06-17,Crush,all,0,,20260409T170544Z,2026-04-09T20:15:35.535188+00:00 +2025-06-17,Cursor,all,114,,20260409T170544Z,2026-04-09T20:15:35.535188+00:00 +2025-06-17,DeepSource,all,27,,20260409T170544Z,2026-04-09T20:15:35.535188+00:00 +2025-06-17,Devin,all,222,,20260409T170544Z,2026-04-09T20:15:35.535188+00:00 +2025-06-17,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T20:15:35.535188+00:00 +2025-06-17,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T20:15:35.535188+00:00 +2025-06-17,Gru,all,0,,20260409T170544Z,2026-04-09T20:15:35.535188+00:00 +2025-06-17,Jules (Google),all,2153,,20260409T170544Z,2026-04-09T20:15:35.535188+00:00 +2025-06-17,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T20:15:35.535188+00:00 +2025-06-17,Kilo Code,all,60,,20260409T170544Z,2026-04-09T20:15:35.535188+00:00 +2025-06-17,Lovable,all,0,,20260409T170544Z,2026-04-09T20:15:35.535188+00:00 +2025-06-17,OpenAI Codex,all,3,,20260409T170544Z,2026-04-09T20:15:35.535188+00:00 +2025-06-17,OpenCode,all,0,,20260409T170544Z,2026-04-09T20:15:35.535188+00:00 +2025-06-17,OpenHands,all,148,,20260409T170544Z,2026-04-09T20:15:35.535188+00:00 +2025-06-17,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T20:15:35.535188+00:00 +2025-06-17,Roo Code,all,0,,20260409T170544Z,2026-04-09T20:15:35.535188+00:00 +2025-06-17,Sketch,all,0,,20260409T170544Z,2026-04-09T20:15:35.535188+00:00 +2025-06-17,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T20:15:35.535188+00:00 +2025-06-17,Sweep AI,all,0,,20260409T170544Z,2026-04-09T20:15:35.535188+00:00 +2025-06-17,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T20:15:35.535188+00:00 +2025-06-18,Aider,all,666,,20260409T170544Z,2026-04-09T20:17:46.299715+00:00 +2025-06-18,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T20:17:46.299715+00:00 +2025-06-18,ChatGPT,all,0,,20260409T170544Z,2026-04-09T20:17:46.299715+00:00 +2025-06-18,Claude Code,all,128,,20260409T170544Z,2026-04-09T20:17:46.299715+00:00 +2025-06-18,Cline,all,86,,20260409T170544Z,2026-04-09T20:17:46.299715+00:00 +2025-06-18,Codegen,all,19,,20260409T170544Z,2026-04-09T20:17:46.299715+00:00 +2025-06-18,Coderabbit,all,15,,20260409T170544Z,2026-04-09T20:17:46.299715+00:00 +2025-06-18,Copilot,all,6,,20260409T170544Z,2026-04-09T20:17:46.299715+00:00 +2025-06-18,Copilot SWE Agent,all,723,,20260409T170544Z,2026-04-09T20:17:46.299715+00:00 +2025-06-18,Crush,all,0,,20260409T170544Z,2026-04-09T20:17:46.299715+00:00 +2025-06-18,Cursor,all,78,,20260409T170544Z,2026-04-09T20:17:46.299715+00:00 +2025-06-18,DeepSource,all,15,,20260409T170544Z,2026-04-09T20:17:46.299715+00:00 +2025-06-18,Devin,all,70,,20260409T170544Z,2026-04-09T20:17:46.299715+00:00 +2025-06-18,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T20:17:46.299715+00:00 +2025-06-18,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T20:17:46.299715+00:00 +2025-06-18,Gru,all,36,,20260409T170544Z,2026-04-09T20:17:46.299715+00:00 +2025-06-18,Jules (Google),all,2385,,20260409T170544Z,2026-04-09T20:17:46.299715+00:00 +2025-06-18,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T20:17:46.299715+00:00 +2025-06-18,Kilo Code,all,272,,20260409T170544Z,2026-04-09T20:17:46.299715+00:00 +2025-06-18,Lovable,all,0,,20260409T170544Z,2026-04-09T20:17:46.299715+00:00 +2025-06-18,OpenAI Codex,all,3,,20260409T170544Z,2026-04-09T20:17:46.299715+00:00 +2025-06-18,OpenCode,all,0,,20260409T170544Z,2026-04-09T20:17:46.299715+00:00 +2025-06-18,OpenHands,all,200,,20260409T170544Z,2026-04-09T20:17:46.299715+00:00 +2025-06-18,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T20:17:46.299715+00:00 +2025-06-18,Roo Code,all,0,,20260409T170544Z,2026-04-09T20:17:46.299715+00:00 +2025-06-18,Sketch,all,0,,20260409T170544Z,2026-04-09T20:17:46.299715+00:00 +2025-06-18,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T20:17:46.299715+00:00 +2025-06-18,Sweep AI,all,0,,20260409T170544Z,2026-04-09T20:17:46.299715+00:00 +2025-06-18,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T20:17:46.299715+00:00 +2025-06-19,Aider,all,782,,20260409T170544Z,2026-04-09T20:19:59.675995+00:00 +2025-06-19,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T20:19:59.675995+00:00 +2025-06-19,ChatGPT,all,0,,20260409T170544Z,2026-04-09T20:19:59.675995+00:00 +2025-06-19,Claude Code,all,210,,20260409T170544Z,2026-04-09T20:19:59.675995+00:00 +2025-06-19,Cline,all,32,,20260409T170544Z,2026-04-09T20:19:59.675995+00:00 +2025-06-19,Codegen,all,15,,20260409T170544Z,2026-04-09T20:19:59.675995+00:00 +2025-06-19,Coderabbit,all,32,,20260409T170544Z,2026-04-09T20:19:59.675995+00:00 +2025-06-19,Copilot,all,6,,20260409T170544Z,2026-04-09T20:19:59.675995+00:00 +2025-06-19,Copilot SWE Agent,all,624,,20260409T170544Z,2026-04-09T20:19:59.675995+00:00 +2025-06-19,Crush,all,0,,20260409T170544Z,2026-04-09T20:19:59.675995+00:00 +2025-06-19,Cursor,all,135,,20260409T170544Z,2026-04-09T20:19:59.675995+00:00 +2025-06-19,DeepSource,all,7,,20260409T170544Z,2026-04-09T20:19:59.675995+00:00 +2025-06-19,Devin,all,59,,20260409T170544Z,2026-04-09T20:19:59.675995+00:00 +2025-06-19,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T20:19:59.675995+00:00 +2025-06-19,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T20:19:59.675995+00:00 +2025-06-19,Gru,all,12,,20260409T170544Z,2026-04-09T20:19:59.675995+00:00 +2025-06-19,Jules (Google),all,2227,,20260409T170544Z,2026-04-09T20:19:59.675995+00:00 +2025-06-19,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T20:19:59.675995+00:00 +2025-06-19,Kilo Code,all,10,,20260409T170544Z,2026-04-09T20:19:59.675995+00:00 +2025-06-19,Lovable,all,38,,20260409T170544Z,2026-04-09T20:19:59.675995+00:00 +2025-06-19,OpenAI Codex,all,8,,20260409T170544Z,2026-04-09T20:19:59.675995+00:00 +2025-06-19,OpenCode,all,0,,20260409T170544Z,2026-04-09T20:19:59.675995+00:00 +2025-06-19,OpenHands,all,144,,20260409T170544Z,2026-04-09T20:19:59.675995+00:00 +2025-06-19,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T20:19:59.675995+00:00 +2025-06-19,Roo Code,all,0,,20260409T170544Z,2026-04-09T20:19:59.675995+00:00 +2025-06-19,Sketch,all,0,,20260409T170544Z,2026-04-09T20:19:59.675995+00:00 +2025-06-19,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T20:19:59.675995+00:00 +2025-06-19,Sweep AI,all,0,,20260409T170544Z,2026-04-09T20:19:59.675995+00:00 +2025-06-19,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T20:19:59.675995+00:00 +2025-06-20,Aider,all,580,,20260409T170544Z,2026-04-09T20:22:09.573307+00:00 +2025-06-20,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T20:22:09.573307+00:00 +2025-06-20,ChatGPT,all,3,,20260409T170544Z,2026-04-09T20:22:09.573307+00:00 +2025-06-20,Claude Code,all,170,,20260409T170544Z,2026-04-09T20:22:09.573307+00:00 +2025-06-20,Cline,all,21,,20260409T170544Z,2026-04-09T20:22:09.573307+00:00 +2025-06-20,Codegen,all,7,,20260409T170544Z,2026-04-09T20:22:09.573307+00:00 +2025-06-20,Coderabbit,all,14,,20260409T170544Z,2026-04-09T20:22:09.573307+00:00 +2025-06-20,Copilot,all,3,,20260409T170544Z,2026-04-09T20:22:09.573307+00:00 +2025-06-20,Copilot SWE Agent,all,584,,20260409T170544Z,2026-04-09T20:22:09.573307+00:00 +2025-06-20,Crush,all,0,,20260409T170544Z,2026-04-09T20:22:09.573307+00:00 +2025-06-20,Cursor,all,224,,20260409T170544Z,2026-04-09T20:22:09.573307+00:00 +2025-06-20,DeepSource,all,4,,20260409T170544Z,2026-04-09T20:22:09.573307+00:00 +2025-06-20,Devin,all,223,,20260409T170544Z,2026-04-09T20:22:09.573307+00:00 +2025-06-20,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T20:22:09.573307+00:00 +2025-06-20,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T20:22:09.573307+00:00 +2025-06-20,Gru,all,0,,20260409T170544Z,2026-04-09T20:22:09.573307+00:00 +2025-06-20,Jules (Google),all,2054,,20260409T170544Z,2026-04-09T20:22:09.573307+00:00 +2025-06-20,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T20:22:09.573307+00:00 +2025-06-20,Kilo Code,all,72,,20260409T170544Z,2026-04-09T20:22:09.573307+00:00 +2025-06-20,Lovable,all,0,,20260409T170544Z,2026-04-09T20:22:09.573307+00:00 +2025-06-20,OpenAI Codex,all,10,,20260409T170544Z,2026-04-09T20:22:09.573307+00:00 +2025-06-20,OpenCode,all,0,,20260409T170544Z,2026-04-09T20:22:09.573307+00:00 +2025-06-20,OpenHands,all,150,,20260409T170544Z,2026-04-09T20:22:09.573307+00:00 +2025-06-20,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T20:22:09.573307+00:00 +2025-06-20,Roo Code,all,0,,20260409T170544Z,2026-04-09T20:22:09.573307+00:00 +2025-06-20,Sketch,all,0,,20260409T170544Z,2026-04-09T20:22:09.573307+00:00 +2025-06-20,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T20:22:09.573307+00:00 +2025-06-20,Sweep AI,all,0,,20260409T170544Z,2026-04-09T20:22:09.573307+00:00 +2025-06-20,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T20:22:09.573307+00:00 +2025-06-21,Aider,all,503,,20260409T170544Z,2026-04-09T20:24:20.153803+00:00 +2025-06-21,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T20:24:20.153803+00:00 +2025-06-21,ChatGPT,all,0,,20260409T170544Z,2026-04-09T20:24:20.153803+00:00 +2025-06-21,Claude Code,all,128,,20260409T170544Z,2026-04-09T20:24:20.153803+00:00 +2025-06-21,Cline,all,14,,20260409T170544Z,2026-04-09T20:24:20.153803+00:00 +2025-06-21,Codegen,all,2,,20260409T170544Z,2026-04-09T20:24:20.153803+00:00 +2025-06-21,Coderabbit,all,21,,20260409T170544Z,2026-04-09T20:24:20.153803+00:00 +2025-06-21,Copilot,all,0,,20260409T170544Z,2026-04-09T20:24:20.153803+00:00 +2025-06-21,Copilot SWE Agent,all,547,,20260409T170544Z,2026-04-09T20:24:20.153803+00:00 +2025-06-21,Crush,all,0,,20260409T170544Z,2026-04-09T20:24:20.153803+00:00 +2025-06-21,Cursor,all,170,,20260409T170544Z,2026-04-09T20:24:20.153803+00:00 +2025-06-21,DeepSource,all,16,,20260409T170544Z,2026-04-09T20:24:20.153803+00:00 +2025-06-21,Devin,all,21,,20260409T170544Z,2026-04-09T20:24:20.153803+00:00 +2025-06-21,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T20:24:20.153803+00:00 +2025-06-21,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T20:24:20.153803+00:00 +2025-06-21,Gru,all,0,,20260409T170544Z,2026-04-09T20:24:20.153803+00:00 +2025-06-21,Jules (Google),all,1741,,20260409T170544Z,2026-04-09T20:24:20.153803+00:00 +2025-06-21,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T20:24:20.153803+00:00 +2025-06-21,Kilo Code,all,0,,20260409T170544Z,2026-04-09T20:24:20.153803+00:00 +2025-06-21,Lovable,all,0,,20260409T170544Z,2026-04-09T20:24:20.153803+00:00 +2025-06-21,OpenAI Codex,all,3,,20260409T170544Z,2026-04-09T20:24:20.153803+00:00 +2025-06-21,OpenCode,all,0,,20260409T170544Z,2026-04-09T20:24:20.153803+00:00 +2025-06-21,OpenHands,all,155,,20260409T170544Z,2026-04-09T20:24:20.153803+00:00 +2025-06-21,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T20:24:20.153803+00:00 +2025-06-21,Roo Code,all,0,,20260409T170544Z,2026-04-09T20:24:20.153803+00:00 +2025-06-21,Sketch,all,0,,20260409T170544Z,2026-04-09T20:24:20.153803+00:00 +2025-06-21,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T20:24:20.153803+00:00 +2025-06-21,Sweep AI,all,0,,20260409T170544Z,2026-04-09T20:24:20.153803+00:00 +2025-06-21,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T20:24:20.153803+00:00 +2025-06-22,Aider,all,517,,20260409T170544Z,2026-04-09T20:26:30.231771+00:00 +2025-06-22,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T20:26:30.231771+00:00 +2025-06-22,ChatGPT,all,12,,20260409T170544Z,2026-04-09T20:26:30.231771+00:00 +2025-06-22,Claude Code,all,189,,20260409T170544Z,2026-04-09T20:26:30.231771+00:00 +2025-06-22,Cline,all,29,,20260409T170544Z,2026-04-09T20:26:30.231771+00:00 +2025-06-22,Codegen,all,48,,20260409T170544Z,2026-04-09T20:26:30.231771+00:00 +2025-06-22,Coderabbit,all,31,,20260409T170544Z,2026-04-09T20:26:30.231771+00:00 +2025-06-22,Copilot,all,0,,20260409T170544Z,2026-04-09T20:26:30.231771+00:00 +2025-06-22,Copilot SWE Agent,all,524,,20260409T170544Z,2026-04-09T20:26:30.231771+00:00 +2025-06-22,Crush,all,0,,20260409T170544Z,2026-04-09T20:26:30.231771+00:00 +2025-06-22,Cursor,all,233,,20260409T170544Z,2026-04-09T20:26:30.231771+00:00 +2025-06-22,DeepSource,all,7,,20260409T170544Z,2026-04-09T20:26:30.231771+00:00 +2025-06-22,Devin,all,32,1,20260409T170544Z,2026-04-09T20:26:30.231771+00:00 +2025-06-22,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T20:26:30.231771+00:00 +2025-06-22,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T20:26:30.231771+00:00 +2025-06-22,Gru,all,0,,20260409T170544Z,2026-04-09T20:26:30.231771+00:00 +2025-06-22,Jules (Google),all,1716,,20260409T170544Z,2026-04-09T20:26:30.231771+00:00 +2025-06-22,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T20:26:30.231771+00:00 +2025-06-22,Kilo Code,all,0,,20260409T170544Z,2026-04-09T20:26:30.231771+00:00 +2025-06-22,Lovable,all,7,,20260409T170544Z,2026-04-09T20:26:30.231771+00:00 +2025-06-22,OpenAI Codex,all,16,,20260409T170544Z,2026-04-09T20:26:30.231771+00:00 +2025-06-22,OpenCode,all,0,,20260409T170544Z,2026-04-09T20:26:30.231771+00:00 +2025-06-22,OpenHands,all,100,,20260409T170544Z,2026-04-09T20:26:30.231771+00:00 +2025-06-22,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T20:26:30.231771+00:00 +2025-06-22,Roo Code,all,0,,20260409T170544Z,2026-04-09T20:26:30.231771+00:00 +2025-06-22,Sketch,all,0,,20260409T170544Z,2026-04-09T20:26:30.231771+00:00 +2025-06-22,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T20:26:30.231771+00:00 +2025-06-22,Sweep AI,all,0,,20260409T170544Z,2026-04-09T20:26:30.231771+00:00 +2025-06-22,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T20:26:30.231771+00:00 +2025-06-23,Aider,all,552,,20260409T170544Z,2026-04-09T20:28:41.635735+00:00 +2025-06-23,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T20:28:41.635735+00:00 +2025-06-23,ChatGPT,all,0,,20260409T170544Z,2026-04-09T20:28:41.635735+00:00 +2025-06-23,Claude Code,all,313,,20260409T170544Z,2026-04-09T20:28:41.635735+00:00 +2025-06-23,Cline,all,18,,20260409T170544Z,2026-04-09T20:28:41.635735+00:00 +2025-06-23,Codegen,all,35,,20260409T170544Z,2026-04-09T20:28:41.635735+00:00 +2025-06-23,Coderabbit,all,17,,20260409T170544Z,2026-04-09T20:28:41.635735+00:00 +2025-06-23,Copilot,all,2,,20260409T170544Z,2026-04-09T20:28:41.635735+00:00 +2025-06-23,Copilot SWE Agent,all,520,,20260409T170544Z,2026-04-09T20:28:41.635735+00:00 +2025-06-23,Crush,all,0,,20260409T170544Z,2026-04-09T20:28:41.635735+00:00 +2025-06-23,Cursor,all,322,,20260409T170544Z,2026-04-09T20:28:41.635735+00:00 +2025-06-23,DeepSource,all,13,,20260409T170544Z,2026-04-09T20:28:41.635735+00:00 +2025-06-23,Devin,all,196,,20260409T170544Z,2026-04-09T20:28:41.635735+00:00 +2025-06-23,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T20:28:41.635735+00:00 +2025-06-23,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T20:28:41.635735+00:00 +2025-06-23,Gru,all,0,,20260409T170544Z,2026-04-09T20:28:41.635735+00:00 +2025-06-23,Jules (Google),all,1665,,20260409T170544Z,2026-04-09T20:28:41.635735+00:00 +2025-06-23,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T20:28:41.635735+00:00 +2025-06-23,Kilo Code,all,0,,20260409T170544Z,2026-04-09T20:28:41.635735+00:00 +2025-06-23,Lovable,all,0,,20260409T170544Z,2026-04-09T20:28:41.635735+00:00 +2025-06-23,OpenAI Codex,all,36,,20260409T170544Z,2026-04-09T20:28:41.635735+00:00 +2025-06-23,OpenCode,all,0,,20260409T170544Z,2026-04-09T20:28:41.635735+00:00 +2025-06-23,OpenHands,all,128,,20260409T170544Z,2026-04-09T20:28:41.635735+00:00 +2025-06-23,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T20:28:41.635735+00:00 +2025-06-23,Roo Code,all,0,,20260409T170544Z,2026-04-09T20:28:41.635735+00:00 +2025-06-23,Sketch,all,0,,20260409T170544Z,2026-04-09T20:28:41.635735+00:00 +2025-06-23,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T20:28:41.635735+00:00 +2025-06-23,Sweep AI,all,0,,20260409T170544Z,2026-04-09T20:28:41.635735+00:00 +2025-06-23,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T20:28:41.635735+00:00 +2025-06-24,Aider,all,521,,20260409T170544Z,2026-04-09T20:30:51.833004+00:00 +2025-06-24,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T20:30:51.833004+00:00 +2025-06-24,ChatGPT,all,1,,20260409T170544Z,2026-04-09T20:30:51.833004+00:00 +2025-06-24,Claude Code,all,176,,20260409T170544Z,2026-04-09T20:30:51.833004+00:00 +2025-06-24,Cline,all,255,,20260409T170544Z,2026-04-09T20:30:51.833004+00:00 +2025-06-24,Codegen,all,10,,20260409T170544Z,2026-04-09T20:30:51.833004+00:00 +2025-06-24,Coderabbit,all,4,,20260409T170544Z,2026-04-09T20:30:51.833004+00:00 +2025-06-24,Copilot,all,1,,20260409T170544Z,2026-04-09T20:30:51.833004+00:00 +2025-06-24,Copilot SWE Agent,all,773,,20260409T170544Z,2026-04-09T20:30:51.833004+00:00 +2025-06-24,Crush,all,0,,20260409T170544Z,2026-04-09T20:30:51.833004+00:00 +2025-06-24,Cursor,all,478,,20260409T170544Z,2026-04-09T20:30:51.833004+00:00 +2025-06-24,DeepSource,all,6,,20260409T170544Z,2026-04-09T20:30:51.833004+00:00 +2025-06-24,Devin,all,50,,20260409T170544Z,2026-04-09T20:30:51.833004+00:00 +2025-06-24,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T20:30:51.833004+00:00 +2025-06-24,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T20:30:51.833004+00:00 +2025-06-24,Gru,all,0,1,20260409T170544Z,2026-04-09T20:30:51.833004+00:00 +2025-06-24,Jules (Google),all,1838,,20260409T170544Z,2026-04-09T20:30:51.833004+00:00 +2025-06-24,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T20:30:51.833004+00:00 +2025-06-24,Kilo Code,all,0,,20260409T170544Z,2026-04-09T20:30:51.833004+00:00 +2025-06-24,Lovable,all,0,,20260409T170544Z,2026-04-09T20:30:51.833004+00:00 +2025-06-24,OpenAI Codex,all,28,,20260409T170544Z,2026-04-09T20:30:51.833004+00:00 +2025-06-24,OpenCode,all,0,,20260409T170544Z,2026-04-09T20:30:51.833004+00:00 +2025-06-24,OpenHands,all,78,,20260409T170544Z,2026-04-09T20:30:51.833004+00:00 +2025-06-24,Qwen Coder,all,0,1,20260409T170544Z,2026-04-09T20:30:51.833004+00:00 +2025-06-24,Roo Code,all,0,,20260409T170544Z,2026-04-09T20:30:51.833004+00:00 +2025-06-24,Sketch,all,0,,20260409T170544Z,2026-04-09T20:30:51.833004+00:00 +2025-06-24,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T20:30:51.833004+00:00 +2025-06-24,Sweep AI,all,0,,20260409T170544Z,2026-04-09T20:30:51.833004+00:00 +2025-06-24,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T20:30:51.833004+00:00 +2025-06-25,Aider,all,587,,20260409T170544Z,2026-04-09T20:34:02.840640+00:00 +2025-06-25,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T20:34:02.840640+00:00 +2025-06-25,ChatGPT,all,5,,20260409T170544Z,2026-04-09T20:34:02.840640+00:00 +2025-06-25,Claude Code,all,147,,20260409T170544Z,2026-04-09T20:34:02.840640+00:00 +2025-06-25,Cline,all,45,,20260409T170544Z,2026-04-09T20:34:02.840640+00:00 +2025-06-25,Codegen,all,29,,20260409T170544Z,2026-04-09T20:34:02.840640+00:00 +2025-06-25,Coderabbit,all,11,,20260409T170544Z,2026-04-09T20:34:02.840640+00:00 +2025-06-25,Copilot,all,1,,20260409T170544Z,2026-04-09T20:34:02.840640+00:00 +2025-06-25,Copilot SWE Agent,all,529,,20260409T170544Z,2026-04-09T20:34:02.840640+00:00 +2025-06-25,Crush,all,0,,20260409T170544Z,2026-04-09T20:34:02.840640+00:00 +2025-06-25,Cursor,all,119,,20260409T170544Z,2026-04-09T20:34:02.840640+00:00 +2025-06-25,DeepSource,all,8,,20260409T170544Z,2026-04-09T20:34:02.840640+00:00 +2025-06-25,Devin,all,362,,20260409T170544Z,2026-04-09T20:34:02.840640+00:00 +2025-06-25,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T20:34:02.840640+00:00 +2025-06-25,Gemini Code Assist,all,0,1,20260409T170544Z,2026-04-09T20:34:02.840640+00:00 +2025-06-25,Gru,all,0,,20260409T170544Z,2026-04-09T20:34:02.840640+00:00 +2025-06-25,Jules (Google),all,1512,,20260409T170544Z,2026-04-09T20:34:02.840640+00:00 +2025-06-25,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T20:34:02.840640+00:00 +2025-06-25,Kilo Code,all,0,,20260409T170544Z,2026-04-09T20:34:02.840640+00:00 +2025-06-25,Lovable,all,0,,20260409T170544Z,2026-04-09T20:34:02.840640+00:00 +2025-06-25,OpenAI Codex,all,4,,20260409T170544Z,2026-04-09T20:34:02.840640+00:00 +2025-06-25,OpenCode,all,0,,20260409T170544Z,2026-04-09T20:34:02.840640+00:00 +2025-06-25,OpenHands,all,115,,20260409T170544Z,2026-04-09T20:34:02.840640+00:00 +2025-06-25,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T20:34:02.840640+00:00 +2025-06-25,Roo Code,all,0,,20260409T170544Z,2026-04-09T20:34:02.840640+00:00 +2025-06-25,Sketch,all,0,,20260409T170544Z,2026-04-09T20:34:02.840640+00:00 +2025-06-25,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T20:34:02.840640+00:00 +2025-06-25,Sweep AI,all,0,,20260409T170544Z,2026-04-09T20:34:02.840640+00:00 +2025-06-25,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T20:34:02.840640+00:00 +2025-06-26,Aider,all,633,,20260409T170544Z,2026-04-09T20:36:13.936649+00:00 +2025-06-26,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T20:36:13.936649+00:00 +2025-06-26,ChatGPT,all,2,,20260409T170544Z,2026-04-09T20:36:13.936649+00:00 +2025-06-26,Claude Code,all,240,,20260409T170544Z,2026-04-09T20:36:13.936649+00:00 +2025-06-26,Cline,all,15,,20260409T170544Z,2026-04-09T20:36:13.936649+00:00 +2025-06-26,Codegen,all,17,,20260409T170544Z,2026-04-09T20:36:13.936649+00:00 +2025-06-26,Coderabbit,all,40,,20260409T170544Z,2026-04-09T20:36:13.936649+00:00 +2025-06-26,Copilot,all,1,,20260409T170544Z,2026-04-09T20:36:13.936649+00:00 +2025-06-26,Copilot SWE Agent,all,728,,20260409T170544Z,2026-04-09T20:36:13.936649+00:00 +2025-06-26,Crush,all,0,,20260409T170544Z,2026-04-09T20:36:13.936649+00:00 +2025-06-26,Cursor,all,210,,20260409T170544Z,2026-04-09T20:36:13.936649+00:00 +2025-06-26,DeepSource,all,7,,20260409T170544Z,2026-04-09T20:36:13.936649+00:00 +2025-06-26,Devin,all,271,,20260409T170544Z,2026-04-09T20:36:13.936649+00:00 +2025-06-26,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T20:36:13.936649+00:00 +2025-06-26,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T20:36:13.936649+00:00 +2025-06-26,Gru,all,0,,20260409T170544Z,2026-04-09T20:36:13.936649+00:00 +2025-06-26,Jules (Google),all,1469,,20260409T170544Z,2026-04-09T20:36:13.936649+00:00 +2025-06-26,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T20:36:13.936649+00:00 +2025-06-26,Kilo Code,all,0,,20260409T170544Z,2026-04-09T20:36:13.936649+00:00 +2025-06-26,Lovable,all,0,,20260409T170544Z,2026-04-09T20:36:13.936649+00:00 +2025-06-26,OpenAI Codex,all,1,,20260409T170544Z,2026-04-09T20:36:13.936649+00:00 +2025-06-26,OpenCode,all,0,,20260409T170544Z,2026-04-09T20:36:13.936649+00:00 +2025-06-26,OpenHands,all,125,,20260409T170544Z,2026-04-09T20:36:13.936649+00:00 +2025-06-26,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T20:36:13.936649+00:00 +2025-06-26,Roo Code,all,0,,20260409T170544Z,2026-04-09T20:36:13.936649+00:00 +2025-06-26,Sketch,all,0,,20260409T170544Z,2026-04-09T20:36:13.936649+00:00 +2025-06-26,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T20:36:13.936649+00:00 +2025-06-26,Sweep AI,all,0,,20260409T170544Z,2026-04-09T20:36:13.936649+00:00 +2025-06-26,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T20:36:13.936649+00:00 +2025-06-27,Aider,all,786,,20260409T170544Z,2026-04-09T20:38:24.812255+00:00 +2025-06-27,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T20:38:24.812255+00:00 +2025-06-27,ChatGPT,all,2,,20260409T170544Z,2026-04-09T20:38:24.812255+00:00 +2025-06-27,Claude Code,all,197,,20260409T170544Z,2026-04-09T20:38:24.812255+00:00 +2025-06-27,Cline,all,5,,20260409T170544Z,2026-04-09T20:38:24.812255+00:00 +2025-06-27,Codegen,all,3,,20260409T170544Z,2026-04-09T20:38:24.812255+00:00 +2025-06-27,Coderabbit,all,12,,20260409T170544Z,2026-04-09T20:38:24.812255+00:00 +2025-06-27,Copilot,all,1,,20260409T170544Z,2026-04-09T20:38:24.812255+00:00 +2025-06-27,Copilot SWE Agent,all,883,1,20260409T170544Z,2026-04-09T20:38:24.812255+00:00 +2025-06-27,Crush,all,0,,20260409T170544Z,2026-04-09T20:38:24.812255+00:00 +2025-06-27,Cursor,all,185,,20260409T170544Z,2026-04-09T20:38:24.812255+00:00 +2025-06-27,DeepSource,all,12,,20260409T170544Z,2026-04-09T20:38:24.812255+00:00 +2025-06-27,Devin,all,79,1,20260409T170544Z,2026-04-09T20:38:24.812255+00:00 +2025-06-27,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T20:38:24.812255+00:00 +2025-06-27,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T20:38:24.812255+00:00 +2025-06-27,Gru,all,0,,20260409T170544Z,2026-04-09T20:38:24.812255+00:00 +2025-06-27,Jules (Google),all,1351,,20260409T170544Z,2026-04-09T20:38:24.812255+00:00 +2025-06-27,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T20:38:24.812255+00:00 +2025-06-27,Kilo Code,all,0,,20260409T170544Z,2026-04-09T20:38:24.812255+00:00 +2025-06-27,Lovable,all,0,,20260409T170544Z,2026-04-09T20:38:24.812255+00:00 +2025-06-27,OpenAI Codex,all,10,,20260409T170544Z,2026-04-09T20:38:24.812255+00:00 +2025-06-27,OpenCode,all,1,,20260409T170544Z,2026-04-09T20:38:24.812255+00:00 +2025-06-27,OpenHands,all,162,,20260409T170544Z,2026-04-09T20:38:24.812255+00:00 +2025-06-27,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T20:38:24.812255+00:00 +2025-06-27,Roo Code,all,0,,20260409T170544Z,2026-04-09T20:38:24.812255+00:00 +2025-06-27,Sketch,all,0,,20260409T170544Z,2026-04-09T20:38:24.812255+00:00 +2025-06-27,Sourcery AI,all,0,1,20260409T170544Z,2026-04-09T20:38:24.812255+00:00 +2025-06-27,Sweep AI,all,0,,20260409T170544Z,2026-04-09T20:38:24.812255+00:00 +2025-06-27,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T20:38:24.812255+00:00 +2025-06-28,Aider,all,335,,20260409T170544Z,2026-04-09T20:41:36.578760+00:00 +2025-06-28,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T20:41:36.578760+00:00 +2025-06-28,ChatGPT,all,0,,20260409T170544Z,2026-04-09T20:41:36.578760+00:00 +2025-06-28,Claude Code,all,266,,20260409T170544Z,2026-04-09T20:41:36.578760+00:00 +2025-06-28,Cline,all,2,,20260409T170544Z,2026-04-09T20:41:36.578760+00:00 +2025-06-28,Codegen,all,72,,20260409T170544Z,2026-04-09T20:41:36.578760+00:00 +2025-06-28,Coderabbit,all,6,,20260409T170544Z,2026-04-09T20:41:36.578760+00:00 +2025-06-28,Copilot,all,0,,20260409T170544Z,2026-04-09T20:41:36.578760+00:00 +2025-06-28,Copilot SWE Agent,all,529,,20260409T170544Z,2026-04-09T20:41:36.578760+00:00 +2025-06-28,Crush,all,0,,20260409T170544Z,2026-04-09T20:41:36.578760+00:00 +2025-06-28,Cursor,all,534,,20260409T170544Z,2026-04-09T20:41:36.578760+00:00 +2025-06-28,DeepSource,all,31,,20260409T170544Z,2026-04-09T20:41:36.578760+00:00 +2025-06-28,Devin,all,23,,20260409T170544Z,2026-04-09T20:41:36.578760+00:00 +2025-06-28,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T20:41:36.578760+00:00 +2025-06-28,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T20:41:36.578760+00:00 +2025-06-28,Gru,all,6,,20260409T170544Z,2026-04-09T20:41:36.578760+00:00 +2025-06-28,Jules (Google),all,1421,,20260409T170544Z,2026-04-09T20:41:36.578760+00:00 +2025-06-28,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T20:41:36.578760+00:00 +2025-06-28,Kilo Code,all,0,,20260409T170544Z,2026-04-09T20:41:36.578760+00:00 +2025-06-28,Lovable,all,0,,20260409T170544Z,2026-04-09T20:41:36.578760+00:00 +2025-06-28,OpenAI Codex,all,1,,20260409T170544Z,2026-04-09T20:41:36.578760+00:00 +2025-06-28,OpenCode,all,1,,20260409T170544Z,2026-04-09T20:41:36.578760+00:00 +2025-06-28,OpenHands,all,239,,20260409T170544Z,2026-04-09T20:41:36.578760+00:00 +2025-06-28,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T20:41:36.578760+00:00 +2025-06-28,Roo Code,all,0,,20260409T170544Z,2026-04-09T20:41:36.578760+00:00 +2025-06-28,Sketch,all,0,,20260409T170544Z,2026-04-09T20:41:36.578760+00:00 +2025-06-28,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T20:41:36.578760+00:00 +2025-06-28,Sweep AI,all,0,,20260409T170544Z,2026-04-09T20:41:36.578760+00:00 +2025-06-28,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T20:41:36.578760+00:00 +2025-06-29,Aider,all,82,,20260409T170544Z,2026-04-09T20:43:47.957864+00:00 +2025-06-29,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T20:43:47.957864+00:00 +2025-06-29,ChatGPT,all,1,,20260409T170544Z,2026-04-09T20:43:47.957864+00:00 +2025-06-29,Claude Code,all,214,,20260409T170544Z,2026-04-09T20:43:47.957864+00:00 +2025-06-29,Cline,all,15,,20260409T170544Z,2026-04-09T20:43:47.957864+00:00 +2025-06-29,Codegen,all,65,,20260409T170544Z,2026-04-09T20:43:47.957864+00:00 +2025-06-29,Coderabbit,all,13,,20260409T170544Z,2026-04-09T20:43:47.957864+00:00 +2025-06-29,Copilot,all,2,,20260409T170544Z,2026-04-09T20:43:47.957864+00:00 +2025-06-29,Copilot SWE Agent,all,518,,20260409T170544Z,2026-04-09T20:43:47.957864+00:00 +2025-06-29,Crush,all,0,,20260409T170544Z,2026-04-09T20:43:47.957864+00:00 +2025-06-29,Cursor,all,104,,20260409T170544Z,2026-04-09T20:43:47.957864+00:00 +2025-06-29,DeepSource,all,17,,20260409T170544Z,2026-04-09T20:43:47.957864+00:00 +2025-06-29,Devin,all,17,,20260409T170544Z,2026-04-09T20:43:47.957864+00:00 +2025-06-29,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T20:43:47.957864+00:00 +2025-06-29,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T20:43:47.957864+00:00 +2025-06-29,Gru,all,0,,20260409T170544Z,2026-04-09T20:43:47.957864+00:00 +2025-06-29,Jules (Google),all,1357,,20260409T170544Z,2026-04-09T20:43:47.957864+00:00 +2025-06-29,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T20:43:47.957864+00:00 +2025-06-29,Kilo Code,all,0,,20260409T170544Z,2026-04-09T20:43:47.957864+00:00 +2025-06-29,Lovable,all,0,,20260409T170544Z,2026-04-09T20:43:47.957864+00:00 +2025-06-29,OpenAI Codex,all,37,,20260409T170544Z,2026-04-09T20:43:47.957864+00:00 +2025-06-29,OpenCode,all,1,,20260409T170544Z,2026-04-09T20:43:47.957864+00:00 +2025-06-29,OpenHands,all,177,,20260409T170544Z,2026-04-09T20:43:47.957864+00:00 +2025-06-29,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T20:43:47.957864+00:00 +2025-06-29,Roo Code,all,0,,20260409T170544Z,2026-04-09T20:43:47.957864+00:00 +2025-06-29,Sketch,all,0,,20260409T170544Z,2026-04-09T20:43:47.957864+00:00 +2025-06-29,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T20:43:47.957864+00:00 +2025-06-29,Sweep AI,all,0,,20260409T170544Z,2026-04-09T20:43:47.957864+00:00 +2025-06-29,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T20:43:47.957864+00:00 +2025-06-30,Aider,all,145,,20260409T170544Z,2026-04-09T20:45:59.119479+00:00 +2025-06-30,Amp (Sourcegraph),all,0,,20260409T170544Z,2026-04-09T20:45:59.119479+00:00 +2025-06-30,ChatGPT,all,0,,20260409T170544Z,2026-04-09T20:45:59.119479+00:00 +2025-06-30,Claude Code,all,116,,20260409T170544Z,2026-04-09T20:45:59.119479+00:00 +2025-06-30,Cline,all,2,,20260409T170544Z,2026-04-09T20:45:59.119479+00:00 +2025-06-30,Codegen,all,23,,20260409T170544Z,2026-04-09T20:45:59.119479+00:00 +2025-06-30,Coderabbit,all,19,,20260409T170544Z,2026-04-09T20:45:59.119479+00:00 +2025-06-30,Copilot,all,7,,20260409T170544Z,2026-04-09T20:45:59.119479+00:00 +2025-06-30,Copilot SWE Agent,all,1264,,20260409T170544Z,2026-04-09T20:45:59.119479+00:00 +2025-06-30,Crush,all,0,,20260409T170544Z,2026-04-09T20:45:59.119479+00:00 +2025-06-30,Cursor,all,381,,20260409T170544Z,2026-04-09T20:45:59.119479+00:00 +2025-06-30,DeepSource,all,13,,20260409T170544Z,2026-04-09T20:45:59.119479+00:00 +2025-06-30,Devin,all,36,,20260409T170544Z,2026-04-09T20:45:59.119479+00:00 +2025-06-30,Gemini CLI,all,0,,20260409T170544Z,2026-04-09T20:45:59.119479+00:00 +2025-06-30,Gemini Code Assist,all,0,,20260409T170544Z,2026-04-09T20:45:59.119479+00:00 +2025-06-30,Gru,all,0,,20260409T170544Z,2026-04-09T20:45:59.119479+00:00 +2025-06-30,Jules (Google),all,1607,,20260409T170544Z,2026-04-09T20:45:59.119479+00:00 +2025-06-30,Junie (JetBrains),all,0,,20260409T170544Z,2026-04-09T20:45:59.119479+00:00 +2025-06-30,Kilo Code,all,0,,20260409T170544Z,2026-04-09T20:45:59.119479+00:00 +2025-06-30,Lovable,all,0,,20260409T170544Z,2026-04-09T20:45:59.119479+00:00 +2025-06-30,OpenAI Codex,all,3,,20260409T170544Z,2026-04-09T20:45:59.119479+00:00 +2025-06-30,OpenCode,all,0,,20260409T170544Z,2026-04-09T20:45:59.119479+00:00 +2025-06-30,OpenHands,all,73,,20260409T170544Z,2026-04-09T20:45:59.119479+00:00 +2025-06-30,Qwen Coder,all,0,,20260409T170544Z,2026-04-09T20:45:59.119479+00:00 +2025-06-30,Roo Code,all,0,,20260409T170544Z,2026-04-09T20:45:59.119479+00:00 +2025-06-30,Sketch,all,0,,20260409T170544Z,2026-04-09T20:45:59.119479+00:00 +2025-06-30,Sourcery AI,all,0,,20260409T170544Z,2026-04-09T20:45:59.119479+00:00 +2025-06-30,Sweep AI,all,0,,20260409T170544Z,2026-04-09T20:45:59.119479+00:00 +2025-06-30,Warp (Oz Agent),all,0,,20260409T170544Z,2026-04-09T20:45:59.119479+00:00 +2025-07-01,Aider,all,155,,20260408T230245Z,2026-04-08T23:02:45.243851+00:00 +2025-07-01,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-08T23:02:45.243851+00:00 +2025-07-01,ChatGPT,all,3,,20260408T230245Z,2026-04-08T23:02:45.243851+00:00 +2025-07-01,Claude Code,all,139,,20260408T230245Z,2026-04-08T23:02:45.243851+00:00 +2025-07-01,Cline,all,265,,20260408T230245Z,2026-04-08T23:02:45.243851+00:00 +2025-07-01,Codegen,all,8,,20260408T230245Z,2026-04-08T23:02:45.243851+00:00 +2025-07-01,Coderabbit,all,10,,20260408T230245Z,2026-04-08T23:02:45.243851+00:00 +2025-07-01,Copilot,all,0,1,20260408T230245Z,2026-04-08T23:02:45.243851+00:00 +2025-07-01,Copilot SWE Agent,all,1014,,20260408T230245Z,2026-04-08T23:02:45.243851+00:00 +2025-07-01,Crush,all,0,,20260408T230245Z,2026-04-08T23:02:45.243851+00:00 +2025-07-01,Cursor,all,965,,20260408T230245Z,2026-04-08T23:02:45.243851+00:00 +2025-07-01,DeepSource,all,4,,20260408T230245Z,2026-04-08T23:02:45.243851+00:00 +2025-07-01,Devin,all,402,,20260408T230245Z,2026-04-08T23:02:45.243851+00:00 +2025-07-01,Gemini CLI,all,0,,20260408T230245Z,2026-04-08T23:02:45.243851+00:00 +2025-07-01,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-08T23:02:45.243851+00:00 +2025-07-01,Gru,all,0,,20260408T230245Z,2026-04-08T23:02:45.243851+00:00 +2025-07-01,Jules (Google),all,1441,,20260408T230245Z,2026-04-08T23:02:45.243851+00:00 +2025-07-01,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-08T23:02:45.243851+00:00 +2025-07-01,Kilo Code,all,2,,20260408T230245Z,2026-04-08T23:02:45.243851+00:00 +2025-07-01,Lovable,all,0,,20260408T230245Z,2026-04-08T23:02:45.243851+00:00 +2025-07-01,OpenAI Codex,all,0,,20260408T230245Z,2026-04-08T23:02:45.243851+00:00 +2025-07-01,OpenCode,all,0,,20260408T230245Z,2026-04-08T23:02:45.243851+00:00 +2025-07-01,OpenHands,all,84,,20260408T230245Z,2026-04-08T23:02:45.243851+00:00 +2025-07-01,Qwen Coder,all,0,,20260408T230245Z,2026-04-08T23:02:45.243851+00:00 +2025-07-01,Roo Code,all,0,,20260408T230245Z,2026-04-08T23:02:45.243851+00:00 +2025-07-01,Sketch,all,0,,20260408T230245Z,2026-04-08T23:02:45.243851+00:00 +2025-07-01,Sourcery AI,all,0,,20260408T230245Z,2026-04-08T23:02:45.243851+00:00 +2025-07-01,Sweep AI,all,0,,20260408T230245Z,2026-04-08T23:02:45.243851+00:00 +2025-07-01,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-08T23:02:45.243851+00:00 +2025-07-02,Aider,all,122,,20260408T230245Z,2026-04-08T23:04:57.002449+00:00 +2025-07-02,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-08T23:04:57.002449+00:00 +2025-07-02,ChatGPT,all,0,,20260408T230245Z,2026-04-08T23:04:57.002449+00:00 +2025-07-02,Claude Code,all,214,,20260408T230245Z,2026-04-08T23:04:57.002449+00:00 +2025-07-02,Cline,all,299,,20260408T230245Z,2026-04-08T23:04:57.002449+00:00 +2025-07-02,Codegen,all,84,,20260408T230245Z,2026-04-08T23:04:57.002449+00:00 +2025-07-02,Coderabbit,all,19,,20260408T230245Z,2026-04-08T23:04:57.002449+00:00 +2025-07-02,Copilot,all,0,,20260408T230245Z,2026-04-08T23:04:57.002449+00:00 +2025-07-02,Copilot SWE Agent,all,870,,20260408T230245Z,2026-04-08T23:04:57.002449+00:00 +2025-07-02,Crush,all,0,,20260408T230245Z,2026-04-08T23:04:57.002449+00:00 +2025-07-02,Cursor,all,1496,,20260408T230245Z,2026-04-08T23:04:57.002449+00:00 +2025-07-02,DeepSource,all,4,,20260408T230245Z,2026-04-08T23:04:57.002449+00:00 +2025-07-02,Devin,all,167,,20260408T230245Z,2026-04-08T23:04:57.002449+00:00 +2025-07-02,Gemini CLI,all,0,,20260408T230245Z,2026-04-08T23:04:57.002449+00:00 +2025-07-02,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-08T23:04:57.002449+00:00 +2025-07-02,Gru,all,0,,20260408T230245Z,2026-04-08T23:04:57.002449+00:00 +2025-07-02,Jules (Google),all,1478,,20260408T230245Z,2026-04-08T23:04:57.002449+00:00 +2025-07-02,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-08T23:04:57.002449+00:00 +2025-07-02,Kilo Code,all,0,,20260408T230245Z,2026-04-08T23:04:57.002449+00:00 +2025-07-02,Lovable,all,0,,20260408T230245Z,2026-04-08T23:04:57.002449+00:00 +2025-07-02,OpenAI Codex,all,1,,20260408T230245Z,2026-04-08T23:04:57.002449+00:00 +2025-07-02,OpenCode,all,0,,20260408T230245Z,2026-04-08T23:04:57.002449+00:00 +2025-07-02,OpenHands,all,139,,20260408T230245Z,2026-04-08T23:04:57.002449+00:00 +2025-07-02,Qwen Coder,all,0,,20260408T230245Z,2026-04-08T23:04:57.002449+00:00 +2025-07-02,Roo Code,all,0,,20260408T230245Z,2026-04-08T23:04:57.002449+00:00 +2025-07-02,Sketch,all,0,,20260408T230245Z,2026-04-08T23:04:57.002449+00:00 +2025-07-02,Sourcery AI,all,0,,20260408T230245Z,2026-04-08T23:04:57.002449+00:00 +2025-07-02,Sweep AI,all,0,,20260408T230245Z,2026-04-08T23:04:57.002449+00:00 +2025-07-02,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-08T23:04:57.002449+00:00 +2025-07-03,Aider,all,73,,20260408T230245Z,2026-04-08T23:07:08.563377+00:00 +2025-07-03,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-08T23:07:08.563377+00:00 +2025-07-03,ChatGPT,all,0,,20260408T230245Z,2026-04-08T23:07:08.563377+00:00 +2025-07-03,Claude Code,all,149,,20260408T230245Z,2026-04-08T23:07:08.563377+00:00 +2025-07-03,Cline,all,317,,20260408T230245Z,2026-04-08T23:07:08.563377+00:00 +2025-07-03,Codegen,all,1,,20260408T230245Z,2026-04-08T23:07:08.563377+00:00 +2025-07-03,Coderabbit,all,10,,20260408T230245Z,2026-04-08T23:07:08.563377+00:00 +2025-07-03,Copilot,all,0,,20260408T230245Z,2026-04-08T23:07:08.563377+00:00 +2025-07-03,Copilot SWE Agent,all,1194,,20260408T230245Z,2026-04-08T23:07:08.563377+00:00 +2025-07-03,Crush,all,0,,20260408T230245Z,2026-04-08T23:07:08.563377+00:00 +2025-07-03,Cursor,all,799,,20260408T230245Z,2026-04-08T23:07:08.563377+00:00 +2025-07-03,DeepSource,all,13,,20260408T230245Z,2026-04-08T23:07:08.563377+00:00 +2025-07-03,Devin,all,300,,20260408T230245Z,2026-04-08T23:07:08.563377+00:00 +2025-07-03,Gemini CLI,all,0,,20260408T230245Z,2026-04-08T23:07:08.563377+00:00 +2025-07-03,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-08T23:07:08.563377+00:00 +2025-07-03,Gru,all,0,,20260408T230245Z,2026-04-08T23:07:08.563377+00:00 +2025-07-03,Jules (Google),all,1470,,20260408T230245Z,2026-04-08T23:07:08.563377+00:00 +2025-07-03,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-08T23:07:08.563377+00:00 +2025-07-03,Kilo Code,all,0,,20260408T230245Z,2026-04-08T23:07:08.563377+00:00 +2025-07-03,Lovable,all,0,,20260408T230245Z,2026-04-08T23:07:08.563377+00:00 +2025-07-03,OpenAI Codex,all,9,,20260408T230245Z,2026-04-08T23:07:08.563377+00:00 +2025-07-03,OpenCode,all,0,,20260408T230245Z,2026-04-08T23:07:08.563377+00:00 +2025-07-03,OpenHands,all,100,,20260408T230245Z,2026-04-08T23:07:08.563377+00:00 +2025-07-03,Qwen Coder,all,0,,20260408T230245Z,2026-04-08T23:07:08.563377+00:00 +2025-07-03,Roo Code,all,0,,20260408T230245Z,2026-04-08T23:07:08.563377+00:00 +2025-07-03,Sketch,all,0,,20260408T230245Z,2026-04-08T23:07:08.563377+00:00 +2025-07-03,Sourcery AI,all,0,,20260408T230245Z,2026-04-08T23:07:08.563377+00:00 +2025-07-03,Sweep AI,all,0,,20260408T230245Z,2026-04-08T23:07:08.563377+00:00 +2025-07-03,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-08T23:07:08.563377+00:00 +2025-07-04,Aider,all,72,,20260408T230245Z,2026-04-08T23:09:18.657519+00:00 +2025-07-04,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-08T23:09:18.657519+00:00 +2025-07-04,ChatGPT,all,11,,20260408T230245Z,2026-04-08T23:09:18.657519+00:00 +2025-07-04,Claude Code,all,228,,20260408T230245Z,2026-04-08T23:09:18.657519+00:00 +2025-07-04,Cline,all,251,,20260408T230245Z,2026-04-08T23:09:18.657519+00:00 +2025-07-04,Codegen,all,55,,20260408T230245Z,2026-04-08T23:09:18.657519+00:00 +2025-07-04,Coderabbit,all,11,,20260408T230245Z,2026-04-08T23:09:18.657519+00:00 +2025-07-04,Copilot,all,0,,20260408T230245Z,2026-04-08T23:09:18.657519+00:00 +2025-07-04,Copilot SWE Agent,all,1152,,20260408T230245Z,2026-04-08T23:09:18.657519+00:00 +2025-07-04,Crush,all,0,,20260408T230245Z,2026-04-08T23:09:18.657519+00:00 +2025-07-04,Cursor,all,1142,,20260408T230245Z,2026-04-08T23:09:18.657519+00:00 +2025-07-04,DeepSource,all,5,,20260408T230245Z,2026-04-08T23:09:18.657519+00:00 +2025-07-04,Devin,all,260,,20260408T230245Z,2026-04-08T23:09:18.657519+00:00 +2025-07-04,Gemini CLI,all,0,,20260408T230245Z,2026-04-08T23:09:18.657519+00:00 +2025-07-04,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-08T23:09:18.657519+00:00 +2025-07-04,Gru,all,0,,20260408T230245Z,2026-04-08T23:09:18.657519+00:00 +2025-07-04,Jules (Google),all,1366,,20260408T230245Z,2026-04-08T23:09:18.657519+00:00 +2025-07-04,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-08T23:09:18.657519+00:00 +2025-07-04,Kilo Code,all,0,,20260408T230245Z,2026-04-08T23:09:18.657519+00:00 +2025-07-04,Lovable,all,0,,20260408T230245Z,2026-04-08T23:09:18.657519+00:00 +2025-07-04,OpenAI Codex,all,3,,20260408T230245Z,2026-04-08T23:09:18.657519+00:00 +2025-07-04,OpenCode,all,0,,20260408T230245Z,2026-04-08T23:09:18.657519+00:00 +2025-07-04,OpenHands,all,72,,20260408T230245Z,2026-04-08T23:09:18.657519+00:00 +2025-07-04,Qwen Coder,all,0,,20260408T230245Z,2026-04-08T23:09:18.657519+00:00 +2025-07-04,Roo Code,all,0,,20260408T230245Z,2026-04-08T23:09:18.657519+00:00 +2025-07-04,Sketch,all,0,,20260408T230245Z,2026-04-08T23:09:18.657519+00:00 +2025-07-04,Sourcery AI,all,0,,20260408T230245Z,2026-04-08T23:09:18.657519+00:00 +2025-07-04,Sweep AI,all,0,,20260408T230245Z,2026-04-08T23:09:18.657519+00:00 +2025-07-04,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-08T23:09:18.657519+00:00 +2025-07-05,Aider,all,56,,20260408T230245Z,2026-04-08T23:11:28.048859+00:00 +2025-07-05,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-08T23:11:28.048859+00:00 +2025-07-05,ChatGPT,all,1,,20260408T230245Z,2026-04-08T23:11:28.048859+00:00 +2025-07-05,Claude Code,all,172,,20260408T230245Z,2026-04-08T23:11:28.048859+00:00 +2025-07-05,Cline,all,15,,20260408T230245Z,2026-04-08T23:11:28.048859+00:00 +2025-07-05,Codegen,all,15,,20260408T230245Z,2026-04-08T23:11:28.048859+00:00 +2025-07-05,Coderabbit,all,11,,20260408T230245Z,2026-04-08T23:11:28.048859+00:00 +2025-07-05,Copilot,all,6,,20260408T230245Z,2026-04-08T23:11:28.048859+00:00 +2025-07-05,Copilot SWE Agent,all,934,,20260408T230245Z,2026-04-08T23:11:28.048859+00:00 +2025-07-05,Crush,all,0,,20260408T230245Z,2026-04-08T23:11:28.048859+00:00 +2025-07-05,Cursor,all,890,,20260408T230245Z,2026-04-08T23:11:28.048859+00:00 +2025-07-05,DeepSource,all,0,,20260408T230245Z,2026-04-08T23:11:28.048859+00:00 +2025-07-05,Devin,all,22,,20260408T230245Z,2026-04-08T23:11:28.048859+00:00 +2025-07-05,Gemini CLI,all,0,,20260408T230245Z,2026-04-08T23:11:28.048859+00:00 +2025-07-05,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-08T23:11:28.048859+00:00 +2025-07-05,Gru,all,0,,20260408T230245Z,2026-04-08T23:11:28.048859+00:00 +2025-07-05,Jules (Google),all,1283,,20260408T230245Z,2026-04-08T23:11:28.048859+00:00 +2025-07-05,Junie (JetBrains),all,2,,20260408T230245Z,2026-04-08T23:11:28.048859+00:00 +2025-07-05,Kilo Code,all,0,,20260408T230245Z,2026-04-08T23:11:28.048859+00:00 +2025-07-05,Lovable,all,0,,20260408T230245Z,2026-04-08T23:11:28.048859+00:00 +2025-07-05,OpenAI Codex,all,0,,20260408T230245Z,2026-04-08T23:11:28.048859+00:00 +2025-07-05,OpenCode,all,0,,20260408T230245Z,2026-04-08T23:11:28.048859+00:00 +2025-07-05,OpenHands,all,161,,20260408T230245Z,2026-04-08T23:11:28.048859+00:00 +2025-07-05,Qwen Coder,all,0,,20260408T230245Z,2026-04-08T23:11:28.048859+00:00 +2025-07-05,Roo Code,all,0,,20260408T230245Z,2026-04-08T23:11:28.048859+00:00 +2025-07-05,Sketch,all,0,,20260408T230245Z,2026-04-08T23:11:28.048859+00:00 +2025-07-05,Sourcery AI,all,0,,20260408T230245Z,2026-04-08T23:11:28.048859+00:00 +2025-07-05,Sweep AI,all,0,,20260408T230245Z,2026-04-08T23:11:28.048859+00:00 +2025-07-05,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-08T23:11:28.048859+00:00 +2025-07-06,Aider,all,34,,20260408T230245Z,2026-04-08T23:13:37.422795+00:00 +2025-07-06,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-08T23:13:37.422795+00:00 +2025-07-06,ChatGPT,all,11,,20260408T230245Z,2026-04-08T23:13:37.422795+00:00 +2025-07-06,Claude Code,all,115,,20260408T230245Z,2026-04-08T23:13:37.422795+00:00 +2025-07-06,Cline,all,5,,20260408T230245Z,2026-04-08T23:13:37.422795+00:00 +2025-07-06,Codegen,all,32,,20260408T230245Z,2026-04-08T23:13:37.422795+00:00 +2025-07-06,Coderabbit,all,9,,20260408T230245Z,2026-04-08T23:13:37.422795+00:00 +2025-07-06,Copilot,all,5,,20260408T230245Z,2026-04-08T23:13:37.422795+00:00 +2025-07-06,Copilot SWE Agent,all,634,,20260408T230245Z,2026-04-08T23:13:37.422795+00:00 +2025-07-06,Crush,all,0,,20260408T230245Z,2026-04-08T23:13:37.422795+00:00 +2025-07-06,Cursor,all,1132,,20260408T230245Z,2026-04-08T23:13:37.422795+00:00 +2025-07-06,DeepSource,all,10,,20260408T230245Z,2026-04-08T23:13:37.422795+00:00 +2025-07-06,Devin,all,6,,20260408T230245Z,2026-04-08T23:13:37.422795+00:00 +2025-07-06,Gemini CLI,all,0,,20260408T230245Z,2026-04-08T23:13:37.422795+00:00 +2025-07-06,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-08T23:13:37.422795+00:00 +2025-07-06,Gru,all,0,,20260408T230245Z,2026-04-08T23:13:37.422795+00:00 +2025-07-06,Jules (Google),all,1389,,20260408T230245Z,2026-04-08T23:13:37.422795+00:00 +2025-07-06,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-08T23:13:37.422795+00:00 +2025-07-06,Kilo Code,all,0,,20260408T230245Z,2026-04-08T23:13:37.422795+00:00 +2025-07-06,Lovable,all,0,,20260408T230245Z,2026-04-08T23:13:37.422795+00:00 +2025-07-06,OpenAI Codex,all,7,,20260408T230245Z,2026-04-08T23:13:37.422795+00:00 +2025-07-06,OpenCode,all,0,,20260408T230245Z,2026-04-08T23:13:37.422795+00:00 +2025-07-06,OpenHands,all,145,,20260408T230245Z,2026-04-08T23:13:37.422795+00:00 +2025-07-06,Qwen Coder,all,0,,20260408T230245Z,2026-04-08T23:13:37.422795+00:00 +2025-07-06,Roo Code,all,0,,20260408T230245Z,2026-04-08T23:13:37.422795+00:00 +2025-07-06,Sketch,all,0,,20260408T230245Z,2026-04-08T23:13:37.422795+00:00 +2025-07-06,Sourcery AI,all,0,,20260408T230245Z,2026-04-08T23:13:37.422795+00:00 +2025-07-06,Sweep AI,all,0,,20260408T230245Z,2026-04-08T23:13:37.422795+00:00 +2025-07-06,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-08T23:13:37.422795+00:00 +2025-07-07,Aider,all,85,,20260408T230245Z,2026-04-08T23:15:47.658461+00:00 +2025-07-07,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-08T23:15:47.658461+00:00 +2025-07-07,ChatGPT,all,8,,20260408T230245Z,2026-04-08T23:15:47.658461+00:00 +2025-07-07,Claude Code,all,148,,20260408T230245Z,2026-04-08T23:15:47.658461+00:00 +2025-07-07,Cline,all,33,,20260408T230245Z,2026-04-08T23:15:47.658461+00:00 +2025-07-07,Codegen,all,45,,20260408T230245Z,2026-04-08T23:15:47.658461+00:00 +2025-07-07,Coderabbit,all,11,,20260408T230245Z,2026-04-08T23:15:47.658461+00:00 +2025-07-07,Copilot,all,2,,20260408T230245Z,2026-04-08T23:15:47.658461+00:00 +2025-07-07,Copilot SWE Agent,all,1105,,20260408T230245Z,2026-04-08T23:15:47.658461+00:00 +2025-07-07,Crush,all,0,,20260408T230245Z,2026-04-08T23:15:47.658461+00:00 +2025-07-07,Cursor,all,1122,,20260408T230245Z,2026-04-08T23:15:47.658461+00:00 +2025-07-07,DeepSource,all,9,,20260408T230245Z,2026-04-08T23:15:47.658461+00:00 +2025-07-07,Devin,all,24,,20260408T230245Z,2026-04-08T23:15:47.658461+00:00 +2025-07-07,Gemini CLI,all,0,,20260408T230245Z,2026-04-08T23:15:47.658461+00:00 +2025-07-07,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-08T23:15:47.658461+00:00 +2025-07-07,Gru,all,0,,20260408T230245Z,2026-04-08T23:15:47.658461+00:00 +2025-07-07,Jules (Google),all,1277,,20260408T230245Z,2026-04-08T23:15:47.658461+00:00 +2025-07-07,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-08T23:15:47.658461+00:00 +2025-07-07,Kilo Code,all,0,,20260408T230245Z,2026-04-08T23:15:47.658461+00:00 +2025-07-07,Lovable,all,0,,20260408T230245Z,2026-04-08T23:15:47.658461+00:00 +2025-07-07,OpenAI Codex,all,3,,20260408T230245Z,2026-04-08T23:15:47.658461+00:00 +2025-07-07,OpenCode,all,0,,20260408T230245Z,2026-04-08T23:15:47.658461+00:00 +2025-07-07,OpenHands,all,105,,20260408T230245Z,2026-04-08T23:15:47.658461+00:00 +2025-07-07,Qwen Coder,all,0,,20260408T230245Z,2026-04-08T23:15:47.658461+00:00 +2025-07-07,Roo Code,all,0,,20260408T230245Z,2026-04-08T23:15:47.658461+00:00 +2025-07-07,Sketch,all,0,,20260408T230245Z,2026-04-08T23:15:47.658461+00:00 +2025-07-07,Sourcery AI,all,0,,20260408T230245Z,2026-04-08T23:15:47.658461+00:00 +2025-07-07,Sweep AI,all,0,,20260408T230245Z,2026-04-08T23:15:47.658461+00:00 +2025-07-07,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-08T23:15:47.658461+00:00 +2025-07-08,Aider,all,33,,20260408T230245Z,2026-04-08T23:17:59.311477+00:00 +2025-07-08,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-08T23:17:59.311477+00:00 +2025-07-08,ChatGPT,all,2,,20260408T230245Z,2026-04-08T23:17:59.311477+00:00 +2025-07-08,Claude Code,all,175,,20260408T230245Z,2026-04-08T23:17:59.311477+00:00 +2025-07-08,Cline,all,652,,20260408T230245Z,2026-04-08T23:17:59.311477+00:00 +2025-07-08,Codegen,all,33,,20260408T230245Z,2026-04-08T23:17:59.311477+00:00 +2025-07-08,Coderabbit,all,14,,20260408T230245Z,2026-04-08T23:17:59.311477+00:00 +2025-07-08,Copilot,all,1,,20260408T230245Z,2026-04-08T23:17:59.311477+00:00 +2025-07-08,Copilot SWE Agent,all,1596,,20260408T230245Z,2026-04-08T23:17:59.311477+00:00 +2025-07-08,Crush,all,0,,20260408T230245Z,2026-04-08T23:17:59.311477+00:00 +2025-07-08,Cursor,all,1014,,20260408T230245Z,2026-04-08T23:17:59.311477+00:00 +2025-07-08,DeepSource,all,11,,20260408T230245Z,2026-04-08T23:17:59.311477+00:00 +2025-07-08,Devin,all,39,,20260408T230245Z,2026-04-08T23:17:59.311477+00:00 +2025-07-08,Gemini CLI,all,0,,20260408T230245Z,2026-04-08T23:17:59.311477+00:00 +2025-07-08,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-08T23:17:59.311477+00:00 +2025-07-08,Gru,all,36,,20260408T230245Z,2026-04-08T23:17:59.311477+00:00 +2025-07-08,Jules (Google),all,1561,,20260408T230245Z,2026-04-08T23:17:59.311477+00:00 +2025-07-08,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-08T23:17:59.311477+00:00 +2025-07-08,Kilo Code,all,0,,20260408T230245Z,2026-04-08T23:17:59.311477+00:00 +2025-07-08,Lovable,all,0,,20260408T230245Z,2026-04-08T23:17:59.311477+00:00 +2025-07-08,OpenAI Codex,all,2,,20260408T230245Z,2026-04-08T23:17:59.311477+00:00 +2025-07-08,OpenCode,all,0,,20260408T230245Z,2026-04-08T23:17:59.311477+00:00 +2025-07-08,OpenHands,all,83,,20260408T230245Z,2026-04-08T23:17:59.311477+00:00 +2025-07-08,Qwen Coder,all,0,,20260408T230245Z,2026-04-08T23:17:59.311477+00:00 +2025-07-08,Roo Code,all,0,,20260408T230245Z,2026-04-08T23:17:59.311477+00:00 +2025-07-08,Sketch,all,0,,20260408T230245Z,2026-04-08T23:17:59.311477+00:00 +2025-07-08,Sourcery AI,all,0,,20260408T230245Z,2026-04-08T23:17:59.311477+00:00 +2025-07-08,Sweep AI,all,0,,20260408T230245Z,2026-04-08T23:17:59.311477+00:00 +2025-07-08,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-08T23:17:59.311477+00:00 +2025-07-09,Aider,all,84,,20260408T230245Z,2026-04-08T23:20:09.938684+00:00 +2025-07-09,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-08T23:20:09.938684+00:00 +2025-07-09,ChatGPT,all,6,,20260408T230245Z,2026-04-08T23:20:09.938684+00:00 +2025-07-09,Claude Code,all,149,,20260408T230245Z,2026-04-08T23:20:09.938684+00:00 +2025-07-09,Cline,all,279,,20260408T230245Z,2026-04-08T23:20:09.938684+00:00 +2025-07-09,Codegen,all,9,,20260408T230245Z,2026-04-08T23:20:09.938684+00:00 +2025-07-09,Coderabbit,all,8,,20260408T230245Z,2026-04-08T23:20:09.938684+00:00 +2025-07-09,Copilot,all,0,,20260408T230245Z,2026-04-08T23:20:09.938684+00:00 +2025-07-09,Copilot SWE Agent,all,1531,,20260408T230245Z,2026-04-08T23:20:09.938684+00:00 +2025-07-09,Crush,all,0,,20260408T230245Z,2026-04-08T23:20:09.938684+00:00 +2025-07-09,Cursor,all,976,,20260408T230245Z,2026-04-08T23:20:09.938684+00:00 +2025-07-09,DeepSource,all,18,,20260408T230245Z,2026-04-08T23:20:09.938684+00:00 +2025-07-09,Devin,all,22,,20260408T230245Z,2026-04-08T23:20:09.938684+00:00 +2025-07-09,Gemini CLI,all,0,,20260408T230245Z,2026-04-08T23:20:09.938684+00:00 +2025-07-09,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-08T23:20:09.938684+00:00 +2025-07-09,Gru,all,6,,20260408T230245Z,2026-04-08T23:20:09.938684+00:00 +2025-07-09,Jules (Google),all,1513,,20260408T230245Z,2026-04-08T23:20:09.938684+00:00 +2025-07-09,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-08T23:20:09.938684+00:00 +2025-07-09,Kilo Code,all,0,,20260408T230245Z,2026-04-08T23:20:09.938684+00:00 +2025-07-09,Lovable,all,0,,20260408T230245Z,2026-04-08T23:20:09.938684+00:00 +2025-07-09,OpenAI Codex,all,15,,20260408T230245Z,2026-04-08T23:20:09.938684+00:00 +2025-07-09,OpenCode,all,0,,20260408T230245Z,2026-04-08T23:20:09.938684+00:00 +2025-07-09,OpenHands,all,49,,20260408T230245Z,2026-04-08T23:20:09.938684+00:00 +2025-07-09,Qwen Coder,all,0,,20260408T230245Z,2026-04-08T23:20:09.938684+00:00 +2025-07-09,Roo Code,all,0,,20260408T230245Z,2026-04-08T23:20:09.938684+00:00 +2025-07-09,Sketch,all,0,,20260408T230245Z,2026-04-08T23:20:09.938684+00:00 +2025-07-09,Sourcery AI,all,0,,20260408T230245Z,2026-04-08T23:20:09.938684+00:00 +2025-07-09,Sweep AI,all,0,,20260408T230245Z,2026-04-08T23:20:09.938684+00:00 +2025-07-09,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-08T23:20:09.938684+00:00 +2025-07-10,Aider,all,71,,20260408T230245Z,2026-04-08T23:22:21.762896+00:00 +2025-07-10,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-08T23:22:21.762896+00:00 +2025-07-10,ChatGPT,all,10,,20260408T230245Z,2026-04-08T23:22:21.762896+00:00 +2025-07-10,Claude Code,all,80,,20260408T230245Z,2026-04-08T23:22:21.762896+00:00 +2025-07-10,Cline,all,322,,20260408T230245Z,2026-04-08T23:22:21.762896+00:00 +2025-07-10,Codegen,all,12,,20260408T230245Z,2026-04-08T23:22:21.762896+00:00 +2025-07-10,Coderabbit,all,13,,20260408T230245Z,2026-04-08T23:22:21.762896+00:00 +2025-07-10,Copilot,all,7,,20260408T230245Z,2026-04-08T23:22:21.762896+00:00 +2025-07-10,Copilot SWE Agent,all,1180,,20260408T230245Z,2026-04-08T23:22:21.762896+00:00 +2025-07-10,Crush,all,0,,20260408T230245Z,2026-04-08T23:22:21.762896+00:00 +2025-07-10,Cursor,all,1128,,20260408T230245Z,2026-04-08T23:22:21.762896+00:00 +2025-07-10,DeepSource,all,4,,20260408T230245Z,2026-04-08T23:22:21.762896+00:00 +2025-07-10,Devin,all,828,,20260408T230245Z,2026-04-08T23:22:21.762896+00:00 +2025-07-10,Gemini CLI,all,0,,20260408T230245Z,2026-04-08T23:22:21.762896+00:00 +2025-07-10,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-08T23:22:21.762896+00:00 +2025-07-10,Gru,all,5,,20260408T230245Z,2026-04-08T23:22:21.762896+00:00 +2025-07-10,Jules (Google),all,1366,,20260408T230245Z,2026-04-08T23:22:21.762896+00:00 +2025-07-10,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-08T23:22:21.762896+00:00 +2025-07-10,Kilo Code,all,0,,20260408T230245Z,2026-04-08T23:22:21.762896+00:00 +2025-07-10,Lovable,all,0,,20260408T230245Z,2026-04-08T23:22:21.762896+00:00 +2025-07-10,OpenAI Codex,all,15,,20260408T230245Z,2026-04-08T23:22:21.762896+00:00 +2025-07-10,OpenCode,all,0,,20260408T230245Z,2026-04-08T23:22:21.762896+00:00 +2025-07-10,OpenHands,all,131,,20260408T230245Z,2026-04-08T23:22:21.762896+00:00 +2025-07-10,Qwen Coder,all,0,,20260408T230245Z,2026-04-08T23:22:21.762896+00:00 +2025-07-10,Roo Code,all,0,,20260408T230245Z,2026-04-08T23:22:21.762896+00:00 +2025-07-10,Sketch,all,0,,20260408T230245Z,2026-04-08T23:22:21.762896+00:00 +2025-07-10,Sourcery AI,all,0,,20260408T230245Z,2026-04-08T23:22:21.762896+00:00 +2025-07-10,Sweep AI,all,0,,20260408T230245Z,2026-04-08T23:22:21.762896+00:00 +2025-07-10,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-08T23:22:21.762896+00:00 +2025-07-11,Aider,all,109,,20260408T230245Z,2026-04-08T23:24:32.762411+00:00 +2025-07-11,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-08T23:24:32.762411+00:00 +2025-07-11,ChatGPT,all,20,,20260408T230245Z,2026-04-08T23:24:32.762411+00:00 +2025-07-11,Claude Code,all,107,,20260408T230245Z,2026-04-08T23:24:32.762411+00:00 +2025-07-11,Cline,all,556,,20260408T230245Z,2026-04-08T23:24:32.762411+00:00 +2025-07-11,Codegen,all,4,,20260408T230245Z,2026-04-08T23:24:32.762411+00:00 +2025-07-11,Coderabbit,all,15,,20260408T230245Z,2026-04-08T23:24:32.762411+00:00 +2025-07-11,Copilot,all,15,,20260408T230245Z,2026-04-08T23:24:32.762411+00:00 +2025-07-11,Copilot SWE Agent,all,1508,,20260408T230245Z,2026-04-08T23:24:32.762411+00:00 +2025-07-11,Crush,all,0,,20260408T230245Z,2026-04-08T23:24:32.762411+00:00 +2025-07-11,Cursor,all,1070,,20260408T230245Z,2026-04-08T23:24:32.762411+00:00 +2025-07-11,DeepSource,all,1,,20260408T230245Z,2026-04-08T23:24:32.762411+00:00 +2025-07-11,Devin,all,867,,20260408T230245Z,2026-04-08T23:24:32.762411+00:00 +2025-07-11,Gemini CLI,all,0,,20260408T230245Z,2026-04-08T23:24:32.762411+00:00 +2025-07-11,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-08T23:24:32.762411+00:00 +2025-07-11,Gru,all,0,,20260408T230245Z,2026-04-08T23:24:32.762411+00:00 +2025-07-11,Jules (Google),all,1401,,20260408T230245Z,2026-04-08T23:24:32.762411+00:00 +2025-07-11,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-08T23:24:32.762411+00:00 +2025-07-11,Kilo Code,all,2,,20260408T230245Z,2026-04-08T23:24:32.762411+00:00 +2025-07-11,Lovable,all,0,,20260408T230245Z,2026-04-08T23:24:32.762411+00:00 +2025-07-11,OpenAI Codex,all,5,,20260408T230245Z,2026-04-08T23:24:32.762411+00:00 +2025-07-11,OpenCode,all,0,,20260408T230245Z,2026-04-08T23:24:32.762411+00:00 +2025-07-11,OpenHands,all,186,,20260408T230245Z,2026-04-08T23:24:32.762411+00:00 +2025-07-11,Qwen Coder,all,0,,20260408T230245Z,2026-04-08T23:24:32.762411+00:00 +2025-07-11,Roo Code,all,0,,20260408T230245Z,2026-04-08T23:24:32.762411+00:00 +2025-07-11,Sketch,all,0,,20260408T230245Z,2026-04-08T23:24:32.762411+00:00 +2025-07-11,Sourcery AI,all,0,,20260408T230245Z,2026-04-08T23:24:32.762411+00:00 +2025-07-11,Sweep AI,all,0,,20260408T230245Z,2026-04-08T23:24:32.762411+00:00 +2025-07-11,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-08T23:24:32.762411+00:00 +2025-07-12,Aider,all,88,,20260408T230245Z,2026-04-08T23:26:44.529974+00:00 +2025-07-12,Amp (Sourcegraph),all,3,,20260408T230245Z,2026-04-08T23:26:44.529974+00:00 +2025-07-12,ChatGPT,all,7,,20260408T230245Z,2026-04-08T23:26:44.529974+00:00 +2025-07-12,Claude Code,all,222,,20260408T230245Z,2026-04-08T23:26:44.529974+00:00 +2025-07-12,Cline,all,9,,20260408T230245Z,2026-04-08T23:26:44.529974+00:00 +2025-07-12,Codegen,all,49,,20260408T230245Z,2026-04-08T23:26:44.529974+00:00 +2025-07-12,Coderabbit,all,16,,20260408T230245Z,2026-04-08T23:26:44.529974+00:00 +2025-07-12,Copilot,all,20,,20260408T230245Z,2026-04-08T23:26:44.529974+00:00 +2025-07-12,Copilot SWE Agent,all,1189,,20260408T230245Z,2026-04-08T23:26:44.529974+00:00 +2025-07-12,Crush,all,0,,20260408T230245Z,2026-04-08T23:26:44.529974+00:00 +2025-07-12,Cursor,all,649,,20260408T230245Z,2026-04-08T23:26:44.529974+00:00 +2025-07-12,DeepSource,all,4,,20260408T230245Z,2026-04-08T23:26:44.529974+00:00 +2025-07-12,Devin,all,11,,20260408T230245Z,2026-04-08T23:26:44.529974+00:00 +2025-07-12,Gemini CLI,all,0,,20260408T230245Z,2026-04-08T23:26:44.529974+00:00 +2025-07-12,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-08T23:26:44.529974+00:00 +2025-07-12,Gru,all,0,,20260408T230245Z,2026-04-08T23:26:44.529974+00:00 +2025-07-12,Jules (Google),all,1408,,20260408T230245Z,2026-04-08T23:26:44.529974+00:00 +2025-07-12,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-08T23:26:44.529974+00:00 +2025-07-12,Kilo Code,all,0,,20260408T230245Z,2026-04-08T23:26:44.529974+00:00 +2025-07-12,Lovable,all,0,,20260408T230245Z,2026-04-08T23:26:44.529974+00:00 +2025-07-12,OpenAI Codex,all,5,,20260408T230245Z,2026-04-08T23:26:44.529974+00:00 +2025-07-12,OpenCode,all,0,,20260408T230245Z,2026-04-08T23:26:44.529974+00:00 +2025-07-12,OpenHands,all,99,,20260408T230245Z,2026-04-08T23:26:44.529974+00:00 +2025-07-12,Qwen Coder,all,0,,20260408T230245Z,2026-04-08T23:26:44.529974+00:00 +2025-07-12,Roo Code,all,0,,20260408T230245Z,2026-04-08T23:26:44.529974+00:00 +2025-07-12,Sketch,all,0,,20260408T230245Z,2026-04-08T23:26:44.529974+00:00 +2025-07-12,Sourcery AI,all,0,,20260408T230245Z,2026-04-08T23:26:44.529974+00:00 +2025-07-12,Sweep AI,all,0,,20260408T230245Z,2026-04-08T23:26:44.529974+00:00 +2025-07-12,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-08T23:26:44.529974+00:00 +2025-07-13,Aider,all,39,,20260408T230245Z,2026-04-08T23:28:56.114451+00:00 +2025-07-13,Amp (Sourcegraph),all,3,,20260408T230245Z,2026-04-08T23:28:56.114451+00:00 +2025-07-13,ChatGPT,all,0,,20260408T230245Z,2026-04-08T23:28:56.114451+00:00 +2025-07-13,Claude Code,all,152,,20260408T230245Z,2026-04-08T23:28:56.114451+00:00 +2025-07-13,Cline,all,246,,20260408T230245Z,2026-04-08T23:28:56.114451+00:00 +2025-07-13,Codegen,all,31,,20260408T230245Z,2026-04-08T23:28:56.114451+00:00 +2025-07-13,Coderabbit,all,61,,20260408T230245Z,2026-04-08T23:28:56.114451+00:00 +2025-07-13,Copilot,all,13,,20260408T230245Z,2026-04-08T23:28:56.114451+00:00 +2025-07-13,Copilot SWE Agent,all,1578,,20260408T230245Z,2026-04-08T23:28:56.114451+00:00 +2025-07-13,Crush,all,0,,20260408T230245Z,2026-04-08T23:28:56.114451+00:00 +2025-07-13,Cursor,all,1014,,20260408T230245Z,2026-04-08T23:28:56.114451+00:00 +2025-07-13,DeepSource,all,13,,20260408T230245Z,2026-04-08T23:28:56.114451+00:00 +2025-07-13,Devin,all,27,,20260408T230245Z,2026-04-08T23:28:56.114451+00:00 +2025-07-13,Gemini CLI,all,0,,20260408T230245Z,2026-04-08T23:28:56.114451+00:00 +2025-07-13,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-08T23:28:56.114451+00:00 +2025-07-13,Gru,all,0,,20260408T230245Z,2026-04-08T23:28:56.114451+00:00 +2025-07-13,Jules (Google),all,1574,,20260408T230245Z,2026-04-08T23:28:56.114451+00:00 +2025-07-13,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-08T23:28:56.114451+00:00 +2025-07-13,Kilo Code,all,0,,20260408T230245Z,2026-04-08T23:28:56.114451+00:00 +2025-07-13,Lovable,all,0,,20260408T230245Z,2026-04-08T23:28:56.114451+00:00 +2025-07-13,OpenAI Codex,all,18,,20260408T230245Z,2026-04-08T23:28:56.114451+00:00 +2025-07-13,OpenCode,all,4,,20260408T230245Z,2026-04-08T23:28:56.114451+00:00 +2025-07-13,OpenHands,all,74,,20260408T230245Z,2026-04-08T23:28:56.114451+00:00 +2025-07-13,Qwen Coder,all,0,,20260408T230245Z,2026-04-08T23:28:56.114451+00:00 +2025-07-13,Roo Code,all,0,,20260408T230245Z,2026-04-08T23:28:56.114451+00:00 +2025-07-13,Sketch,all,0,,20260408T230245Z,2026-04-08T23:28:56.114451+00:00 +2025-07-13,Sourcery AI,all,0,,20260408T230245Z,2026-04-08T23:28:56.114451+00:00 +2025-07-13,Sweep AI,all,0,,20260408T230245Z,2026-04-08T23:28:56.114451+00:00 +2025-07-13,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-08T23:28:56.114451+00:00 +2025-07-14,Aider,all,48,,20260408T230245Z,2026-04-08T23:31:08.000610+00:00 +2025-07-14,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-08T23:31:08.000610+00:00 +2025-07-14,ChatGPT,all,4,,20260408T230245Z,2026-04-08T23:31:08.000610+00:00 +2025-07-14,Claude Code,all,158,,20260408T230245Z,2026-04-08T23:31:08.000610+00:00 +2025-07-14,Cline,all,256,,20260408T230245Z,2026-04-08T23:31:08.000610+00:00 +2025-07-14,Codegen,all,18,,20260408T230245Z,2026-04-08T23:31:08.000610+00:00 +2025-07-14,Coderabbit,all,110,,20260408T230245Z,2026-04-08T23:31:08.000610+00:00 +2025-07-14,Copilot,all,15,,20260408T230245Z,2026-04-08T23:31:08.000610+00:00 +2025-07-14,Copilot SWE Agent,all,5785,,20260408T230245Z,2026-04-08T23:31:08.000610+00:00 +2025-07-14,Crush,all,0,,20260408T230245Z,2026-04-08T23:31:08.000610+00:00 +2025-07-14,Cursor,all,1031,1,20260408T230245Z,2026-04-08T23:31:08.000610+00:00 +2025-07-14,DeepSource,all,5,,20260408T230245Z,2026-04-08T23:31:08.000610+00:00 +2025-07-14,Devin,all,51,,20260408T230245Z,2026-04-08T23:31:08.000610+00:00 +2025-07-14,Gemini CLI,all,0,,20260408T230245Z,2026-04-08T23:31:08.000610+00:00 +2025-07-14,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-08T23:31:08.000610+00:00 +2025-07-14,Gru,all,0,,20260408T230245Z,2026-04-08T23:31:08.000610+00:00 +2025-07-14,Jules (Google),all,1497,,20260408T230245Z,2026-04-08T23:31:08.000610+00:00 +2025-07-14,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-08T23:31:08.000610+00:00 +2025-07-14,Kilo Code,all,0,,20260408T230245Z,2026-04-08T23:31:08.000610+00:00 +2025-07-14,Lovable,all,0,,20260408T230245Z,2026-04-08T23:31:08.000610+00:00 +2025-07-14,OpenAI Codex,all,6,,20260408T230245Z,2026-04-08T23:31:08.000610+00:00 +2025-07-14,OpenCode,all,10,,20260408T230245Z,2026-04-08T23:31:08.000610+00:00 +2025-07-14,OpenHands,all,143,,20260408T230245Z,2026-04-08T23:31:08.000610+00:00 +2025-07-14,Qwen Coder,all,0,,20260408T230245Z,2026-04-08T23:31:08.000610+00:00 +2025-07-14,Roo Code,all,0,,20260408T230245Z,2026-04-08T23:31:08.000610+00:00 +2025-07-14,Sketch,all,0,,20260408T230245Z,2026-04-08T23:31:08.000610+00:00 +2025-07-14,Sourcery AI,all,0,,20260408T230245Z,2026-04-08T23:31:08.000610+00:00 +2025-07-14,Sweep AI,all,0,,20260408T230245Z,2026-04-08T23:31:08.000610+00:00 +2025-07-14,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-08T23:31:08.000610+00:00 +2025-07-15,Aider,all,41,,20260408T230245Z,2026-04-08T23:33:18.667106+00:00 +2025-07-15,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-08T23:33:18.667106+00:00 +2025-07-15,ChatGPT,all,0,,20260408T230245Z,2026-04-08T23:33:18.667106+00:00 +2025-07-15,Claude Code,all,163,,20260408T230245Z,2026-04-08T23:33:18.667106+00:00 +2025-07-15,Cline,all,551,,20260408T230245Z,2026-04-08T23:33:18.667106+00:00 +2025-07-15,Codegen,all,29,,20260408T230245Z,2026-04-08T23:33:18.667106+00:00 +2025-07-15,Coderabbit,all,15,,20260408T230245Z,2026-04-08T23:33:18.667106+00:00 +2025-07-15,Copilot,all,11,,20260408T230245Z,2026-04-08T23:33:18.667106+00:00 +2025-07-15,Copilot SWE Agent,all,1532,,20260408T230245Z,2026-04-08T23:33:18.667106+00:00 +2025-07-15,Crush,all,0,,20260408T230245Z,2026-04-08T23:33:18.667106+00:00 +2025-07-15,Cursor,all,1054,,20260408T230245Z,2026-04-08T23:33:18.667106+00:00 +2025-07-15,DeepSource,all,10,,20260408T230245Z,2026-04-08T23:33:18.667106+00:00 +2025-07-15,Devin,all,43,,20260408T230245Z,2026-04-08T23:33:18.667106+00:00 +2025-07-15,Gemini CLI,all,0,,20260408T230245Z,2026-04-08T23:33:18.667106+00:00 +2025-07-15,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-08T23:33:18.667106+00:00 +2025-07-15,Gru,all,0,,20260408T230245Z,2026-04-08T23:33:18.667106+00:00 +2025-07-15,Jules (Google),all,1461,,20260408T230245Z,2026-04-08T23:33:18.667106+00:00 +2025-07-15,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-08T23:33:18.667106+00:00 +2025-07-15,Kilo Code,all,1,,20260408T230245Z,2026-04-08T23:33:18.667106+00:00 +2025-07-15,Lovable,all,0,,20260408T230245Z,2026-04-08T23:33:18.667106+00:00 +2025-07-15,OpenAI Codex,all,0,,20260408T230245Z,2026-04-08T23:33:18.667106+00:00 +2025-07-15,OpenCode,all,0,,20260408T230245Z,2026-04-08T23:33:18.667106+00:00 +2025-07-15,OpenHands,all,139,,20260408T230245Z,2026-04-08T23:33:18.667106+00:00 +2025-07-15,Qwen Coder,all,0,,20260408T230245Z,2026-04-08T23:33:18.667106+00:00 +2025-07-15,Roo Code,all,0,,20260408T230245Z,2026-04-08T23:33:18.667106+00:00 +2025-07-15,Sketch,all,0,,20260408T230245Z,2026-04-08T23:33:18.667106+00:00 +2025-07-15,Sourcery AI,all,0,,20260408T230245Z,2026-04-08T23:33:18.667106+00:00 +2025-07-15,Sweep AI,all,0,,20260408T230245Z,2026-04-08T23:33:18.667106+00:00 +2025-07-15,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-08T23:33:18.667106+00:00 +2025-07-16,Aider,all,34,,20260408T230245Z,2026-04-08T23:35:29.454142+00:00 +2025-07-16,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-08T23:35:29.454142+00:00 +2025-07-16,ChatGPT,all,0,,20260408T230245Z,2026-04-08T23:35:29.454142+00:00 +2025-07-16,Claude Code,all,94,,20260408T230245Z,2026-04-08T23:35:29.454142+00:00 +2025-07-16,Cline,all,758,,20260408T230245Z,2026-04-08T23:35:29.454142+00:00 +2025-07-16,Codegen,all,7,,20260408T230245Z,2026-04-08T23:35:29.454142+00:00 +2025-07-16,Coderabbit,all,19,,20260408T230245Z,2026-04-08T23:35:29.454142+00:00 +2025-07-16,Copilot,all,16,,20260408T230245Z,2026-04-08T23:35:29.454142+00:00 +2025-07-16,Copilot SWE Agent,all,1661,,20260408T230245Z,2026-04-08T23:35:29.454142+00:00 +2025-07-16,Crush,all,0,,20260408T230245Z,2026-04-08T23:35:29.454142+00:00 +2025-07-16,Cursor,all,1444,,20260408T230245Z,2026-04-08T23:35:29.454142+00:00 +2025-07-16,DeepSource,all,6,,20260408T230245Z,2026-04-08T23:35:29.454142+00:00 +2025-07-16,Devin,all,319,,20260408T230245Z,2026-04-08T23:35:29.454142+00:00 +2025-07-16,Gemini CLI,all,0,,20260408T230245Z,2026-04-08T23:35:29.454142+00:00 +2025-07-16,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-08T23:35:29.454142+00:00 +2025-07-16,Gru,all,5,,20260408T230245Z,2026-04-08T23:35:29.454142+00:00 +2025-07-16,Jules (Google),all,1583,,20260408T230245Z,2026-04-08T23:35:29.454142+00:00 +2025-07-16,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-08T23:35:29.454142+00:00 +2025-07-16,Kilo Code,all,22,,20260408T230245Z,2026-04-08T23:35:29.454142+00:00 +2025-07-16,Lovable,all,0,,20260408T230245Z,2026-04-08T23:35:29.454142+00:00 +2025-07-16,OpenAI Codex,all,0,,20260408T230245Z,2026-04-08T23:35:29.454142+00:00 +2025-07-16,OpenCode,all,0,,20260408T230245Z,2026-04-08T23:35:29.454142+00:00 +2025-07-16,OpenHands,all,111,,20260408T230245Z,2026-04-08T23:35:29.454142+00:00 +2025-07-16,Qwen Coder,all,0,,20260408T230245Z,2026-04-08T23:35:29.454142+00:00 +2025-07-16,Roo Code,all,0,,20260408T230245Z,2026-04-08T23:35:29.454142+00:00 +2025-07-16,Sketch,all,0,,20260408T230245Z,2026-04-08T23:35:29.454142+00:00 +2025-07-16,Sourcery AI,all,1,,20260408T230245Z,2026-04-08T23:35:29.454142+00:00 +2025-07-16,Sweep AI,all,0,,20260408T230245Z,2026-04-08T23:35:29.454142+00:00 +2025-07-16,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-08T23:35:29.454142+00:00 +2025-07-17,Aider,all,96,,20260408T230245Z,2026-04-08T23:37:40.714081+00:00 +2025-07-17,Amp (Sourcegraph),all,3,,20260408T230245Z,2026-04-08T23:37:40.714081+00:00 +2025-07-17,ChatGPT,all,3,,20260408T230245Z,2026-04-08T23:37:40.714081+00:00 +2025-07-17,Claude Code,all,111,,20260408T230245Z,2026-04-08T23:37:40.714081+00:00 +2025-07-17,Cline,all,523,,20260408T230245Z,2026-04-08T23:37:40.714081+00:00 +2025-07-17,Codegen,all,17,,20260408T230245Z,2026-04-08T23:37:40.714081+00:00 +2025-07-17,Coderabbit,all,12,,20260408T230245Z,2026-04-08T23:37:40.714081+00:00 +2025-07-17,Copilot,all,10,,20260408T230245Z,2026-04-08T23:37:40.714081+00:00 +2025-07-17,Copilot SWE Agent,all,2003,,20260408T230245Z,2026-04-08T23:37:40.714081+00:00 +2025-07-17,Crush,all,0,,20260408T230245Z,2026-04-08T23:37:40.714081+00:00 +2025-07-17,Cursor,all,1307,,20260408T230245Z,2026-04-08T23:37:40.714081+00:00 +2025-07-17,DeepSource,all,14,,20260408T230245Z,2026-04-08T23:37:40.714081+00:00 +2025-07-17,Devin,all,30,,20260408T230245Z,2026-04-08T23:37:40.714081+00:00 +2025-07-17,Gemini CLI,all,0,,20260408T230245Z,2026-04-08T23:37:40.714081+00:00 +2025-07-17,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-08T23:37:40.714081+00:00 +2025-07-17,Gru,all,0,,20260408T230245Z,2026-04-08T23:37:40.714081+00:00 +2025-07-17,Jules (Google),all,1617,,20260408T230245Z,2026-04-08T23:37:40.714081+00:00 +2025-07-17,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-08T23:37:40.714081+00:00 +2025-07-17,Kilo Code,all,0,,20260408T230245Z,2026-04-08T23:37:40.714081+00:00 +2025-07-17,Lovable,all,0,,20260408T230245Z,2026-04-08T23:37:40.714081+00:00 +2025-07-17,OpenAI Codex,all,5,,20260408T230245Z,2026-04-08T23:37:40.714081+00:00 +2025-07-17,OpenCode,all,0,,20260408T230245Z,2026-04-08T23:37:40.714081+00:00 +2025-07-17,OpenHands,all,38,,20260408T230245Z,2026-04-08T23:37:40.714081+00:00 +2025-07-17,Qwen Coder,all,0,,20260408T230245Z,2026-04-08T23:37:40.714081+00:00 +2025-07-17,Roo Code,all,0,,20260408T230245Z,2026-04-08T23:37:40.714081+00:00 +2025-07-17,Sketch,all,0,,20260408T230245Z,2026-04-08T23:37:40.714081+00:00 +2025-07-17,Sourcery AI,all,0,,20260408T230245Z,2026-04-08T23:37:40.714081+00:00 +2025-07-17,Sweep AI,all,0,,20260408T230245Z,2026-04-08T23:37:40.714081+00:00 +2025-07-17,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-08T23:37:40.714081+00:00 +2025-07-18,Aider,all,61,,20260408T230245Z,2026-04-08T23:39:50.765321+00:00 +2025-07-18,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-08T23:39:50.765321+00:00 +2025-07-18,ChatGPT,all,1,,20260408T230245Z,2026-04-08T23:39:50.765321+00:00 +2025-07-18,Claude Code,all,108,,20260408T230245Z,2026-04-08T23:39:50.765321+00:00 +2025-07-18,Cline,all,759,,20260408T230245Z,2026-04-08T23:39:50.765321+00:00 +2025-07-18,Codegen,all,79,,20260408T230245Z,2026-04-08T23:39:50.765321+00:00 +2025-07-18,Coderabbit,all,62,,20260408T230245Z,2026-04-08T23:39:50.765321+00:00 +2025-07-18,Copilot,all,4,,20260408T230245Z,2026-04-08T23:39:50.765321+00:00 +2025-07-18,Copilot SWE Agent,all,2431,,20260408T230245Z,2026-04-08T23:39:50.765321+00:00 +2025-07-18,Crush,all,0,,20260408T230245Z,2026-04-08T23:39:50.765321+00:00 +2025-07-18,Cursor,all,1556,,20260408T230245Z,2026-04-08T23:39:50.765321+00:00 +2025-07-18,DeepSource,all,16,,20260408T230245Z,2026-04-08T23:39:50.765321+00:00 +2025-07-18,Devin,all,26,,20260408T230245Z,2026-04-08T23:39:50.765321+00:00 +2025-07-18,Gemini CLI,all,0,,20260408T230245Z,2026-04-08T23:39:50.765321+00:00 +2025-07-18,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-08T23:39:50.765321+00:00 +2025-07-18,Gru,all,0,,20260408T230245Z,2026-04-08T23:39:50.765321+00:00 +2025-07-18,Jules (Google),all,1376,,20260408T230245Z,2026-04-08T23:39:50.765321+00:00 +2025-07-18,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-08T23:39:50.765321+00:00 +2025-07-18,Kilo Code,all,2,,20260408T230245Z,2026-04-08T23:39:50.765321+00:00 +2025-07-18,Lovable,all,0,,20260408T230245Z,2026-04-08T23:39:50.765321+00:00 +2025-07-18,OpenAI Codex,all,0,,20260408T230245Z,2026-04-08T23:39:50.765321+00:00 +2025-07-18,OpenCode,all,0,,20260408T230245Z,2026-04-08T23:39:50.765321+00:00 +2025-07-18,OpenHands,all,125,,20260408T230245Z,2026-04-08T23:39:50.765321+00:00 +2025-07-18,Qwen Coder,all,0,,20260408T230245Z,2026-04-08T23:39:50.765321+00:00 +2025-07-18,Roo Code,all,0,,20260408T230245Z,2026-04-08T23:39:50.765321+00:00 +2025-07-18,Sketch,all,0,,20260408T230245Z,2026-04-08T23:39:50.765321+00:00 +2025-07-18,Sourcery AI,all,0,,20260408T230245Z,2026-04-08T23:39:50.765321+00:00 +2025-07-18,Sweep AI,all,0,,20260408T230245Z,2026-04-08T23:39:50.765321+00:00 +2025-07-18,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-08T23:39:50.765321+00:00 +2025-07-19,Aider,all,36,,20260408T230245Z,2026-04-08T23:42:01.325046+00:00 +2025-07-19,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-08T23:42:01.325046+00:00 +2025-07-19,ChatGPT,all,7,,20260408T230245Z,2026-04-08T23:42:01.325046+00:00 +2025-07-19,Claude Code,all,102,,20260408T230245Z,2026-04-08T23:42:01.325046+00:00 +2025-07-19,Cline,all,507,,20260408T230245Z,2026-04-08T23:42:01.325046+00:00 +2025-07-19,Codegen,all,59,,20260408T230245Z,2026-04-08T23:42:01.325046+00:00 +2025-07-19,Coderabbit,all,419,,20260408T230245Z,2026-04-08T23:42:01.325046+00:00 +2025-07-19,Copilot,all,0,,20260408T230245Z,2026-04-08T23:42:01.325046+00:00 +2025-07-19,Copilot SWE Agent,all,1690,,20260408T230245Z,2026-04-08T23:42:01.325046+00:00 +2025-07-19,Crush,all,0,,20260408T230245Z,2026-04-08T23:42:01.325046+00:00 +2025-07-19,Cursor,all,1503,,20260408T230245Z,2026-04-08T23:42:01.325046+00:00 +2025-07-19,DeepSource,all,2,,20260408T230245Z,2026-04-08T23:42:01.325046+00:00 +2025-07-19,Devin,all,13,,20260408T230245Z,2026-04-08T23:42:01.325046+00:00 +2025-07-19,Gemini CLI,all,0,,20260408T230245Z,2026-04-08T23:42:01.325046+00:00 +2025-07-19,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-08T23:42:01.325046+00:00 +2025-07-19,Gru,all,0,,20260408T230245Z,2026-04-08T23:42:01.325046+00:00 +2025-07-19,Jules (Google),all,1087,,20260408T230245Z,2026-04-08T23:42:01.325046+00:00 +2025-07-19,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-08T23:42:01.325046+00:00 +2025-07-19,Kilo Code,all,0,,20260408T230245Z,2026-04-08T23:42:01.325046+00:00 +2025-07-19,Lovable,all,0,,20260408T230245Z,2026-04-08T23:42:01.325046+00:00 +2025-07-19,OpenAI Codex,all,0,,20260408T230245Z,2026-04-08T23:42:01.325046+00:00 +2025-07-19,OpenCode,all,0,,20260408T230245Z,2026-04-08T23:42:01.325046+00:00 +2025-07-19,OpenHands,all,56,,20260408T230245Z,2026-04-08T23:42:01.325046+00:00 +2025-07-19,Qwen Coder,all,0,,20260408T230245Z,2026-04-08T23:42:01.325046+00:00 +2025-07-19,Roo Code,all,0,,20260408T230245Z,2026-04-08T23:42:01.325046+00:00 +2025-07-19,Sketch,all,0,,20260408T230245Z,2026-04-08T23:42:01.325046+00:00 +2025-07-19,Sourcery AI,all,0,,20260408T230245Z,2026-04-08T23:42:01.325046+00:00 +2025-07-19,Sweep AI,all,0,,20260408T230245Z,2026-04-08T23:42:01.325046+00:00 +2025-07-19,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-08T23:42:01.325046+00:00 +2025-07-20,Aider,all,52,,20260408T230245Z,2026-04-08T23:44:11.254629+00:00 +2025-07-20,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-08T23:44:11.254629+00:00 +2025-07-20,ChatGPT,all,0,,20260408T230245Z,2026-04-08T23:44:11.254629+00:00 +2025-07-20,Claude Code,all,42,,20260408T230245Z,2026-04-08T23:44:11.254629+00:00 +2025-07-20,Cline,all,499,,20260408T230245Z,2026-04-08T23:44:11.254629+00:00 +2025-07-20,Codegen,all,25,,20260408T230245Z,2026-04-08T23:44:11.254629+00:00 +2025-07-20,Coderabbit,all,57,,20260408T230245Z,2026-04-08T23:44:11.254629+00:00 +2025-07-20,Copilot,all,5,,20260408T230245Z,2026-04-08T23:44:11.254629+00:00 +2025-07-20,Copilot SWE Agent,all,1894,,20260408T230245Z,2026-04-08T23:44:11.254629+00:00 +2025-07-20,Crush,all,0,,20260408T230245Z,2026-04-08T23:44:11.254629+00:00 +2025-07-20,Cursor,all,1620,,20260408T230245Z,2026-04-08T23:44:11.254629+00:00 +2025-07-20,DeepSource,all,10,,20260408T230245Z,2026-04-08T23:44:11.254629+00:00 +2025-07-20,Devin,all,52,,20260408T230245Z,2026-04-08T23:44:11.254629+00:00 +2025-07-20,Gemini CLI,all,0,,20260408T230245Z,2026-04-08T23:44:11.254629+00:00 +2025-07-20,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-08T23:44:11.254629+00:00 +2025-07-20,Gru,all,0,,20260408T230245Z,2026-04-08T23:44:11.254629+00:00 +2025-07-20,Jules (Google),all,1305,,20260408T230245Z,2026-04-08T23:44:11.254629+00:00 +2025-07-20,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-08T23:44:11.254629+00:00 +2025-07-20,Kilo Code,all,0,,20260408T230245Z,2026-04-08T23:44:11.254629+00:00 +2025-07-20,Lovable,all,1,,20260408T230245Z,2026-04-08T23:44:11.254629+00:00 +2025-07-20,OpenAI Codex,all,0,,20260408T230245Z,2026-04-08T23:44:11.254629+00:00 +2025-07-20,OpenCode,all,0,,20260408T230245Z,2026-04-08T23:44:11.254629+00:00 +2025-07-20,OpenHands,all,65,,20260408T230245Z,2026-04-08T23:44:11.254629+00:00 +2025-07-20,Qwen Coder,all,0,,20260408T230245Z,2026-04-08T23:44:11.254629+00:00 +2025-07-20,Roo Code,all,0,,20260408T230245Z,2026-04-08T23:44:11.254629+00:00 +2025-07-20,Sketch,all,0,,20260408T230245Z,2026-04-08T23:44:11.254629+00:00 +2025-07-20,Sourcery AI,all,0,,20260408T230245Z,2026-04-08T23:44:11.254629+00:00 +2025-07-20,Sweep AI,all,0,,20260408T230245Z,2026-04-08T23:44:11.254629+00:00 +2025-07-20,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-08T23:44:11.254629+00:00 +2025-07-21,Aider,all,53,,20260408T230245Z,2026-04-08T23:46:22.427153+00:00 +2025-07-21,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-08T23:46:22.427153+00:00 +2025-07-21,ChatGPT,all,0,,20260408T230245Z,2026-04-08T23:46:22.427153+00:00 +2025-07-21,Claude Code,all,193,,20260408T230245Z,2026-04-08T23:46:22.427153+00:00 +2025-07-21,Cline,all,491,,20260408T230245Z,2026-04-08T23:46:22.427153+00:00 +2025-07-21,Codegen,all,31,,20260408T230245Z,2026-04-08T23:46:22.427153+00:00 +2025-07-21,Coderabbit,all,11,,20260408T230245Z,2026-04-08T23:46:22.427153+00:00 +2025-07-21,Copilot,all,0,,20260408T230245Z,2026-04-08T23:46:22.427153+00:00 +2025-07-21,Copilot SWE Agent,all,2285,,20260408T230245Z,2026-04-08T23:46:22.427153+00:00 +2025-07-21,Crush,all,0,,20260408T230245Z,2026-04-08T23:46:22.427153+00:00 +2025-07-21,Cursor,all,2046,,20260408T230245Z,2026-04-08T23:46:22.427153+00:00 +2025-07-21,DeepSource,all,6,,20260408T230245Z,2026-04-08T23:46:22.427153+00:00 +2025-07-21,Devin,all,44,,20260408T230245Z,2026-04-08T23:46:22.427153+00:00 +2025-07-21,Gemini CLI,all,0,,20260408T230245Z,2026-04-08T23:46:22.427153+00:00 +2025-07-21,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-08T23:46:22.427153+00:00 +2025-07-21,Gru,all,5,,20260408T230245Z,2026-04-08T23:46:22.427153+00:00 +2025-07-21,Jules (Google),all,1509,,20260408T230245Z,2026-04-08T23:46:22.427153+00:00 +2025-07-21,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-08T23:46:22.427153+00:00 +2025-07-21,Kilo Code,all,5,,20260408T230245Z,2026-04-08T23:46:22.427153+00:00 +2025-07-21,Lovable,all,2,,20260408T230245Z,2026-04-08T23:46:22.427153+00:00 +2025-07-21,OpenAI Codex,all,0,,20260408T230245Z,2026-04-08T23:46:22.427153+00:00 +2025-07-21,OpenCode,all,0,,20260408T230245Z,2026-04-08T23:46:22.427153+00:00 +2025-07-21,OpenHands,all,60,,20260408T230245Z,2026-04-08T23:46:22.427153+00:00 +2025-07-21,Qwen Coder,all,0,,20260408T230245Z,2026-04-08T23:46:22.427153+00:00 +2025-07-21,Roo Code,all,0,,20260408T230245Z,2026-04-08T23:46:22.427153+00:00 +2025-07-21,Sketch,all,0,,20260408T230245Z,2026-04-08T23:46:22.427153+00:00 +2025-07-21,Sourcery AI,all,0,,20260408T230245Z,2026-04-08T23:46:22.427153+00:00 +2025-07-21,Sweep AI,all,0,,20260408T230245Z,2026-04-08T23:46:22.427153+00:00 +2025-07-21,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-08T23:46:22.427153+00:00 +2025-07-22,Aider,all,41,,20260408T230245Z,2026-04-08T23:48:34.316295+00:00 +2025-07-22,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-08T23:48:34.316295+00:00 +2025-07-22,ChatGPT,all,0,,20260408T230245Z,2026-04-08T23:48:34.316295+00:00 +2025-07-22,Claude Code,all,163,,20260408T230245Z,2026-04-08T23:48:34.316295+00:00 +2025-07-22,Cline,all,743,,20260408T230245Z,2026-04-08T23:48:34.316295+00:00 +2025-07-22,Codegen,all,33,,20260408T230245Z,2026-04-08T23:48:34.316295+00:00 +2025-07-22,Coderabbit,all,8,,20260408T230245Z,2026-04-08T23:48:34.316295+00:00 +2025-07-22,Copilot,all,4,,20260408T230245Z,2026-04-08T23:48:34.316295+00:00 +2025-07-22,Copilot SWE Agent,all,1615,,20260408T230245Z,2026-04-08T23:48:34.316295+00:00 +2025-07-22,Crush,all,0,,20260408T230245Z,2026-04-08T23:48:34.316295+00:00 +2025-07-22,Cursor,all,1971,,20260408T230245Z,2026-04-08T23:48:34.316295+00:00 +2025-07-22,DeepSource,all,31,,20260408T230245Z,2026-04-08T23:48:34.316295+00:00 +2025-07-22,Devin,all,32,,20260408T230245Z,2026-04-08T23:48:34.316295+00:00 +2025-07-22,Gemini CLI,all,0,,20260408T230245Z,2026-04-08T23:48:34.316295+00:00 +2025-07-22,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-08T23:48:34.316295+00:00 +2025-07-22,Gru,all,0,,20260408T230245Z,2026-04-08T23:48:34.316295+00:00 +2025-07-22,Jules (Google),all,1974,,20260408T230245Z,2026-04-08T23:48:34.316295+00:00 +2025-07-22,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-08T23:48:34.316295+00:00 +2025-07-22,Kilo Code,all,0,,20260408T230245Z,2026-04-08T23:48:34.316295+00:00 +2025-07-22,Lovable,all,1,,20260408T230245Z,2026-04-08T23:48:34.316295+00:00 +2025-07-22,OpenAI Codex,all,0,,20260408T230245Z,2026-04-08T23:48:34.316295+00:00 +2025-07-22,OpenCode,all,0,,20260408T230245Z,2026-04-08T23:48:34.316295+00:00 +2025-07-22,OpenHands,all,77,,20260408T230245Z,2026-04-08T23:48:34.316295+00:00 +2025-07-22,Qwen Coder,all,0,,20260408T230245Z,2026-04-08T23:48:34.316295+00:00 +2025-07-22,Roo Code,all,0,,20260408T230245Z,2026-04-08T23:48:34.316295+00:00 +2025-07-22,Sketch,all,0,,20260408T230245Z,2026-04-08T23:48:34.316295+00:00 +2025-07-22,Sourcery AI,all,0,,20260408T230245Z,2026-04-08T23:48:34.316295+00:00 +2025-07-22,Sweep AI,all,0,,20260408T230245Z,2026-04-08T23:48:34.316295+00:00 +2025-07-22,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-08T23:48:34.316295+00:00 +2025-07-23,Aider,all,55,,20260408T230245Z,2026-04-08T23:50:46.276911+00:00 +2025-07-23,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-08T23:50:46.276911+00:00 +2025-07-23,ChatGPT,all,11,,20260408T230245Z,2026-04-08T23:50:46.276911+00:00 +2025-07-23,Claude Code,all,237,,20260408T230245Z,2026-04-08T23:50:46.276911+00:00 +2025-07-23,Cline,all,744,,20260408T230245Z,2026-04-08T23:50:46.276911+00:00 +2025-07-23,Codegen,all,90,,20260408T230245Z,2026-04-08T23:50:46.276911+00:00 +2025-07-23,Coderabbit,all,17,,20260408T230245Z,2026-04-08T23:50:46.276911+00:00 +2025-07-23,Copilot,all,0,,20260408T230245Z,2026-04-08T23:50:46.276911+00:00 +2025-07-23,Copilot SWE Agent,all,2141,,20260408T230245Z,2026-04-08T23:50:46.276911+00:00 +2025-07-23,Crush,all,0,,20260408T230245Z,2026-04-08T23:50:46.276911+00:00 +2025-07-23,Cursor,all,1697,,20260408T230245Z,2026-04-08T23:50:46.276911+00:00 +2025-07-23,DeepSource,all,62,,20260408T230245Z,2026-04-08T23:50:46.276911+00:00 +2025-07-23,Devin,all,142,,20260408T230245Z,2026-04-08T23:50:46.276911+00:00 +2025-07-23,Gemini CLI,all,0,,20260408T230245Z,2026-04-08T23:50:46.276911+00:00 +2025-07-23,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-08T23:50:46.276911+00:00 +2025-07-23,Gru,all,0,,20260408T230245Z,2026-04-08T23:50:46.276911+00:00 +2025-07-23,Jules (Google),all,1487,,20260408T230245Z,2026-04-08T23:50:46.276911+00:00 +2025-07-23,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-08T23:50:46.276911+00:00 +2025-07-23,Kilo Code,all,0,,20260408T230245Z,2026-04-08T23:50:46.276911+00:00 +2025-07-23,Lovable,all,5,,20260408T230245Z,2026-04-08T23:50:46.276911+00:00 +2025-07-23,OpenAI Codex,all,0,,20260408T230245Z,2026-04-08T23:50:46.276911+00:00 +2025-07-23,OpenCode,all,0,,20260408T230245Z,2026-04-08T23:50:46.276911+00:00 +2025-07-23,OpenHands,all,100,,20260408T230245Z,2026-04-08T23:50:46.276911+00:00 +2025-07-23,Qwen Coder,all,0,,20260408T230245Z,2026-04-08T23:50:46.276911+00:00 +2025-07-23,Roo Code,all,0,,20260408T230245Z,2026-04-08T23:50:46.276911+00:00 +2025-07-23,Sketch,all,0,,20260408T230245Z,2026-04-08T23:50:46.276911+00:00 +2025-07-23,Sourcery AI,all,0,,20260408T230245Z,2026-04-08T23:50:46.276911+00:00 +2025-07-23,Sweep AI,all,0,,20260408T230245Z,2026-04-08T23:50:46.276911+00:00 +2025-07-23,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-08T23:50:46.276911+00:00 +2025-07-24,Aider,all,43,,20260408T230245Z,2026-04-08T23:52:58.638209+00:00 +2025-07-24,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-08T23:52:58.638209+00:00 +2025-07-24,ChatGPT,all,11,,20260408T230245Z,2026-04-08T23:52:58.638209+00:00 +2025-07-24,Claude Code,all,317,,20260408T230245Z,2026-04-08T23:52:58.638209+00:00 +2025-07-24,Cline,all,531,,20260408T230245Z,2026-04-08T23:52:58.638209+00:00 +2025-07-24,Codegen,all,40,,20260408T230245Z,2026-04-08T23:52:58.638209+00:00 +2025-07-24,Coderabbit,all,23,,20260408T230245Z,2026-04-08T23:52:58.638209+00:00 +2025-07-24,Copilot,all,1,,20260408T230245Z,2026-04-08T23:52:58.638209+00:00 +2025-07-24,Copilot SWE Agent,all,2222,,20260408T230245Z,2026-04-08T23:52:58.638209+00:00 +2025-07-24,Crush,all,0,,20260408T230245Z,2026-04-08T23:52:58.638209+00:00 +2025-07-24,Cursor,all,2139,,20260408T230245Z,2026-04-08T23:52:58.638209+00:00 +2025-07-24,DeepSource,all,1,,20260408T230245Z,2026-04-08T23:52:58.638209+00:00 +2025-07-24,Devin,all,144,1,20260408T230245Z,2026-04-08T23:52:58.638209+00:00 +2025-07-24,Gemini CLI,all,0,,20260408T230245Z,2026-04-08T23:52:58.638209+00:00 +2025-07-24,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-08T23:52:58.638209+00:00 +2025-07-24,Gru,all,0,,20260408T230245Z,2026-04-08T23:52:58.638209+00:00 +2025-07-24,Jules (Google),all,1215,,20260408T230245Z,2026-04-08T23:52:58.638209+00:00 +2025-07-24,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-08T23:52:58.638209+00:00 +2025-07-24,Kilo Code,all,0,,20260408T230245Z,2026-04-08T23:52:58.638209+00:00 +2025-07-24,Lovable,all,0,,20260408T230245Z,2026-04-08T23:52:58.638209+00:00 +2025-07-24,OpenAI Codex,all,2,,20260408T230245Z,2026-04-08T23:52:58.638209+00:00 +2025-07-24,OpenCode,all,0,,20260408T230245Z,2026-04-08T23:52:58.638209+00:00 +2025-07-24,OpenHands,all,105,,20260408T230245Z,2026-04-08T23:52:58.638209+00:00 +2025-07-24,Qwen Coder,all,0,,20260408T230245Z,2026-04-08T23:52:58.638209+00:00 +2025-07-24,Roo Code,all,0,,20260408T230245Z,2026-04-08T23:52:58.638209+00:00 +2025-07-24,Sketch,all,0,,20260408T230245Z,2026-04-08T23:52:58.638209+00:00 +2025-07-24,Sourcery AI,all,0,,20260408T230245Z,2026-04-08T23:52:58.638209+00:00 +2025-07-24,Sweep AI,all,0,,20260408T230245Z,2026-04-08T23:52:58.638209+00:00 +2025-07-24,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-08T23:52:58.638209+00:00 +2025-07-25,Aider,all,83,,20260408T230245Z,2026-04-08T23:55:10.202712+00:00 +2025-07-25,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-08T23:55:10.202712+00:00 +2025-07-25,ChatGPT,all,2,,20260408T230245Z,2026-04-08T23:55:10.202712+00:00 +2025-07-25,Claude Code,all,217,,20260408T230245Z,2026-04-08T23:55:10.202712+00:00 +2025-07-25,Cline,all,2,,20260408T230245Z,2026-04-08T23:55:10.202712+00:00 +2025-07-25,Codegen,all,17,,20260408T230245Z,2026-04-08T23:55:10.202712+00:00 +2025-07-25,Coderabbit,all,17,,20260408T230245Z,2026-04-08T23:55:10.202712+00:00 +2025-07-25,Copilot,all,3,,20260408T230245Z,2026-04-08T23:55:10.202712+00:00 +2025-07-25,Copilot SWE Agent,all,2482,,20260408T230245Z,2026-04-08T23:55:10.202712+00:00 +2025-07-25,Crush,all,0,,20260408T230245Z,2026-04-08T23:55:10.202712+00:00 +2025-07-25,Cursor,all,2154,,20260408T230245Z,2026-04-08T23:55:10.202712+00:00 +2025-07-25,DeepSource,all,4,,20260408T230245Z,2026-04-08T23:55:10.202712+00:00 +2025-07-25,Devin,all,160,,20260408T230245Z,2026-04-08T23:55:10.202712+00:00 +2025-07-25,Gemini CLI,all,0,,20260408T230245Z,2026-04-08T23:55:10.202712+00:00 +2025-07-25,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-08T23:55:10.202712+00:00 +2025-07-25,Gru,all,0,,20260408T230245Z,2026-04-08T23:55:10.202712+00:00 +2025-07-25,Jules (Google),all,1231,,20260408T230245Z,2026-04-08T23:55:10.202712+00:00 +2025-07-25,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-08T23:55:10.202712+00:00 +2025-07-25,Kilo Code,all,0,,20260408T230245Z,2026-04-08T23:55:10.202712+00:00 +2025-07-25,Lovable,all,1,,20260408T230245Z,2026-04-08T23:55:10.202712+00:00 +2025-07-25,OpenAI Codex,all,15,,20260408T230245Z,2026-04-08T23:55:10.202712+00:00 +2025-07-25,OpenCode,all,0,,20260408T230245Z,2026-04-08T23:55:10.202712+00:00 +2025-07-25,OpenHands,all,143,,20260408T230245Z,2026-04-08T23:55:10.202712+00:00 +2025-07-25,Qwen Coder,all,0,,20260408T230245Z,2026-04-08T23:55:10.202712+00:00 +2025-07-25,Roo Code,all,0,,20260408T230245Z,2026-04-08T23:55:10.202712+00:00 +2025-07-25,Sketch,all,0,,20260408T230245Z,2026-04-08T23:55:10.202712+00:00 +2025-07-25,Sourcery AI,all,0,,20260408T230245Z,2026-04-08T23:55:10.202712+00:00 +2025-07-25,Sweep AI,all,0,,20260408T230245Z,2026-04-08T23:55:10.202712+00:00 +2025-07-25,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-08T23:55:10.202712+00:00 +2025-07-26,Aider,all,41,,20260408T230245Z,2026-04-08T23:57:21.580319+00:00 +2025-07-26,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-08T23:57:21.580319+00:00 +2025-07-26,ChatGPT,all,8,,20260408T230245Z,2026-04-08T23:57:21.580319+00:00 +2025-07-26,Claude Code,all,197,,20260408T230245Z,2026-04-08T23:57:21.580319+00:00 +2025-07-26,Cline,all,504,,20260408T230245Z,2026-04-08T23:57:21.580319+00:00 +2025-07-26,Codegen,all,22,,20260408T230245Z,2026-04-08T23:57:21.580319+00:00 +2025-07-26,Coderabbit,all,11,,20260408T230245Z,2026-04-08T23:57:21.580319+00:00 +2025-07-26,Copilot,all,1,,20260408T230245Z,2026-04-08T23:57:21.580319+00:00 +2025-07-26,Copilot SWE Agent,all,1883,,20260408T230245Z,2026-04-08T23:57:21.580319+00:00 +2025-07-26,Crush,all,0,,20260408T230245Z,2026-04-08T23:57:21.580319+00:00 +2025-07-26,Cursor,all,2125,,20260408T230245Z,2026-04-08T23:57:21.580319+00:00 +2025-07-26,DeepSource,all,1,,20260408T230245Z,2026-04-08T23:57:21.580319+00:00 +2025-07-26,Devin,all,138,,20260408T230245Z,2026-04-08T23:57:21.580319+00:00 +2025-07-26,Gemini CLI,all,0,,20260408T230245Z,2026-04-08T23:57:21.580319+00:00 +2025-07-26,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-08T23:57:21.580319+00:00 +2025-07-26,Gru,all,0,,20260408T230245Z,2026-04-08T23:57:21.580319+00:00 +2025-07-26,Jules (Google),all,614,,20260408T230245Z,2026-04-08T23:57:21.580319+00:00 +2025-07-26,Junie (JetBrains),all,2,,20260408T230245Z,2026-04-08T23:57:21.580319+00:00 +2025-07-26,Kilo Code,all,0,,20260408T230245Z,2026-04-08T23:57:21.580319+00:00 +2025-07-26,Lovable,all,0,,20260408T230245Z,2026-04-08T23:57:21.580319+00:00 +2025-07-26,OpenAI Codex,all,11,,20260408T230245Z,2026-04-08T23:57:21.580319+00:00 +2025-07-26,OpenCode,all,0,,20260408T230245Z,2026-04-08T23:57:21.580319+00:00 +2025-07-26,OpenHands,all,180,,20260408T230245Z,2026-04-08T23:57:21.580319+00:00 +2025-07-26,Qwen Coder,all,0,,20260408T230245Z,2026-04-08T23:57:21.580319+00:00 +2025-07-26,Roo Code,all,0,,20260408T230245Z,2026-04-08T23:57:21.580319+00:00 +2025-07-26,Sketch,all,0,,20260408T230245Z,2026-04-08T23:57:21.580319+00:00 +2025-07-26,Sourcery AI,all,0,,20260408T230245Z,2026-04-08T23:57:21.580319+00:00 +2025-07-26,Sweep AI,all,0,,20260408T230245Z,2026-04-08T23:57:21.580319+00:00 +2025-07-26,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-08T23:57:21.580319+00:00 +2025-07-27,Aider,all,14,,20260408T230245Z,2026-04-08T23:59:32.045288+00:00 +2025-07-27,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-08T23:59:32.045288+00:00 +2025-07-27,ChatGPT,all,6,,20260408T230245Z,2026-04-08T23:59:32.045288+00:00 +2025-07-27,Claude Code,all,106,,20260408T230245Z,2026-04-08T23:59:32.045288+00:00 +2025-07-27,Cline,all,249,,20260408T230245Z,2026-04-08T23:59:32.045288+00:00 +2025-07-27,Codegen,all,50,,20260408T230245Z,2026-04-08T23:59:32.045288+00:00 +2025-07-27,Coderabbit,all,14,,20260408T230245Z,2026-04-08T23:59:32.045288+00:00 +2025-07-27,Copilot,all,0,,20260408T230245Z,2026-04-08T23:59:32.045288+00:00 +2025-07-27,Copilot SWE Agent,all,2289,,20260408T230245Z,2026-04-08T23:59:32.045288+00:00 +2025-07-27,Crush,all,0,,20260408T230245Z,2026-04-08T23:59:32.045288+00:00 +2025-07-27,Cursor,all,2566,,20260408T230245Z,2026-04-08T23:59:32.045288+00:00 +2025-07-27,DeepSource,all,23,,20260408T230245Z,2026-04-08T23:59:32.045288+00:00 +2025-07-27,Devin,all,8,,20260408T230245Z,2026-04-08T23:59:32.045288+00:00 +2025-07-27,Gemini CLI,all,0,,20260408T230245Z,2026-04-08T23:59:32.045288+00:00 +2025-07-27,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-08T23:59:32.045288+00:00 +2025-07-27,Gru,all,0,,20260408T230245Z,2026-04-08T23:59:32.045288+00:00 +2025-07-27,Jules (Google),all,1046,,20260408T230245Z,2026-04-08T23:59:32.045288+00:00 +2025-07-27,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-08T23:59:32.045288+00:00 +2025-07-27,Kilo Code,all,0,,20260408T230245Z,2026-04-08T23:59:32.045288+00:00 +2025-07-27,Lovable,all,0,,20260408T230245Z,2026-04-08T23:59:32.045288+00:00 +2025-07-27,OpenAI Codex,all,1,,20260408T230245Z,2026-04-08T23:59:32.045288+00:00 +2025-07-27,OpenCode,all,5,,20260408T230245Z,2026-04-08T23:59:32.045288+00:00 +2025-07-27,OpenHands,all,75,,20260408T230245Z,2026-04-08T23:59:32.045288+00:00 +2025-07-27,Qwen Coder,all,0,,20260408T230245Z,2026-04-08T23:59:32.045288+00:00 +2025-07-27,Roo Code,all,0,,20260408T230245Z,2026-04-08T23:59:32.045288+00:00 +2025-07-27,Sketch,all,0,,20260408T230245Z,2026-04-08T23:59:32.045288+00:00 +2025-07-27,Sourcery AI,all,0,,20260408T230245Z,2026-04-08T23:59:32.045288+00:00 +2025-07-27,Sweep AI,all,0,,20260408T230245Z,2026-04-08T23:59:32.045288+00:00 +2025-07-27,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-08T23:59:32.045288+00:00 +2025-07-28,Aider,all,76,,20260408T230245Z,2026-04-09T00:01:45.012432+00:00 +2025-07-28,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T00:01:45.012432+00:00 +2025-07-28,ChatGPT,all,16,,20260408T230245Z,2026-04-09T00:01:45.012432+00:00 +2025-07-28,Claude Code,all,168,,20260408T230245Z,2026-04-09T00:01:45.012432+00:00 +2025-07-28,Cline,all,28,,20260408T230245Z,2026-04-09T00:01:45.012432+00:00 +2025-07-28,Codegen,all,47,,20260408T230245Z,2026-04-09T00:01:45.012432+00:00 +2025-07-28,Coderabbit,all,16,,20260408T230245Z,2026-04-09T00:01:45.012432+00:00 +2025-07-28,Copilot,all,0,,20260408T230245Z,2026-04-09T00:01:45.012432+00:00 +2025-07-28,Copilot SWE Agent,all,2422,,20260408T230245Z,2026-04-09T00:01:45.012432+00:00 +2025-07-28,Crush,all,0,,20260408T230245Z,2026-04-09T00:01:45.012432+00:00 +2025-07-28,Cursor,all,2360,,20260408T230245Z,2026-04-09T00:01:45.012432+00:00 +2025-07-28,DeepSource,all,2,,20260408T230245Z,2026-04-09T00:01:45.012432+00:00 +2025-07-28,Devin,all,51,,20260408T230245Z,2026-04-09T00:01:45.012432+00:00 +2025-07-28,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T00:01:45.012432+00:00 +2025-07-28,Gemini Code Assist,all,2,,20260408T230245Z,2026-04-09T00:01:45.012432+00:00 +2025-07-28,Gru,all,0,,20260408T230245Z,2026-04-09T00:01:45.012432+00:00 +2025-07-28,Jules (Google),all,1295,,20260408T230245Z,2026-04-09T00:01:45.012432+00:00 +2025-07-28,Junie (JetBrains),all,2,,20260408T230245Z,2026-04-09T00:01:45.012432+00:00 +2025-07-28,Kilo Code,all,0,,20260408T230245Z,2026-04-09T00:01:45.012432+00:00 +2025-07-28,Lovable,all,0,,20260408T230245Z,2026-04-09T00:01:45.012432+00:00 +2025-07-28,OpenAI Codex,all,0,,20260408T230245Z,2026-04-09T00:01:45.012432+00:00 +2025-07-28,OpenCode,all,6,,20260408T230245Z,2026-04-09T00:01:45.012432+00:00 +2025-07-28,OpenHands,all,154,,20260408T230245Z,2026-04-09T00:01:45.012432+00:00 +2025-07-28,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T00:01:45.012432+00:00 +2025-07-28,Roo Code,all,0,,20260408T230245Z,2026-04-09T00:01:45.012432+00:00 +2025-07-28,Sketch,all,0,,20260408T230245Z,2026-04-09T00:01:45.012432+00:00 +2025-07-28,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T00:01:45.012432+00:00 +2025-07-28,Sweep AI,all,0,,20260408T230245Z,2026-04-09T00:01:45.012432+00:00 +2025-07-28,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T00:01:45.012432+00:00 +2025-07-29,Aider,all,18,,20260408T230245Z,2026-04-09T00:03:57.013104+00:00 +2025-07-29,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T00:03:57.013104+00:00 +2025-07-29,ChatGPT,all,2,,20260408T230245Z,2026-04-09T00:03:57.013104+00:00 +2025-07-29,Claude Code,all,649,,20260408T230245Z,2026-04-09T00:03:57.013104+00:00 +2025-07-29,Cline,all,255,,20260408T230245Z,2026-04-09T00:03:57.013104+00:00 +2025-07-29,Codegen,all,5,,20260408T230245Z,2026-04-09T00:03:57.013104+00:00 +2025-07-29,Coderabbit,all,10,,20260408T230245Z,2026-04-09T00:03:57.013104+00:00 +2025-07-29,Copilot,all,1,,20260408T230245Z,2026-04-09T00:03:57.013104+00:00 +2025-07-29,Copilot SWE Agent,all,2352,,20260408T230245Z,2026-04-09T00:03:57.013104+00:00 +2025-07-29,Crush,all,0,,20260408T230245Z,2026-04-09T00:03:57.013104+00:00 +2025-07-29,Cursor,all,2186,,20260408T230245Z,2026-04-09T00:03:57.013104+00:00 +2025-07-29,DeepSource,all,12,,20260408T230245Z,2026-04-09T00:03:57.013104+00:00 +2025-07-29,Devin,all,63,,20260408T230245Z,2026-04-09T00:03:57.013104+00:00 +2025-07-29,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T00:03:57.013104+00:00 +2025-07-29,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T00:03:57.013104+00:00 +2025-07-29,Gru,all,0,,20260408T230245Z,2026-04-09T00:03:57.013104+00:00 +2025-07-29,Jules (Google),all,1209,,20260408T230245Z,2026-04-09T00:03:57.013104+00:00 +2025-07-29,Junie (JetBrains),all,2,,20260408T230245Z,2026-04-09T00:03:57.013104+00:00 +2025-07-29,Kilo Code,all,1,1,20260408T230245Z,2026-04-09T00:03:57.013104+00:00 +2025-07-29,Lovable,all,0,,20260408T230245Z,2026-04-09T00:03:57.013104+00:00 +2025-07-29,OpenAI Codex,all,0,,20260408T230245Z,2026-04-09T00:03:57.013104+00:00 +2025-07-29,OpenCode,all,0,,20260408T230245Z,2026-04-09T00:03:57.013104+00:00 +2025-07-29,OpenHands,all,106,,20260408T230245Z,2026-04-09T00:03:57.013104+00:00 +2025-07-29,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T00:03:57.013104+00:00 +2025-07-29,Roo Code,all,0,,20260408T230245Z,2026-04-09T00:03:57.013104+00:00 +2025-07-29,Sketch,all,0,,20260408T230245Z,2026-04-09T00:03:57.013104+00:00 +2025-07-29,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T00:03:57.013104+00:00 +2025-07-29,Sweep AI,all,0,,20260408T230245Z,2026-04-09T00:03:57.013104+00:00 +2025-07-29,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T00:03:57.013104+00:00 +2025-07-30,Aider,all,28,,20260408T230245Z,2026-04-09T00:06:10.485772+00:00 +2025-07-30,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T00:06:10.485772+00:00 +2025-07-30,ChatGPT,all,13,,20260408T230245Z,2026-04-09T00:06:10.485772+00:00 +2025-07-30,Claude Code,all,618,,20260408T230245Z,2026-04-09T00:06:10.485772+00:00 +2025-07-30,Cline,all,773,,20260408T230245Z,2026-04-09T00:06:10.485772+00:00 +2025-07-30,Codegen,all,20,,20260408T230245Z,2026-04-09T00:06:10.485772+00:00 +2025-07-30,Coderabbit,all,5,,20260408T230245Z,2026-04-09T00:06:10.485772+00:00 +2025-07-30,Copilot,all,0,,20260408T230245Z,2026-04-09T00:06:10.485772+00:00 +2025-07-30,Copilot SWE Agent,all,2679,,20260408T230245Z,2026-04-09T00:06:10.485772+00:00 +2025-07-30,Crush,all,0,,20260408T230245Z,2026-04-09T00:06:10.485772+00:00 +2025-07-30,Cursor,all,2232,,20260408T230245Z,2026-04-09T00:06:10.485772+00:00 +2025-07-30,DeepSource,all,12,,20260408T230245Z,2026-04-09T00:06:10.485772+00:00 +2025-07-30,Devin,all,108,,20260408T230245Z,2026-04-09T00:06:10.485772+00:00 +2025-07-30,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T00:06:10.485772+00:00 +2025-07-30,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T00:06:10.485772+00:00 +2025-07-30,Gru,all,0,,20260408T230245Z,2026-04-09T00:06:10.485772+00:00 +2025-07-30,Jules (Google),all,1141,,20260408T230245Z,2026-04-09T00:06:10.485772+00:00 +2025-07-30,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T00:06:10.485772+00:00 +2025-07-30,Kilo Code,all,2,,20260408T230245Z,2026-04-09T00:06:10.485772+00:00 +2025-07-30,Lovable,all,0,,20260408T230245Z,2026-04-09T00:06:10.485772+00:00 +2025-07-30,OpenAI Codex,all,2,,20260408T230245Z,2026-04-09T00:06:10.485772+00:00 +2025-07-30,OpenCode,all,0,,20260408T230245Z,2026-04-09T00:06:10.485772+00:00 +2025-07-30,OpenHands,all,78,,20260408T230245Z,2026-04-09T00:06:10.485772+00:00 +2025-07-30,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T00:06:10.485772+00:00 +2025-07-30,Roo Code,all,0,,20260408T230245Z,2026-04-09T00:06:10.485772+00:00 +2025-07-30,Sketch,all,0,,20260408T230245Z,2026-04-09T00:06:10.485772+00:00 +2025-07-30,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T00:06:10.485772+00:00 +2025-07-30,Sweep AI,all,0,,20260408T230245Z,2026-04-09T00:06:10.485772+00:00 +2025-07-30,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T00:06:10.485772+00:00 +2025-07-31,Aider,all,29,,20260408T230245Z,2026-04-09T00:08:22.375042+00:00 +2025-07-31,Amp (Sourcegraph),all,84,,20260408T230245Z,2026-04-09T00:08:22.375042+00:00 +2025-07-31,ChatGPT,all,10,,20260408T230245Z,2026-04-09T00:08:22.375042+00:00 +2025-07-31,Claude Code,all,358,,20260408T230245Z,2026-04-09T00:08:22.375042+00:00 +2025-07-31,Cline,all,1003,,20260408T230245Z,2026-04-09T00:08:22.375042+00:00 +2025-07-31,Codegen,all,30,,20260408T230245Z,2026-04-09T00:08:22.375042+00:00 +2025-07-31,Coderabbit,all,9,,20260408T230245Z,2026-04-09T00:08:22.375042+00:00 +2025-07-31,Copilot,all,40,,20260408T230245Z,2026-04-09T00:08:22.375042+00:00 +2025-07-31,Copilot SWE Agent,all,2833,,20260408T230245Z,2026-04-09T00:08:22.375042+00:00 +2025-07-31,Crush,all,0,,20260408T230245Z,2026-04-09T00:08:22.375042+00:00 +2025-07-31,Cursor,all,1848,,20260408T230245Z,2026-04-09T00:08:22.375042+00:00 +2025-07-31,DeepSource,all,7,,20260408T230245Z,2026-04-09T00:08:22.375042+00:00 +2025-07-31,Devin,all,236,,20260408T230245Z,2026-04-09T00:08:22.375042+00:00 +2025-07-31,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T00:08:22.375042+00:00 +2025-07-31,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T00:08:22.375042+00:00 +2025-07-31,Gru,all,0,,20260408T230245Z,2026-04-09T00:08:22.375042+00:00 +2025-07-31,Jules (Google),all,1267,,20260408T230245Z,2026-04-09T00:08:22.375042+00:00 +2025-07-31,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T00:08:22.375042+00:00 +2025-07-31,Kilo Code,all,2,,20260408T230245Z,2026-04-09T00:08:22.375042+00:00 +2025-07-31,Lovable,all,9,,20260408T230245Z,2026-04-09T00:08:22.375042+00:00 +2025-07-31,OpenAI Codex,all,18,,20260408T230245Z,2026-04-09T00:08:22.375042+00:00 +2025-07-31,OpenCode,all,0,,20260408T230245Z,2026-04-09T00:08:22.375042+00:00 +2025-07-31,OpenHands,all,114,,20260408T230245Z,2026-04-09T00:08:22.375042+00:00 +2025-07-31,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T00:08:22.375042+00:00 +2025-07-31,Roo Code,all,0,,20260408T230245Z,2026-04-09T00:08:22.375042+00:00 +2025-07-31,Sketch,all,2,,20260408T230245Z,2026-04-09T00:08:22.375042+00:00 +2025-07-31,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T00:08:22.375042+00:00 +2025-07-31,Sweep AI,all,0,,20260408T230245Z,2026-04-09T00:08:22.375042+00:00 +2025-07-31,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T00:08:22.375042+00:00 +2025-08-01,Aider,all,39,,20260408T230245Z,2026-04-09T00:10:34.340302+00:00 +2025-08-01,Amp (Sourcegraph),all,10,,20260408T230245Z,2026-04-09T00:10:34.340302+00:00 +2025-08-01,ChatGPT,all,4,,20260408T230245Z,2026-04-09T00:10:34.340302+00:00 +2025-08-01,Claude Code,all,325,,20260408T230245Z,2026-04-09T00:10:34.340302+00:00 +2025-08-01,Cline,all,994,,20260408T230245Z,2026-04-09T00:10:34.340302+00:00 +2025-08-01,Codegen,all,23,,20260408T230245Z,2026-04-09T00:10:34.340302+00:00 +2025-08-01,Coderabbit,all,8,,20260408T230245Z,2026-04-09T00:10:34.340302+00:00 +2025-08-01,Copilot,all,2,,20260408T230245Z,2026-04-09T00:10:34.340302+00:00 +2025-08-01,Copilot SWE Agent,all,2600,,20260408T230245Z,2026-04-09T00:10:34.340302+00:00 +2025-08-01,Crush,all,0,,20260408T230245Z,2026-04-09T00:10:34.340302+00:00 +2025-08-01,Cursor,all,1852,,20260408T230245Z,2026-04-09T00:10:34.340302+00:00 +2025-08-01,DeepSource,all,4,,20260408T230245Z,2026-04-09T00:10:34.340302+00:00 +2025-08-01,Devin,all,52,,20260408T230245Z,2026-04-09T00:10:34.340302+00:00 +2025-08-01,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T00:10:34.340302+00:00 +2025-08-01,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T00:10:34.340302+00:00 +2025-08-01,Gru,all,0,,20260408T230245Z,2026-04-09T00:10:34.340302+00:00 +2025-08-01,Jules (Google),all,1377,,20260408T230245Z,2026-04-09T00:10:34.340302+00:00 +2025-08-01,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T00:10:34.340302+00:00 +2025-08-01,Kilo Code,all,4,,20260408T230245Z,2026-04-09T00:10:34.340302+00:00 +2025-08-01,Lovable,all,1,,20260408T230245Z,2026-04-09T00:10:34.340302+00:00 +2025-08-01,OpenAI Codex,all,7,,20260408T230245Z,2026-04-09T00:10:34.340302+00:00 +2025-08-01,OpenCode,all,3,,20260408T230245Z,2026-04-09T00:10:34.340302+00:00 +2025-08-01,OpenHands,all,117,,20260408T230245Z,2026-04-09T00:10:34.340302+00:00 +2025-08-01,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T00:10:34.340302+00:00 +2025-08-01,Roo Code,all,0,,20260408T230245Z,2026-04-09T00:10:34.340302+00:00 +2025-08-01,Sketch,all,1,,20260408T230245Z,2026-04-09T00:10:34.340302+00:00 +2025-08-01,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T00:10:34.340302+00:00 +2025-08-01,Sweep AI,all,0,,20260408T230245Z,2026-04-09T00:10:34.340302+00:00 +2025-08-01,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T00:10:34.340302+00:00 +2025-08-02,Aider,all,24,,20260408T230245Z,2026-04-09T00:12:46.176459+00:00 +2025-08-02,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T00:12:46.176459+00:00 +2025-08-02,ChatGPT,all,0,,20260408T230245Z,2026-04-09T00:12:46.176459+00:00 +2025-08-02,Claude Code,all,82,,20260408T230245Z,2026-04-09T00:12:46.176459+00:00 +2025-08-02,Cline,all,739,,20260408T230245Z,2026-04-09T00:12:46.176459+00:00 +2025-08-02,Codegen,all,31,,20260408T230245Z,2026-04-09T00:12:46.176459+00:00 +2025-08-02,Coderabbit,all,6,,20260408T230245Z,2026-04-09T00:12:46.176459+00:00 +2025-08-02,Copilot,all,14,,20260408T230245Z,2026-04-09T00:12:46.176459+00:00 +2025-08-02,Copilot SWE Agent,all,1877,,20260408T230245Z,2026-04-09T00:12:46.176459+00:00 +2025-08-02,Crush,all,0,,20260408T230245Z,2026-04-09T00:12:46.176459+00:00 +2025-08-02,Cursor,all,1917,,20260408T230245Z,2026-04-09T00:12:46.176459+00:00 +2025-08-02,DeepSource,all,17,,20260408T230245Z,2026-04-09T00:12:46.176459+00:00 +2025-08-02,Devin,all,11,,20260408T230245Z,2026-04-09T00:12:46.176459+00:00 +2025-08-02,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T00:12:46.176459+00:00 +2025-08-02,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T00:12:46.176459+00:00 +2025-08-02,Gru,all,0,,20260408T230245Z,2026-04-09T00:12:46.176459+00:00 +2025-08-02,Jules (Google),all,1252,,20260408T230245Z,2026-04-09T00:12:46.176459+00:00 +2025-08-02,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T00:12:46.176459+00:00 +2025-08-02,Kilo Code,all,1,1,20260408T230245Z,2026-04-09T00:12:46.176459+00:00 +2025-08-02,Lovable,all,0,,20260408T230245Z,2026-04-09T00:12:46.176459+00:00 +2025-08-02,OpenAI Codex,all,3,,20260408T230245Z,2026-04-09T00:12:46.176459+00:00 +2025-08-02,OpenCode,all,0,,20260408T230245Z,2026-04-09T00:12:46.176459+00:00 +2025-08-02,OpenHands,all,128,,20260408T230245Z,2026-04-09T00:12:46.176459+00:00 +2025-08-02,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T00:12:46.176459+00:00 +2025-08-02,Roo Code,all,0,,20260408T230245Z,2026-04-09T00:12:46.176459+00:00 +2025-08-02,Sketch,all,0,,20260408T230245Z,2026-04-09T00:12:46.176459+00:00 +2025-08-02,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T00:12:46.176459+00:00 +2025-08-02,Sweep AI,all,0,,20260408T230245Z,2026-04-09T00:12:46.176459+00:00 +2025-08-02,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T00:12:46.176459+00:00 +2025-08-03,Aider,all,13,,20260408T230245Z,2026-04-09T00:14:58.593426+00:00 +2025-08-03,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T00:14:58.593426+00:00 +2025-08-03,ChatGPT,all,0,,20260408T230245Z,2026-04-09T00:14:58.593426+00:00 +2025-08-03,Claude Code,all,186,,20260408T230245Z,2026-04-09T00:14:58.593426+00:00 +2025-08-03,Cline,all,1018,,20260408T230245Z,2026-04-09T00:14:58.593426+00:00 +2025-08-03,Codegen,all,41,,20260408T230245Z,2026-04-09T00:14:58.593426+00:00 +2025-08-03,Coderabbit,all,10,,20260408T230245Z,2026-04-09T00:14:58.593426+00:00 +2025-08-03,Copilot,all,18,,20260408T230245Z,2026-04-09T00:14:58.593426+00:00 +2025-08-03,Copilot SWE Agent,all,2142,,20260408T230245Z,2026-04-09T00:14:58.593426+00:00 +2025-08-03,Crush,all,0,,20260408T230245Z,2026-04-09T00:14:58.593426+00:00 +2025-08-03,Cursor,all,2563,,20260408T230245Z,2026-04-09T00:14:58.593426+00:00 +2025-08-03,DeepSource,all,13,,20260408T230245Z,2026-04-09T00:14:58.593426+00:00 +2025-08-03,Devin,all,33,,20260408T230245Z,2026-04-09T00:14:58.593426+00:00 +2025-08-03,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T00:14:58.593426+00:00 +2025-08-03,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T00:14:58.593426+00:00 +2025-08-03,Gru,all,0,,20260408T230245Z,2026-04-09T00:14:58.593426+00:00 +2025-08-03,Jules (Google),all,1247,,20260408T230245Z,2026-04-09T00:14:58.593426+00:00 +2025-08-03,Junie (JetBrains),all,3,,20260408T230245Z,2026-04-09T00:14:58.593426+00:00 +2025-08-03,Kilo Code,all,0,,20260408T230245Z,2026-04-09T00:14:58.593426+00:00 +2025-08-03,Lovable,all,0,,20260408T230245Z,2026-04-09T00:14:58.593426+00:00 +2025-08-03,OpenAI Codex,all,12,,20260408T230245Z,2026-04-09T00:14:58.593426+00:00 +2025-08-03,OpenCode,all,0,,20260408T230245Z,2026-04-09T00:14:58.593426+00:00 +2025-08-03,OpenHands,all,89,,20260408T230245Z,2026-04-09T00:14:58.593426+00:00 +2025-08-03,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T00:14:58.593426+00:00 +2025-08-03,Roo Code,all,0,,20260408T230245Z,2026-04-09T00:14:58.593426+00:00 +2025-08-03,Sketch,all,0,,20260408T230245Z,2026-04-09T00:14:58.593426+00:00 +2025-08-03,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T00:14:58.593426+00:00 +2025-08-03,Sweep AI,all,0,,20260408T230245Z,2026-04-09T00:14:58.593426+00:00 +2025-08-03,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T00:14:58.593426+00:00 +2025-08-04,Aider,all,52,,20260408T230245Z,2026-04-09T00:17:11.061511+00:00 +2025-08-04,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T00:17:11.061511+00:00 +2025-08-04,ChatGPT,all,5,,20260408T230245Z,2026-04-09T00:17:11.061511+00:00 +2025-08-04,Claude Code,all,279,,20260408T230245Z,2026-04-09T00:17:11.061511+00:00 +2025-08-04,Cline,all,530,,20260408T230245Z,2026-04-09T00:17:11.061511+00:00 +2025-08-04,Codegen,all,29,,20260408T230245Z,2026-04-09T00:17:11.061511+00:00 +2025-08-04,Coderabbit,all,5,,20260408T230245Z,2026-04-09T00:17:11.061511+00:00 +2025-08-04,Copilot,all,1,,20260408T230245Z,2026-04-09T00:17:11.061511+00:00 +2025-08-04,Copilot SWE Agent,all,2879,,20260408T230245Z,2026-04-09T00:17:11.061511+00:00 +2025-08-04,Crush,all,0,,20260408T230245Z,2026-04-09T00:17:11.061511+00:00 +2025-08-04,Cursor,all,2072,,20260408T230245Z,2026-04-09T00:17:11.061511+00:00 +2025-08-04,DeepSource,all,12,,20260408T230245Z,2026-04-09T00:17:11.061511+00:00 +2025-08-04,Devin,all,47,,20260408T230245Z,2026-04-09T00:17:11.061511+00:00 +2025-08-04,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T00:17:11.061511+00:00 +2025-08-04,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T00:17:11.061511+00:00 +2025-08-04,Gru,all,0,,20260408T230245Z,2026-04-09T00:17:11.061511+00:00 +2025-08-04,Jules (Google),all,1162,,20260408T230245Z,2026-04-09T00:17:11.061511+00:00 +2025-08-04,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T00:17:11.061511+00:00 +2025-08-04,Kilo Code,all,2,,20260408T230245Z,2026-04-09T00:17:11.061511+00:00 +2025-08-04,Lovable,all,0,,20260408T230245Z,2026-04-09T00:17:11.061511+00:00 +2025-08-04,OpenAI Codex,all,0,,20260408T230245Z,2026-04-09T00:17:11.061511+00:00 +2025-08-04,OpenCode,all,0,,20260408T230245Z,2026-04-09T00:17:11.061511+00:00 +2025-08-04,OpenHands,all,81,,20260408T230245Z,2026-04-09T00:17:11.061511+00:00 +2025-08-04,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T00:17:11.061511+00:00 +2025-08-04,Roo Code,all,0,,20260408T230245Z,2026-04-09T00:17:11.061511+00:00 +2025-08-04,Sketch,all,0,,20260408T230245Z,2026-04-09T00:17:11.061511+00:00 +2025-08-04,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T00:17:11.061511+00:00 +2025-08-04,Sweep AI,all,0,,20260408T230245Z,2026-04-09T00:17:11.061511+00:00 +2025-08-04,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T00:17:11.061511+00:00 +2025-08-05,Aider,all,39,,20260408T230245Z,2026-04-09T00:19:23.370494+00:00 +2025-08-05,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T00:19:23.370494+00:00 +2025-08-05,ChatGPT,all,0,,20260408T230245Z,2026-04-09T00:19:23.370494+00:00 +2025-08-05,Claude Code,all,260,,20260408T230245Z,2026-04-09T00:19:23.370494+00:00 +2025-08-05,Cline,all,755,,20260408T230245Z,2026-04-09T00:19:23.370494+00:00 +2025-08-05,Codegen,all,38,,20260408T230245Z,2026-04-09T00:19:23.370494+00:00 +2025-08-05,Coderabbit,all,10,,20260408T230245Z,2026-04-09T00:19:23.370494+00:00 +2025-08-05,Copilot,all,1,,20260408T230245Z,2026-04-09T00:19:23.370494+00:00 +2025-08-05,Copilot SWE Agent,all,2782,,20260408T230245Z,2026-04-09T00:19:23.370494+00:00 +2025-08-05,Crush,all,0,,20260408T230245Z,2026-04-09T00:19:23.370494+00:00 +2025-08-05,Cursor,all,2101,,20260408T230245Z,2026-04-09T00:19:23.370494+00:00 +2025-08-05,DeepSource,all,4,,20260408T230245Z,2026-04-09T00:19:23.370494+00:00 +2025-08-05,Devin,all,67,,20260408T230245Z,2026-04-09T00:19:23.370494+00:00 +2025-08-05,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T00:19:23.370494+00:00 +2025-08-05,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T00:19:23.370494+00:00 +2025-08-05,Gru,all,0,,20260408T230245Z,2026-04-09T00:19:23.370494+00:00 +2025-08-05,Jules (Google),all,1269,,20260408T230245Z,2026-04-09T00:19:23.370494+00:00 +2025-08-05,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T00:19:23.370494+00:00 +2025-08-05,Kilo Code,all,0,,20260408T230245Z,2026-04-09T00:19:23.370494+00:00 +2025-08-05,Lovable,all,0,,20260408T230245Z,2026-04-09T00:19:23.370494+00:00 +2025-08-05,OpenAI Codex,all,1,,20260408T230245Z,2026-04-09T00:19:23.370494+00:00 +2025-08-05,OpenCode,all,0,,20260408T230245Z,2026-04-09T00:19:23.370494+00:00 +2025-08-05,OpenHands,all,64,,20260408T230245Z,2026-04-09T00:19:23.370494+00:00 +2025-08-05,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T00:19:23.370494+00:00 +2025-08-05,Roo Code,all,0,,20260408T230245Z,2026-04-09T00:19:23.370494+00:00 +2025-08-05,Sketch,all,0,,20260408T230245Z,2026-04-09T00:19:23.370494+00:00 +2025-08-05,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T00:19:23.370494+00:00 +2025-08-05,Sweep AI,all,0,,20260408T230245Z,2026-04-09T00:19:23.370494+00:00 +2025-08-05,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T00:19:23.370494+00:00 +2025-08-06,Aider,all,36,,20260408T230245Z,2026-04-09T00:21:36.222669+00:00 +2025-08-06,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T00:21:36.222669+00:00 +2025-08-06,ChatGPT,all,1,,20260408T230245Z,2026-04-09T00:21:36.222669+00:00 +2025-08-06,Claude Code,all,289,,20260408T230245Z,2026-04-09T00:21:36.222669+00:00 +2025-08-06,Cline,all,1717,,20260408T230245Z,2026-04-09T00:21:36.222669+00:00 +2025-08-06,Codegen,all,35,,20260408T230245Z,2026-04-09T00:21:36.222669+00:00 +2025-08-06,Coderabbit,all,7,,20260408T230245Z,2026-04-09T00:21:36.222669+00:00 +2025-08-06,Copilot,all,12,,20260408T230245Z,2026-04-09T00:21:36.222669+00:00 +2025-08-06,Copilot SWE Agent,all,2346,,20260408T230245Z,2026-04-09T00:21:36.222669+00:00 +2025-08-06,Crush,all,0,,20260408T230245Z,2026-04-09T00:21:36.222669+00:00 +2025-08-06,Cursor,all,2212,,20260408T230245Z,2026-04-09T00:21:36.222669+00:00 +2025-08-06,DeepSource,all,16,,20260408T230245Z,2026-04-09T00:21:36.222669+00:00 +2025-08-06,Devin,all,88,,20260408T230245Z,2026-04-09T00:21:36.222669+00:00 +2025-08-06,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T00:21:36.222669+00:00 +2025-08-06,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T00:21:36.222669+00:00 +2025-08-06,Gru,all,0,,20260408T230245Z,2026-04-09T00:21:36.222669+00:00 +2025-08-06,Jules (Google),all,1517,,20260408T230245Z,2026-04-09T00:21:36.222669+00:00 +2025-08-06,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T00:21:36.222669+00:00 +2025-08-06,Kilo Code,all,0,,20260408T230245Z,2026-04-09T00:21:36.222669+00:00 +2025-08-06,Lovable,all,0,,20260408T230245Z,2026-04-09T00:21:36.222669+00:00 +2025-08-06,OpenAI Codex,all,3,,20260408T230245Z,2026-04-09T00:21:36.222669+00:00 +2025-08-06,OpenCode,all,0,,20260408T230245Z,2026-04-09T00:21:36.222669+00:00 +2025-08-06,OpenHands,all,87,,20260408T230245Z,2026-04-09T00:21:36.222669+00:00 +2025-08-06,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T00:21:36.222669+00:00 +2025-08-06,Roo Code,all,0,,20260408T230245Z,2026-04-09T00:21:36.222669+00:00 +2025-08-06,Sketch,all,0,,20260408T230245Z,2026-04-09T00:21:36.222669+00:00 +2025-08-06,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T00:21:36.222669+00:00 +2025-08-06,Sweep AI,all,0,,20260408T230245Z,2026-04-09T00:21:36.222669+00:00 +2025-08-06,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T00:21:36.222669+00:00 +2025-08-07,Aider,all,63,,20260408T230245Z,2026-04-09T00:23:47.950986+00:00 +2025-08-07,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T00:23:47.950986+00:00 +2025-08-07,ChatGPT,all,0,,20260408T230245Z,2026-04-09T00:23:47.950986+00:00 +2025-08-07,Claude Code,all,234,,20260408T230245Z,2026-04-09T00:23:47.950986+00:00 +2025-08-07,Cline,all,495,,20260408T230245Z,2026-04-09T00:23:47.950986+00:00 +2025-08-07,Codegen,all,20,,20260408T230245Z,2026-04-09T00:23:47.950986+00:00 +2025-08-07,Coderabbit,all,8,,20260408T230245Z,2026-04-09T00:23:47.950986+00:00 +2025-08-07,Copilot,all,16,,20260408T230245Z,2026-04-09T00:23:47.950986+00:00 +2025-08-07,Copilot SWE Agent,all,2857,,20260408T230245Z,2026-04-09T00:23:47.950986+00:00 +2025-08-07,Crush,all,0,,20260408T230245Z,2026-04-09T00:23:47.950986+00:00 +2025-08-07,Cursor,all,2199,,20260408T230245Z,2026-04-09T00:23:47.950986+00:00 +2025-08-07,DeepSource,all,3,,20260408T230245Z,2026-04-09T00:23:47.950986+00:00 +2025-08-07,Devin,all,94,,20260408T230245Z,2026-04-09T00:23:47.950986+00:00 +2025-08-07,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T00:23:47.950986+00:00 +2025-08-07,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T00:23:47.950986+00:00 +2025-08-07,Gru,all,0,,20260408T230245Z,2026-04-09T00:23:47.950986+00:00 +2025-08-07,Jules (Google),all,2253,,20260408T230245Z,2026-04-09T00:23:47.950986+00:00 +2025-08-07,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T00:23:47.950986+00:00 +2025-08-07,Kilo Code,all,0,,20260408T230245Z,2026-04-09T00:23:47.950986+00:00 +2025-08-07,Lovable,all,0,,20260408T230245Z,2026-04-09T00:23:47.950986+00:00 +2025-08-07,OpenAI Codex,all,8,,20260408T230245Z,2026-04-09T00:23:47.950986+00:00 +2025-08-07,OpenCode,all,0,,20260408T230245Z,2026-04-09T00:23:47.950986+00:00 +2025-08-07,OpenHands,all,60,,20260408T230245Z,2026-04-09T00:23:47.950986+00:00 +2025-08-07,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T00:23:47.950986+00:00 +2025-08-07,Roo Code,all,0,,20260408T230245Z,2026-04-09T00:23:47.950986+00:00 +2025-08-07,Sketch,all,0,,20260408T230245Z,2026-04-09T00:23:47.950986+00:00 +2025-08-07,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T00:23:47.950986+00:00 +2025-08-07,Sweep AI,all,0,,20260408T230245Z,2026-04-09T00:23:47.950986+00:00 +2025-08-07,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T00:23:47.950986+00:00 +2025-08-08,Aider,all,58,,20260408T230245Z,2026-04-09T00:26:00.724686+00:00 +2025-08-08,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T00:26:00.724686+00:00 +2025-08-08,ChatGPT,all,21,,20260408T230245Z,2026-04-09T00:26:00.724686+00:00 +2025-08-08,Claude Code,all,238,,20260408T230245Z,2026-04-09T00:26:00.724686+00:00 +2025-08-08,Cline,all,14,,20260408T230245Z,2026-04-09T00:26:00.724686+00:00 +2025-08-08,Codegen,all,63,,20260408T230245Z,2026-04-09T00:26:00.724686+00:00 +2025-08-08,Coderabbit,all,13,,20260408T230245Z,2026-04-09T00:26:00.724686+00:00 +2025-08-08,Copilot,all,17,,20260408T230245Z,2026-04-09T00:26:00.724686+00:00 +2025-08-08,Copilot SWE Agent,all,2475,,20260408T230245Z,2026-04-09T00:26:00.724686+00:00 +2025-08-08,Crush,all,0,,20260408T230245Z,2026-04-09T00:26:00.724686+00:00 +2025-08-08,Cursor,all,2899,,20260408T230245Z,2026-04-09T00:26:00.724686+00:00 +2025-08-08,DeepSource,all,6,,20260408T230245Z,2026-04-09T00:26:00.724686+00:00 +2025-08-08,Devin,all,197,,20260408T230245Z,2026-04-09T00:26:00.724686+00:00 +2025-08-08,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T00:26:00.724686+00:00 +2025-08-08,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T00:26:00.724686+00:00 +2025-08-08,Gru,all,0,,20260408T230245Z,2026-04-09T00:26:00.724686+00:00 +2025-08-08,Jules (Google),all,2273,,20260408T230245Z,2026-04-09T00:26:00.724686+00:00 +2025-08-08,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T00:26:00.724686+00:00 +2025-08-08,Kilo Code,all,0,,20260408T230245Z,2026-04-09T00:26:00.724686+00:00 +2025-08-08,Lovable,all,0,,20260408T230245Z,2026-04-09T00:26:00.724686+00:00 +2025-08-08,OpenAI Codex,all,17,,20260408T230245Z,2026-04-09T00:26:00.724686+00:00 +2025-08-08,OpenCode,all,0,,20260408T230245Z,2026-04-09T00:26:00.724686+00:00 +2025-08-08,OpenHands,all,80,,20260408T230245Z,2026-04-09T00:26:00.724686+00:00 +2025-08-08,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T00:26:00.724686+00:00 +2025-08-08,Roo Code,all,0,,20260408T230245Z,2026-04-09T00:26:00.724686+00:00 +2025-08-08,Sketch,all,0,,20260408T230245Z,2026-04-09T00:26:00.724686+00:00 +2025-08-08,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T00:26:00.724686+00:00 +2025-08-08,Sweep AI,all,0,,20260408T230245Z,2026-04-09T00:26:00.724686+00:00 +2025-08-08,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T00:26:00.724686+00:00 +2025-08-09,Aider,all,49,,20260408T230245Z,2026-04-09T00:28:11.904789+00:00 +2025-08-09,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T00:28:11.904789+00:00 +2025-08-09,ChatGPT,all,0,,20260408T230245Z,2026-04-09T00:28:11.904789+00:00 +2025-08-09,Claude Code,all,319,,20260408T230245Z,2026-04-09T00:28:11.904789+00:00 +2025-08-09,Cline,all,490,,20260408T230245Z,2026-04-09T00:28:11.904789+00:00 +2025-08-09,Codegen,all,49,,20260408T230245Z,2026-04-09T00:28:11.904789+00:00 +2025-08-09,Coderabbit,all,5,,20260408T230245Z,2026-04-09T00:28:11.904789+00:00 +2025-08-09,Copilot,all,36,,20260408T230245Z,2026-04-09T00:28:11.904789+00:00 +2025-08-09,Copilot SWE Agent,all,2781,,20260408T230245Z,2026-04-09T00:28:11.904789+00:00 +2025-08-09,Crush,all,0,,20260408T230245Z,2026-04-09T00:28:11.904789+00:00 +2025-08-09,Cursor,all,2828,,20260408T230245Z,2026-04-09T00:28:11.904789+00:00 +2025-08-09,DeepSource,all,9,,20260408T230245Z,2026-04-09T00:28:11.904789+00:00 +2025-08-09,Devin,all,46,,20260408T230245Z,2026-04-09T00:28:11.904789+00:00 +2025-08-09,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T00:28:11.904789+00:00 +2025-08-09,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T00:28:11.904789+00:00 +2025-08-09,Gru,all,0,,20260408T230245Z,2026-04-09T00:28:11.904789+00:00 +2025-08-09,Jules (Google),all,1870,,20260408T230245Z,2026-04-09T00:28:11.904789+00:00 +2025-08-09,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T00:28:11.904789+00:00 +2025-08-09,Kilo Code,all,0,1,20260408T230245Z,2026-04-09T00:28:11.904789+00:00 +2025-08-09,Lovable,all,0,,20260408T230245Z,2026-04-09T00:28:11.904789+00:00 +2025-08-09,OpenAI Codex,all,19,,20260408T230245Z,2026-04-09T00:28:11.904789+00:00 +2025-08-09,OpenCode,all,12,,20260408T230245Z,2026-04-09T00:28:11.904789+00:00 +2025-08-09,OpenHands,all,38,,20260408T230245Z,2026-04-09T00:28:11.904789+00:00 +2025-08-09,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T00:28:11.904789+00:00 +2025-08-09,Roo Code,all,0,,20260408T230245Z,2026-04-09T00:28:11.904789+00:00 +2025-08-09,Sketch,all,0,,20260408T230245Z,2026-04-09T00:28:11.904789+00:00 +2025-08-09,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T00:28:11.904789+00:00 +2025-08-09,Sweep AI,all,0,,20260408T230245Z,2026-04-09T00:28:11.904789+00:00 +2025-08-09,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T00:28:11.904789+00:00 +2025-08-10,Aider,all,38,,20260408T230245Z,2026-04-09T00:30:24.153652+00:00 +2025-08-10,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T00:30:24.153652+00:00 +2025-08-10,ChatGPT,all,0,,20260408T230245Z,2026-04-09T00:30:24.153652+00:00 +2025-08-10,Claude Code,all,254,,20260408T230245Z,2026-04-09T00:30:24.153652+00:00 +2025-08-10,Cline,all,247,,20260408T230245Z,2026-04-09T00:30:24.153652+00:00 +2025-08-10,Codegen,all,74,,20260408T230245Z,2026-04-09T00:30:24.153652+00:00 +2025-08-10,Coderabbit,all,4,,20260408T230245Z,2026-04-09T00:30:24.153652+00:00 +2025-08-10,Copilot,all,7,,20260408T230245Z,2026-04-09T00:30:24.153652+00:00 +2025-08-10,Copilot SWE Agent,all,2825,,20260408T230245Z,2026-04-09T00:30:24.153652+00:00 +2025-08-10,Crush,all,0,,20260408T230245Z,2026-04-09T00:30:24.153652+00:00 +2025-08-10,Cursor,all,2656,,20260408T230245Z,2026-04-09T00:30:24.153652+00:00 +2025-08-10,DeepSource,all,20,,20260408T230245Z,2026-04-09T00:30:24.153652+00:00 +2025-08-10,Devin,all,19,,20260408T230245Z,2026-04-09T00:30:24.153652+00:00 +2025-08-10,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T00:30:24.153652+00:00 +2025-08-10,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T00:30:24.153652+00:00 +2025-08-10,Gru,all,0,,20260408T230245Z,2026-04-09T00:30:24.153652+00:00 +2025-08-10,Jules (Google),all,2060,,20260408T230245Z,2026-04-09T00:30:24.153652+00:00 +2025-08-10,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T00:30:24.153652+00:00 +2025-08-10,Kilo Code,all,0,,20260408T230245Z,2026-04-09T00:30:24.153652+00:00 +2025-08-10,Lovable,all,0,,20260408T230245Z,2026-04-09T00:30:24.153652+00:00 +2025-08-10,OpenAI Codex,all,16,,20260408T230245Z,2026-04-09T00:30:24.153652+00:00 +2025-08-10,OpenCode,all,4,,20260408T230245Z,2026-04-09T00:30:24.153652+00:00 +2025-08-10,OpenHands,all,55,,20260408T230245Z,2026-04-09T00:30:24.153652+00:00 +2025-08-10,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T00:30:24.153652+00:00 +2025-08-10,Roo Code,all,0,,20260408T230245Z,2026-04-09T00:30:24.153652+00:00 +2025-08-10,Sketch,all,0,,20260408T230245Z,2026-04-09T00:30:24.153652+00:00 +2025-08-10,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T00:30:24.153652+00:00 +2025-08-10,Sweep AI,all,0,,20260408T230245Z,2026-04-09T00:30:24.153652+00:00 +2025-08-10,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T00:30:24.153652+00:00 +2025-08-11,Aider,all,46,,20260408T230245Z,2026-04-09T00:32:35.610257+00:00 +2025-08-11,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T00:32:35.610257+00:00 +2025-08-11,ChatGPT,all,2,,20260408T230245Z,2026-04-09T00:32:35.610257+00:00 +2025-08-11,Claude Code,all,249,,20260408T230245Z,2026-04-09T00:32:35.610257+00:00 +2025-08-11,Cline,all,1220,,20260408T230245Z,2026-04-09T00:32:35.610257+00:00 +2025-08-11,Codegen,all,96,,20260408T230245Z,2026-04-09T00:32:35.610257+00:00 +2025-08-11,Coderabbit,all,11,,20260408T230245Z,2026-04-09T00:32:35.610257+00:00 +2025-08-11,Copilot,all,76,,20260408T230245Z,2026-04-09T00:32:35.610257+00:00 +2025-08-11,Copilot SWE Agent,all,2772,,20260408T230245Z,2026-04-09T00:32:35.610257+00:00 +2025-08-11,Crush,all,0,,20260408T230245Z,2026-04-09T00:32:35.610257+00:00 +2025-08-11,Cursor,all,3756,,20260408T230245Z,2026-04-09T00:32:35.610257+00:00 +2025-08-11,DeepSource,all,24,,20260408T230245Z,2026-04-09T00:32:35.610257+00:00 +2025-08-11,Devin,all,110,,20260408T230245Z,2026-04-09T00:32:35.610257+00:00 +2025-08-11,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T00:32:35.610257+00:00 +2025-08-11,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T00:32:35.610257+00:00 +2025-08-11,Gru,all,4,,20260408T230245Z,2026-04-09T00:32:35.610257+00:00 +2025-08-11,Jules (Google),all,2655,,20260408T230245Z,2026-04-09T00:32:35.610257+00:00 +2025-08-11,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T00:32:35.610257+00:00 +2025-08-11,Kilo Code,all,0,,20260408T230245Z,2026-04-09T00:32:35.610257+00:00 +2025-08-11,Lovable,all,0,,20260408T230245Z,2026-04-09T00:32:35.610257+00:00 +2025-08-11,OpenAI Codex,all,24,,20260408T230245Z,2026-04-09T00:32:35.610257+00:00 +2025-08-11,OpenCode,all,0,,20260408T230245Z,2026-04-09T00:32:35.610257+00:00 +2025-08-11,OpenHands,all,69,,20260408T230245Z,2026-04-09T00:32:35.610257+00:00 +2025-08-11,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T00:32:35.610257+00:00 +2025-08-11,Roo Code,all,0,,20260408T230245Z,2026-04-09T00:32:35.610257+00:00 +2025-08-11,Sketch,all,0,,20260408T230245Z,2026-04-09T00:32:35.610257+00:00 +2025-08-11,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T00:32:35.610257+00:00 +2025-08-11,Sweep AI,all,0,,20260408T230245Z,2026-04-09T00:32:35.610257+00:00 +2025-08-11,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T00:32:35.610257+00:00 +2025-08-12,Aider,all,16,,20260408T230245Z,2026-04-09T00:34:47.681462+00:00 +2025-08-12,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T00:34:47.681462+00:00 +2025-08-12,ChatGPT,all,4,,20260408T230245Z,2026-04-09T00:34:47.681462+00:00 +2025-08-12,Claude Code,all,209,,20260408T230245Z,2026-04-09T00:34:47.681462+00:00 +2025-08-12,Cline,all,266,,20260408T230245Z,2026-04-09T00:34:47.681462+00:00 +2025-08-12,Codegen,all,88,,20260408T230245Z,2026-04-09T00:34:47.681462+00:00 +2025-08-12,Coderabbit,all,5,,20260408T230245Z,2026-04-09T00:34:47.681462+00:00 +2025-08-12,Copilot,all,55,,20260408T230245Z,2026-04-09T00:34:47.681462+00:00 +2025-08-12,Copilot SWE Agent,all,2821,,20260408T230245Z,2026-04-09T00:34:47.681462+00:00 +2025-08-12,Crush,all,0,,20260408T230245Z,2026-04-09T00:34:47.681462+00:00 +2025-08-12,Cursor,all,3870,,20260408T230245Z,2026-04-09T00:34:47.681462+00:00 +2025-08-12,DeepSource,all,7,,20260408T230245Z,2026-04-09T00:34:47.681462+00:00 +2025-08-12,Devin,all,110,,20260408T230245Z,2026-04-09T00:34:47.681462+00:00 +2025-08-12,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T00:34:47.681462+00:00 +2025-08-12,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T00:34:47.681462+00:00 +2025-08-12,Gru,all,0,,20260408T230245Z,2026-04-09T00:34:47.681462+00:00 +2025-08-12,Jules (Google),all,2675,,20260408T230245Z,2026-04-09T00:34:47.681462+00:00 +2025-08-12,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T00:34:47.681462+00:00 +2025-08-12,Kilo Code,all,4,,20260408T230245Z,2026-04-09T00:34:47.681462+00:00 +2025-08-12,Lovable,all,0,,20260408T230245Z,2026-04-09T00:34:47.681462+00:00 +2025-08-12,OpenAI Codex,all,2,,20260408T230245Z,2026-04-09T00:34:47.681462+00:00 +2025-08-12,OpenCode,all,0,,20260408T230245Z,2026-04-09T00:34:47.681462+00:00 +2025-08-12,OpenHands,all,80,,20260408T230245Z,2026-04-09T00:34:47.681462+00:00 +2025-08-12,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T00:34:47.681462+00:00 +2025-08-12,Roo Code,all,0,,20260408T230245Z,2026-04-09T00:34:47.681462+00:00 +2025-08-12,Sketch,all,0,,20260408T230245Z,2026-04-09T00:34:47.681462+00:00 +2025-08-12,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T00:34:47.681462+00:00 +2025-08-12,Sweep AI,all,0,,20260408T230245Z,2026-04-09T00:34:47.681462+00:00 +2025-08-12,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T00:34:47.681462+00:00 +2025-08-13,Aider,all,38,,20260408T230245Z,2026-04-09T00:36:59.584369+00:00 +2025-08-13,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T00:36:59.584369+00:00 +2025-08-13,ChatGPT,all,0,,20260408T230245Z,2026-04-09T00:36:59.584369+00:00 +2025-08-13,Claude Code,all,409,,20260408T230245Z,2026-04-09T00:36:59.584369+00:00 +2025-08-13,Cline,all,1707,,20260408T230245Z,2026-04-09T00:36:59.584369+00:00 +2025-08-13,Codegen,all,84,,20260408T230245Z,2026-04-09T00:36:59.584369+00:00 +2025-08-13,Coderabbit,all,7,,20260408T230245Z,2026-04-09T00:36:59.584369+00:00 +2025-08-13,Copilot,all,71,,20260408T230245Z,2026-04-09T00:36:59.584369+00:00 +2025-08-13,Copilot SWE Agent,all,2804,,20260408T230245Z,2026-04-09T00:36:59.584369+00:00 +2025-08-13,Crush,all,0,,20260408T230245Z,2026-04-09T00:36:59.584369+00:00 +2025-08-13,Cursor,all,3518,,20260408T230245Z,2026-04-09T00:36:59.584369+00:00 +2025-08-13,DeepSource,all,19,,20260408T230245Z,2026-04-09T00:36:59.584369+00:00 +2025-08-13,Devin,all,83,,20260408T230245Z,2026-04-09T00:36:59.584369+00:00 +2025-08-13,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T00:36:59.584369+00:00 +2025-08-13,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T00:36:59.584369+00:00 +2025-08-13,Gru,all,4,,20260408T230245Z,2026-04-09T00:36:59.584369+00:00 +2025-08-13,Jules (Google),all,2655,,20260408T230245Z,2026-04-09T00:36:59.584369+00:00 +2025-08-13,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T00:36:59.584369+00:00 +2025-08-13,Kilo Code,all,0,,20260408T230245Z,2026-04-09T00:36:59.584369+00:00 +2025-08-13,Lovable,all,0,,20260408T230245Z,2026-04-09T00:36:59.584369+00:00 +2025-08-13,OpenAI Codex,all,2,,20260408T230245Z,2026-04-09T00:36:59.584369+00:00 +2025-08-13,OpenCode,all,0,,20260408T230245Z,2026-04-09T00:36:59.584369+00:00 +2025-08-13,OpenHands,all,115,,20260408T230245Z,2026-04-09T00:36:59.584369+00:00 +2025-08-13,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T00:36:59.584369+00:00 +2025-08-13,Roo Code,all,0,,20260408T230245Z,2026-04-09T00:36:59.584369+00:00 +2025-08-13,Sketch,all,0,,20260408T230245Z,2026-04-09T00:36:59.584369+00:00 +2025-08-13,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T00:36:59.584369+00:00 +2025-08-13,Sweep AI,all,0,,20260408T230245Z,2026-04-09T00:36:59.584369+00:00 +2025-08-13,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T00:36:59.584369+00:00 +2025-08-14,Aider,all,35,,20260408T230245Z,2026-04-09T00:39:12.021138+00:00 +2025-08-14,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T00:39:12.021138+00:00 +2025-08-14,ChatGPT,all,0,,20260408T230245Z,2026-04-09T00:39:12.021138+00:00 +2025-08-14,Claude Code,all,253,,20260408T230245Z,2026-04-09T00:39:12.021138+00:00 +2025-08-14,Cline,all,766,,20260408T230245Z,2026-04-09T00:39:12.021138+00:00 +2025-08-14,Codegen,all,82,,20260408T230245Z,2026-04-09T00:39:12.021138+00:00 +2025-08-14,Coderabbit,all,3,,20260408T230245Z,2026-04-09T00:39:12.021138+00:00 +2025-08-14,Copilot,all,16,,20260408T230245Z,2026-04-09T00:39:12.021138+00:00 +2025-08-14,Copilot SWE Agent,all,2842,,20260408T230245Z,2026-04-09T00:39:12.021138+00:00 +2025-08-14,Crush,all,0,,20260408T230245Z,2026-04-09T00:39:12.021138+00:00 +2025-08-14,Cursor,all,2586,,20260408T230245Z,2026-04-09T00:39:12.021138+00:00 +2025-08-14,DeepSource,all,7,,20260408T230245Z,2026-04-09T00:39:12.021138+00:00 +2025-08-14,Devin,all,77,,20260408T230245Z,2026-04-09T00:39:12.021138+00:00 +2025-08-14,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T00:39:12.021138+00:00 +2025-08-14,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T00:39:12.021138+00:00 +2025-08-14,Gru,all,0,,20260408T230245Z,2026-04-09T00:39:12.021138+00:00 +2025-08-14,Jules (Google),all,2950,,20260408T230245Z,2026-04-09T00:39:12.021138+00:00 +2025-08-14,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T00:39:12.021138+00:00 +2025-08-14,Kilo Code,all,0,,20260408T230245Z,2026-04-09T00:39:12.021138+00:00 +2025-08-14,Lovable,all,0,,20260408T230245Z,2026-04-09T00:39:12.021138+00:00 +2025-08-14,OpenAI Codex,all,13,,20260408T230245Z,2026-04-09T00:39:12.021138+00:00 +2025-08-14,OpenCode,all,0,,20260408T230245Z,2026-04-09T00:39:12.021138+00:00 +2025-08-14,OpenHands,all,89,,20260408T230245Z,2026-04-09T00:39:12.021138+00:00 +2025-08-14,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T00:39:12.021138+00:00 +2025-08-14,Roo Code,all,0,,20260408T230245Z,2026-04-09T00:39:12.021138+00:00 +2025-08-14,Sketch,all,0,,20260408T230245Z,2026-04-09T00:39:12.021138+00:00 +2025-08-14,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T00:39:12.021138+00:00 +2025-08-14,Sweep AI,all,0,,20260408T230245Z,2026-04-09T00:39:12.021138+00:00 +2025-08-14,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T00:39:12.021138+00:00 +2025-08-15,Aider,all,32,,20260408T230245Z,2026-04-09T00:41:25.410065+00:00 +2025-08-15,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T00:41:25.410065+00:00 +2025-08-15,ChatGPT,all,0,,20260408T230245Z,2026-04-09T00:41:25.410065+00:00 +2025-08-15,Claude Code,all,216,,20260408T230245Z,2026-04-09T00:41:25.410065+00:00 +2025-08-15,Cline,all,1012,,20260408T230245Z,2026-04-09T00:41:25.410065+00:00 +2025-08-15,Codegen,all,66,,20260408T230245Z,2026-04-09T00:41:25.410065+00:00 +2025-08-15,Coderabbit,all,7,,20260408T230245Z,2026-04-09T00:41:25.410065+00:00 +2025-08-15,Copilot,all,28,,20260408T230245Z,2026-04-09T00:41:25.410065+00:00 +2025-08-15,Copilot SWE Agent,all,2830,,20260408T230245Z,2026-04-09T00:41:25.410065+00:00 +2025-08-15,Crush,all,0,,20260408T230245Z,2026-04-09T00:41:25.410065+00:00 +2025-08-15,Cursor,all,2750,,20260408T230245Z,2026-04-09T00:41:25.410065+00:00 +2025-08-15,DeepSource,all,15,,20260408T230245Z,2026-04-09T00:41:25.410065+00:00 +2025-08-15,Devin,all,62,,20260408T230245Z,2026-04-09T00:41:25.410065+00:00 +2025-08-15,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T00:41:25.410065+00:00 +2025-08-15,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T00:41:25.410065+00:00 +2025-08-15,Gru,all,1,,20260408T230245Z,2026-04-09T00:41:25.410065+00:00 +2025-08-15,Jules (Google),all,2722,,20260408T230245Z,2026-04-09T00:41:25.410065+00:00 +2025-08-15,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T00:41:25.410065+00:00 +2025-08-15,Kilo Code,all,0,,20260408T230245Z,2026-04-09T00:41:25.410065+00:00 +2025-08-15,Lovable,all,0,,20260408T230245Z,2026-04-09T00:41:25.410065+00:00 +2025-08-15,OpenAI Codex,all,2,,20260408T230245Z,2026-04-09T00:41:25.410065+00:00 +2025-08-15,OpenCode,all,0,,20260408T230245Z,2026-04-09T00:41:25.410065+00:00 +2025-08-15,OpenHands,all,154,,20260408T230245Z,2026-04-09T00:41:25.410065+00:00 +2025-08-15,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T00:41:25.410065+00:00 +2025-08-15,Roo Code,all,0,,20260408T230245Z,2026-04-09T00:41:25.410065+00:00 +2025-08-15,Sketch,all,0,,20260408T230245Z,2026-04-09T00:41:25.410065+00:00 +2025-08-15,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T00:41:25.410065+00:00 +2025-08-15,Sweep AI,all,0,,20260408T230245Z,2026-04-09T00:41:25.410065+00:00 +2025-08-15,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T00:41:25.410065+00:00 +2025-08-16,Aider,all,5,,20260408T230245Z,2026-04-09T00:43:38.392553+00:00 +2025-08-16,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T00:43:38.392553+00:00 +2025-08-16,ChatGPT,all,0,,20260408T230245Z,2026-04-09T00:43:38.392553+00:00 +2025-08-16,Claude Code,all,205,,20260408T230245Z,2026-04-09T00:43:38.392553+00:00 +2025-08-16,Cline,all,542,,20260408T230245Z,2026-04-09T00:43:38.392553+00:00 +2025-08-16,Codegen,all,75,,20260408T230245Z,2026-04-09T00:43:38.392553+00:00 +2025-08-16,Coderabbit,all,1,,20260408T230245Z,2026-04-09T00:43:38.392553+00:00 +2025-08-16,Copilot,all,48,,20260408T230245Z,2026-04-09T00:43:38.392553+00:00 +2025-08-16,Copilot SWE Agent,all,2433,,20260408T230245Z,2026-04-09T00:43:38.392553+00:00 +2025-08-16,Crush,all,0,,20260408T230245Z,2026-04-09T00:43:38.392553+00:00 +2025-08-16,Cursor,all,2734,,20260408T230245Z,2026-04-09T00:43:38.392553+00:00 +2025-08-16,DeepSource,all,10,,20260408T230245Z,2026-04-09T00:43:38.392553+00:00 +2025-08-16,Devin,all,18,,20260408T230245Z,2026-04-09T00:43:38.392553+00:00 +2025-08-16,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T00:43:38.392553+00:00 +2025-08-16,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T00:43:38.392553+00:00 +2025-08-16,Gru,all,0,,20260408T230245Z,2026-04-09T00:43:38.392553+00:00 +2025-08-16,Jules (Google),all,2158,,20260408T230245Z,2026-04-09T00:43:38.392553+00:00 +2025-08-16,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T00:43:38.392553+00:00 +2025-08-16,Kilo Code,all,2,,20260408T230245Z,2026-04-09T00:43:38.392553+00:00 +2025-08-16,Lovable,all,0,,20260408T230245Z,2026-04-09T00:43:38.392553+00:00 +2025-08-16,OpenAI Codex,all,1,,20260408T230245Z,2026-04-09T00:43:38.392553+00:00 +2025-08-16,OpenCode,all,0,,20260408T230245Z,2026-04-09T00:43:38.392553+00:00 +2025-08-16,OpenHands,all,74,,20260408T230245Z,2026-04-09T00:43:38.392553+00:00 +2025-08-16,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T00:43:38.392553+00:00 +2025-08-16,Roo Code,all,0,,20260408T230245Z,2026-04-09T00:43:38.392553+00:00 +2025-08-16,Sketch,all,0,,20260408T230245Z,2026-04-09T00:43:38.392553+00:00 +2025-08-16,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T00:43:38.392553+00:00 +2025-08-16,Sweep AI,all,0,,20260408T230245Z,2026-04-09T00:43:38.392553+00:00 +2025-08-16,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T00:43:38.392553+00:00 +2025-08-17,Aider,all,31,,20260408T230245Z,2026-04-09T00:45:50.708797+00:00 +2025-08-17,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T00:45:50.708797+00:00 +2025-08-17,ChatGPT,all,0,,20260408T230245Z,2026-04-09T00:45:50.708797+00:00 +2025-08-17,Claude Code,all,210,,20260408T230245Z,2026-04-09T00:45:50.708797+00:00 +2025-08-17,Cline,all,1279,,20260408T230245Z,2026-04-09T00:45:50.708797+00:00 +2025-08-17,Codegen,all,30,,20260408T230245Z,2026-04-09T00:45:50.708797+00:00 +2025-08-17,Coderabbit,all,7,,20260408T230245Z,2026-04-09T00:45:50.708797+00:00 +2025-08-17,Copilot,all,54,,20260408T230245Z,2026-04-09T00:45:50.708797+00:00 +2025-08-17,Copilot SWE Agent,all,2479,,20260408T230245Z,2026-04-09T00:45:50.708797+00:00 +2025-08-17,Crush,all,0,,20260408T230245Z,2026-04-09T00:45:50.708797+00:00 +2025-08-17,Cursor,all,3217,,20260408T230245Z,2026-04-09T00:45:50.708797+00:00 +2025-08-17,DeepSource,all,15,,20260408T230245Z,2026-04-09T00:45:50.708797+00:00 +2025-08-17,Devin,all,8,,20260408T230245Z,2026-04-09T00:45:50.708797+00:00 +2025-08-17,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T00:45:50.708797+00:00 +2025-08-17,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T00:45:50.708797+00:00 +2025-08-17,Gru,all,0,,20260408T230245Z,2026-04-09T00:45:50.708797+00:00 +2025-08-17,Jules (Google),all,2435,,20260408T230245Z,2026-04-09T00:45:50.708797+00:00 +2025-08-17,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T00:45:50.708797+00:00 +2025-08-17,Kilo Code,all,0,,20260408T230245Z,2026-04-09T00:45:50.708797+00:00 +2025-08-17,Lovable,all,0,,20260408T230245Z,2026-04-09T00:45:50.708797+00:00 +2025-08-17,OpenAI Codex,all,4,,20260408T230245Z,2026-04-09T00:45:50.708797+00:00 +2025-08-17,OpenCode,all,0,,20260408T230245Z,2026-04-09T00:45:50.708797+00:00 +2025-08-17,OpenHands,all,99,,20260408T230245Z,2026-04-09T00:45:50.708797+00:00 +2025-08-17,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T00:45:50.708797+00:00 +2025-08-17,Roo Code,all,0,,20260408T230245Z,2026-04-09T00:45:50.708797+00:00 +2025-08-17,Sketch,all,0,,20260408T230245Z,2026-04-09T00:45:50.708797+00:00 +2025-08-17,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T00:45:50.708797+00:00 +2025-08-17,Sweep AI,all,0,,20260408T230245Z,2026-04-09T00:45:50.708797+00:00 +2025-08-17,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T00:45:50.708797+00:00 +2025-08-18,Aider,all,5,,20260408T230245Z,2026-04-09T00:48:03.400534+00:00 +2025-08-18,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T00:48:03.400534+00:00 +2025-08-18,ChatGPT,all,21,,20260408T230245Z,2026-04-09T00:48:03.400534+00:00 +2025-08-18,Claude Code,all,397,,20260408T230245Z,2026-04-09T00:48:03.400534+00:00 +2025-08-18,Cline,all,754,,20260408T230245Z,2026-04-09T00:48:03.400534+00:00 +2025-08-18,Codegen,all,60,,20260408T230245Z,2026-04-09T00:48:03.400534+00:00 +2025-08-18,Coderabbit,all,12,,20260408T230245Z,2026-04-09T00:48:03.400534+00:00 +2025-08-18,Copilot,all,54,,20260408T230245Z,2026-04-09T00:48:03.400534+00:00 +2025-08-18,Copilot SWE Agent,all,2519,,20260408T230245Z,2026-04-09T00:48:03.400534+00:00 +2025-08-18,Crush,all,0,,20260408T230245Z,2026-04-09T00:48:03.400534+00:00 +2025-08-18,Cursor,all,3028,,20260408T230245Z,2026-04-09T00:48:03.400534+00:00 +2025-08-18,DeepSource,all,13,,20260408T230245Z,2026-04-09T00:48:03.400534+00:00 +2025-08-18,Devin,all,20,1,20260408T230245Z,2026-04-09T00:48:03.400534+00:00 +2025-08-18,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T00:48:03.400534+00:00 +2025-08-18,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T00:48:03.400534+00:00 +2025-08-18,Gru,all,0,,20260408T230245Z,2026-04-09T00:48:03.400534+00:00 +2025-08-18,Jules (Google),all,2568,,20260408T230245Z,2026-04-09T00:48:03.400534+00:00 +2025-08-18,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T00:48:03.400534+00:00 +2025-08-18,Kilo Code,all,0,,20260408T230245Z,2026-04-09T00:48:03.400534+00:00 +2025-08-18,Lovable,all,0,,20260408T230245Z,2026-04-09T00:48:03.400534+00:00 +2025-08-18,OpenAI Codex,all,0,,20260408T230245Z,2026-04-09T00:48:03.400534+00:00 +2025-08-18,OpenCode,all,0,,20260408T230245Z,2026-04-09T00:48:03.400534+00:00 +2025-08-18,OpenHands,all,174,,20260408T230245Z,2026-04-09T00:48:03.400534+00:00 +2025-08-18,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T00:48:03.400534+00:00 +2025-08-18,Roo Code,all,0,,20260408T230245Z,2026-04-09T00:48:03.400534+00:00 +2025-08-18,Sketch,all,0,,20260408T230245Z,2026-04-09T00:48:03.400534+00:00 +2025-08-18,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T00:48:03.400534+00:00 +2025-08-18,Sweep AI,all,0,,20260408T230245Z,2026-04-09T00:48:03.400534+00:00 +2025-08-18,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T00:48:03.400534+00:00 +2025-08-19,Aider,all,37,,20260408T230245Z,2026-04-09T00:50:16.131747+00:00 +2025-08-19,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T00:50:16.131747+00:00 +2025-08-19,ChatGPT,all,12,,20260408T230245Z,2026-04-09T00:50:16.131747+00:00 +2025-08-19,Claude Code,all,556,,20260408T230245Z,2026-04-09T00:50:16.131747+00:00 +2025-08-19,Cline,all,1711,,20260408T230245Z,2026-04-09T00:50:16.131747+00:00 +2025-08-19,Codegen,all,37,,20260408T230245Z,2026-04-09T00:50:16.131747+00:00 +2025-08-19,Coderabbit,all,13,,20260408T230245Z,2026-04-09T00:50:16.131747+00:00 +2025-08-19,Copilot,all,71,,20260408T230245Z,2026-04-09T00:50:16.131747+00:00 +2025-08-19,Copilot SWE Agent,all,3487,,20260408T230245Z,2026-04-09T00:50:16.131747+00:00 +2025-08-19,Crush,all,0,,20260408T230245Z,2026-04-09T00:50:16.131747+00:00 +2025-08-19,Cursor,all,2990,1,20260408T230245Z,2026-04-09T00:50:16.131747+00:00 +2025-08-19,DeepSource,all,24,,20260408T230245Z,2026-04-09T00:50:16.131747+00:00 +2025-08-19,Devin,all,27,,20260408T230245Z,2026-04-09T00:50:16.131747+00:00 +2025-08-19,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T00:50:16.131747+00:00 +2025-08-19,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T00:50:16.131747+00:00 +2025-08-19,Gru,all,0,,20260408T230245Z,2026-04-09T00:50:16.131747+00:00 +2025-08-19,Jules (Google),all,2650,,20260408T230245Z,2026-04-09T00:50:16.131747+00:00 +2025-08-19,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T00:50:16.131747+00:00 +2025-08-19,Kilo Code,all,0,,20260408T230245Z,2026-04-09T00:50:16.131747+00:00 +2025-08-19,Lovable,all,0,,20260408T230245Z,2026-04-09T00:50:16.131747+00:00 +2025-08-19,OpenAI Codex,all,0,,20260408T230245Z,2026-04-09T00:50:16.131747+00:00 +2025-08-19,OpenCode,all,0,,20260408T230245Z,2026-04-09T00:50:16.131747+00:00 +2025-08-19,OpenHands,all,217,,20260408T230245Z,2026-04-09T00:50:16.131747+00:00 +2025-08-19,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T00:50:16.131747+00:00 +2025-08-19,Roo Code,all,0,,20260408T230245Z,2026-04-09T00:50:16.131747+00:00 +2025-08-19,Sketch,all,0,,20260408T230245Z,2026-04-09T00:50:16.131747+00:00 +2025-08-19,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T00:50:16.131747+00:00 +2025-08-19,Sweep AI,all,0,,20260408T230245Z,2026-04-09T00:50:16.131747+00:00 +2025-08-19,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T00:50:16.131747+00:00 +2025-08-20,Aider,all,42,,20260408T230245Z,2026-04-09T00:52:28.243111+00:00 +2025-08-20,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T00:52:28.243111+00:00 +2025-08-20,ChatGPT,all,5,,20260408T230245Z,2026-04-09T00:52:28.243111+00:00 +2025-08-20,Claude Code,all,235,,20260408T230245Z,2026-04-09T00:52:28.243111+00:00 +2025-08-20,Cline,all,527,,20260408T230245Z,2026-04-09T00:52:28.243111+00:00 +2025-08-20,Codegen,all,42,,20260408T230245Z,2026-04-09T00:52:28.243111+00:00 +2025-08-20,Coderabbit,all,6,,20260408T230245Z,2026-04-09T00:52:28.243111+00:00 +2025-08-20,Copilot,all,0,,20260408T230245Z,2026-04-09T00:52:28.243111+00:00 +2025-08-20,Copilot SWE Agent,all,4118,,20260408T230245Z,2026-04-09T00:52:28.243111+00:00 +2025-08-20,Crush,all,0,,20260408T230245Z,2026-04-09T00:52:28.243111+00:00 +2025-08-20,Cursor,all,2338,,20260408T230245Z,2026-04-09T00:52:28.243111+00:00 +2025-08-20,DeepSource,all,11,,20260408T230245Z,2026-04-09T00:52:28.243111+00:00 +2025-08-20,Devin,all,27,,20260408T230245Z,2026-04-09T00:52:28.243111+00:00 +2025-08-20,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T00:52:28.243111+00:00 +2025-08-20,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T00:52:28.243111+00:00 +2025-08-20,Gru,all,6,,20260408T230245Z,2026-04-09T00:52:28.243111+00:00 +2025-08-20,Jules (Google),all,2729,,20260408T230245Z,2026-04-09T00:52:28.243111+00:00 +2025-08-20,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T00:52:28.243111+00:00 +2025-08-20,Kilo Code,all,0,,20260408T230245Z,2026-04-09T00:52:28.243111+00:00 +2025-08-20,Lovable,all,0,,20260408T230245Z,2026-04-09T00:52:28.243111+00:00 +2025-08-20,OpenAI Codex,all,10,,20260408T230245Z,2026-04-09T00:52:28.243111+00:00 +2025-08-20,OpenCode,all,0,,20260408T230245Z,2026-04-09T00:52:28.243111+00:00 +2025-08-20,OpenHands,all,99,,20260408T230245Z,2026-04-09T00:52:28.243111+00:00 +2025-08-20,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T00:52:28.243111+00:00 +2025-08-20,Roo Code,all,0,,20260408T230245Z,2026-04-09T00:52:28.243111+00:00 +2025-08-20,Sketch,all,0,,20260408T230245Z,2026-04-09T00:52:28.243111+00:00 +2025-08-20,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T00:52:28.243111+00:00 +2025-08-20,Sweep AI,all,0,,20260408T230245Z,2026-04-09T00:52:28.243111+00:00 +2025-08-20,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T00:52:28.243111+00:00 +2025-08-21,Aider,all,45,,20260408T230245Z,2026-04-09T00:54:41.045961+00:00 +2025-08-21,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T00:54:41.045961+00:00 +2025-08-21,ChatGPT,all,1,,20260408T230245Z,2026-04-09T00:54:41.045961+00:00 +2025-08-21,Claude Code,all,376,,20260408T230245Z,2026-04-09T00:54:41.045961+00:00 +2025-08-21,Cline,all,770,,20260408T230245Z,2026-04-09T00:54:41.045961+00:00 +2025-08-21,Codegen,all,44,,20260408T230245Z,2026-04-09T00:54:41.045961+00:00 +2025-08-21,Coderabbit,all,10,,20260408T230245Z,2026-04-09T00:54:41.045961+00:00 +2025-08-21,Copilot,all,18,,20260408T230245Z,2026-04-09T00:54:41.045961+00:00 +2025-08-21,Copilot SWE Agent,all,3754,,20260408T230245Z,2026-04-09T00:54:41.045961+00:00 +2025-08-21,Crush,all,0,,20260408T230245Z,2026-04-09T00:54:41.045961+00:00 +2025-08-21,Cursor,all,2564,,20260408T230245Z,2026-04-09T00:54:41.045961+00:00 +2025-08-21,DeepSource,all,13,,20260408T230245Z,2026-04-09T00:54:41.045961+00:00 +2025-08-21,Devin,all,15,,20260408T230245Z,2026-04-09T00:54:41.045961+00:00 +2025-08-21,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T00:54:41.045961+00:00 +2025-08-21,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T00:54:41.045961+00:00 +2025-08-21,Gru,all,0,,20260408T230245Z,2026-04-09T00:54:41.045961+00:00 +2025-08-21,Jules (Google),all,2720,,20260408T230245Z,2026-04-09T00:54:41.045961+00:00 +2025-08-21,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T00:54:41.045961+00:00 +2025-08-21,Kilo Code,all,0,,20260408T230245Z,2026-04-09T00:54:41.045961+00:00 +2025-08-21,Lovable,all,0,,20260408T230245Z,2026-04-09T00:54:41.045961+00:00 +2025-08-21,OpenAI Codex,all,6,,20260408T230245Z,2026-04-09T00:54:41.045961+00:00 +2025-08-21,OpenCode,all,0,,20260408T230245Z,2026-04-09T00:54:41.045961+00:00 +2025-08-21,OpenHands,all,115,,20260408T230245Z,2026-04-09T00:54:41.045961+00:00 +2025-08-21,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T00:54:41.045961+00:00 +2025-08-21,Roo Code,all,0,,20260408T230245Z,2026-04-09T00:54:41.045961+00:00 +2025-08-21,Sketch,all,0,,20260408T230245Z,2026-04-09T00:54:41.045961+00:00 +2025-08-21,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T00:54:41.045961+00:00 +2025-08-21,Sweep AI,all,0,,20260408T230245Z,2026-04-09T00:54:41.045961+00:00 +2025-08-21,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T00:54:41.045961+00:00 +2025-08-22,Aider,all,38,,20260408T230245Z,2026-04-09T00:56:54.119241+00:00 +2025-08-22,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T00:56:54.119241+00:00 +2025-08-22,ChatGPT,all,12,,20260408T230245Z,2026-04-09T00:56:54.119241+00:00 +2025-08-22,Claude Code,all,301,,20260408T230245Z,2026-04-09T00:56:54.119241+00:00 +2025-08-22,Cline,all,1218,,20260408T230245Z,2026-04-09T00:56:54.119241+00:00 +2025-08-22,Codegen,all,39,,20260408T230245Z,2026-04-09T00:56:54.119241+00:00 +2025-08-22,Coderabbit,all,8,,20260408T230245Z,2026-04-09T00:56:54.119241+00:00 +2025-08-22,Copilot,all,13,,20260408T230245Z,2026-04-09T00:56:54.119241+00:00 +2025-08-22,Copilot SWE Agent,all,3657,,20260408T230245Z,2026-04-09T00:56:54.119241+00:00 +2025-08-22,Crush,all,0,,20260408T230245Z,2026-04-09T00:56:54.119241+00:00 +2025-08-22,Cursor,all,3030,,20260408T230245Z,2026-04-09T00:56:54.119241+00:00 +2025-08-22,DeepSource,all,8,,20260408T230245Z,2026-04-09T00:56:54.119241+00:00 +2025-08-22,Devin,all,51,,20260408T230245Z,2026-04-09T00:56:54.119241+00:00 +2025-08-22,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T00:56:54.119241+00:00 +2025-08-22,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T00:56:54.119241+00:00 +2025-08-22,Gru,all,0,,20260408T230245Z,2026-04-09T00:56:54.119241+00:00 +2025-08-22,Jules (Google),all,2883,,20260408T230245Z,2026-04-09T00:56:54.119241+00:00 +2025-08-22,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T00:56:54.119241+00:00 +2025-08-22,Kilo Code,all,0,,20260408T230245Z,2026-04-09T00:56:54.119241+00:00 +2025-08-22,Lovable,all,0,,20260408T230245Z,2026-04-09T00:56:54.119241+00:00 +2025-08-22,OpenAI Codex,all,2,,20260408T230245Z,2026-04-09T00:56:54.119241+00:00 +2025-08-22,OpenCode,all,0,,20260408T230245Z,2026-04-09T00:56:54.119241+00:00 +2025-08-22,OpenHands,all,103,,20260408T230245Z,2026-04-09T00:56:54.119241+00:00 +2025-08-22,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T00:56:54.119241+00:00 +2025-08-22,Roo Code,all,0,,20260408T230245Z,2026-04-09T00:56:54.119241+00:00 +2025-08-22,Sketch,all,0,,20260408T230245Z,2026-04-09T00:56:54.119241+00:00 +2025-08-22,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T00:56:54.119241+00:00 +2025-08-22,Sweep AI,all,0,,20260408T230245Z,2026-04-09T00:56:54.119241+00:00 +2025-08-22,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T00:56:54.119241+00:00 +2025-08-23,Aider,all,12,,20260408T230245Z,2026-04-09T00:59:07.327179+00:00 +2025-08-23,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T00:59:07.327179+00:00 +2025-08-23,ChatGPT,all,37,,20260408T230245Z,2026-04-09T00:59:07.327179+00:00 +2025-08-23,Claude Code,all,295,,20260408T230245Z,2026-04-09T00:59:07.327179+00:00 +2025-08-23,Cline,all,480,,20260408T230245Z,2026-04-09T00:59:07.327179+00:00 +2025-08-23,Codegen,all,26,,20260408T230245Z,2026-04-09T00:59:07.327179+00:00 +2025-08-23,Coderabbit,all,3,,20260408T230245Z,2026-04-09T00:59:07.327179+00:00 +2025-08-23,Copilot,all,15,,20260408T230245Z,2026-04-09T00:59:07.327179+00:00 +2025-08-23,Copilot SWE Agent,all,3286,,20260408T230245Z,2026-04-09T00:59:07.327179+00:00 +2025-08-23,Crush,all,0,,20260408T230245Z,2026-04-09T00:59:07.327179+00:00 +2025-08-23,Cursor,all,2851,,20260408T230245Z,2026-04-09T00:59:07.327179+00:00 +2025-08-23,DeepSource,all,19,,20260408T230245Z,2026-04-09T00:59:07.327179+00:00 +2025-08-23,Devin,all,5,,20260408T230245Z,2026-04-09T00:59:07.327179+00:00 +2025-08-23,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T00:59:07.327179+00:00 +2025-08-23,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T00:59:07.327179+00:00 +2025-08-23,Gru,all,0,,20260408T230245Z,2026-04-09T00:59:07.327179+00:00 +2025-08-23,Jules (Google),all,2566,1,20260408T230245Z,2026-04-09T00:59:07.327179+00:00 +2025-08-23,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T00:59:07.327179+00:00 +2025-08-23,Kilo Code,all,0,,20260408T230245Z,2026-04-09T00:59:07.327179+00:00 +2025-08-23,Lovable,all,0,,20260408T230245Z,2026-04-09T00:59:07.327179+00:00 +2025-08-23,OpenAI Codex,all,22,,20260408T230245Z,2026-04-09T00:59:07.327179+00:00 +2025-08-23,OpenCode,all,0,,20260408T230245Z,2026-04-09T00:59:07.327179+00:00 +2025-08-23,OpenHands,all,81,,20260408T230245Z,2026-04-09T00:59:07.327179+00:00 +2025-08-23,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T00:59:07.327179+00:00 +2025-08-23,Roo Code,all,0,,20260408T230245Z,2026-04-09T00:59:07.327179+00:00 +2025-08-23,Sketch,all,0,,20260408T230245Z,2026-04-09T00:59:07.327179+00:00 +2025-08-23,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T00:59:07.327179+00:00 +2025-08-23,Sweep AI,all,0,,20260408T230245Z,2026-04-09T00:59:07.327179+00:00 +2025-08-23,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T00:59:07.327179+00:00 +2025-08-24,Aider,all,24,,20260408T230245Z,2026-04-09T01:01:19.277438+00:00 +2025-08-24,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T01:01:19.277438+00:00 +2025-08-24,ChatGPT,all,4,,20260408T230245Z,2026-04-09T01:01:19.277438+00:00 +2025-08-24,Claude Code,all,382,,20260408T230245Z,2026-04-09T01:01:19.277438+00:00 +2025-08-24,Cline,all,276,,20260408T230245Z,2026-04-09T01:01:19.277438+00:00 +2025-08-24,Codegen,all,44,,20260408T230245Z,2026-04-09T01:01:19.277438+00:00 +2025-08-24,Coderabbit,all,8,,20260408T230245Z,2026-04-09T01:01:19.277438+00:00 +2025-08-24,Copilot,all,46,,20260408T230245Z,2026-04-09T01:01:19.277438+00:00 +2025-08-24,Copilot SWE Agent,all,3244,,20260408T230245Z,2026-04-09T01:01:19.277438+00:00 +2025-08-24,Crush,all,0,,20260408T230245Z,2026-04-09T01:01:19.277438+00:00 +2025-08-24,Cursor,all,2352,,20260408T230245Z,2026-04-09T01:01:19.277438+00:00 +2025-08-24,DeepSource,all,21,,20260408T230245Z,2026-04-09T01:01:19.277438+00:00 +2025-08-24,Devin,all,34,,20260408T230245Z,2026-04-09T01:01:19.277438+00:00 +2025-08-24,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T01:01:19.277438+00:00 +2025-08-24,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T01:01:19.277438+00:00 +2025-08-24,Gru,all,0,,20260408T230245Z,2026-04-09T01:01:19.277438+00:00 +2025-08-24,Jules (Google),all,2337,,20260408T230245Z,2026-04-09T01:01:19.277438+00:00 +2025-08-24,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T01:01:19.277438+00:00 +2025-08-24,Kilo Code,all,0,,20260408T230245Z,2026-04-09T01:01:19.277438+00:00 +2025-08-24,Lovable,all,0,,20260408T230245Z,2026-04-09T01:01:19.277438+00:00 +2025-08-24,OpenAI Codex,all,35,,20260408T230245Z,2026-04-09T01:01:19.277438+00:00 +2025-08-24,OpenCode,all,0,,20260408T230245Z,2026-04-09T01:01:19.277438+00:00 +2025-08-24,OpenHands,all,81,,20260408T230245Z,2026-04-09T01:01:19.277438+00:00 +2025-08-24,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T01:01:19.277438+00:00 +2025-08-24,Roo Code,all,0,,20260408T230245Z,2026-04-09T01:01:19.277438+00:00 +2025-08-24,Sketch,all,0,,20260408T230245Z,2026-04-09T01:01:19.277438+00:00 +2025-08-24,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T01:01:19.277438+00:00 +2025-08-24,Sweep AI,all,0,,20260408T230245Z,2026-04-09T01:01:19.277438+00:00 +2025-08-24,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T01:01:19.277438+00:00 +2025-08-25,Aider,all,35,,20260408T230245Z,2026-04-09T01:03:32.090851+00:00 +2025-08-25,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T01:03:32.090851+00:00 +2025-08-25,ChatGPT,all,41,,20260408T230245Z,2026-04-09T01:03:32.090851+00:00 +2025-08-25,Claude Code,all,341,,20260408T230245Z,2026-04-09T01:03:32.090851+00:00 +2025-08-25,Cline,all,350,,20260408T230245Z,2026-04-09T01:03:32.090851+00:00 +2025-08-25,Codegen,all,16,,20260408T230245Z,2026-04-09T01:03:32.090851+00:00 +2025-08-25,Coderabbit,all,8,,20260408T230245Z,2026-04-09T01:03:32.090851+00:00 +2025-08-25,Copilot,all,87,,20260408T230245Z,2026-04-09T01:03:32.090851+00:00 +2025-08-25,Copilot SWE Agent,all,3441,,20260408T230245Z,2026-04-09T01:03:32.090851+00:00 +2025-08-25,Crush,all,0,,20260408T230245Z,2026-04-09T01:03:32.090851+00:00 +2025-08-25,Cursor,all,1678,,20260408T230245Z,2026-04-09T01:03:32.090851+00:00 +2025-08-25,DeepSource,all,34,,20260408T230245Z,2026-04-09T01:03:32.090851+00:00 +2025-08-25,Devin,all,34,,20260408T230245Z,2026-04-09T01:03:32.090851+00:00 +2025-08-25,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T01:03:32.090851+00:00 +2025-08-25,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T01:03:32.090851+00:00 +2025-08-25,Gru,all,0,,20260408T230245Z,2026-04-09T01:03:32.090851+00:00 +2025-08-25,Jules (Google),all,3073,,20260408T230245Z,2026-04-09T01:03:32.090851+00:00 +2025-08-25,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T01:03:32.090851+00:00 +2025-08-25,Kilo Code,all,0,,20260408T230245Z,2026-04-09T01:03:32.090851+00:00 +2025-08-25,Lovable,all,0,,20260408T230245Z,2026-04-09T01:03:32.090851+00:00 +2025-08-25,OpenAI Codex,all,22,,20260408T230245Z,2026-04-09T01:03:32.090851+00:00 +2025-08-25,OpenCode,all,0,,20260408T230245Z,2026-04-09T01:03:32.090851+00:00 +2025-08-25,OpenHands,all,149,,20260408T230245Z,2026-04-09T01:03:32.090851+00:00 +2025-08-25,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T01:03:32.090851+00:00 +2025-08-25,Roo Code,all,0,,20260408T230245Z,2026-04-09T01:03:32.090851+00:00 +2025-08-25,Sketch,all,0,,20260408T230245Z,2026-04-09T01:03:32.090851+00:00 +2025-08-25,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T01:03:32.090851+00:00 +2025-08-25,Sweep AI,all,0,,20260408T230245Z,2026-04-09T01:03:32.090851+00:00 +2025-08-25,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T01:03:32.090851+00:00 +2025-08-26,Aider,all,97,,20260408T230245Z,2026-04-09T01:05:44.546056+00:00 +2025-08-26,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T01:05:44.546056+00:00 +2025-08-26,ChatGPT,all,5,,20260408T230245Z,2026-04-09T01:05:44.546056+00:00 +2025-08-26,Claude Code,all,214,,20260408T230245Z,2026-04-09T01:05:44.546056+00:00 +2025-08-26,Cline,all,552,,20260408T230245Z,2026-04-09T01:05:44.546056+00:00 +2025-08-26,Codegen,all,52,,20260408T230245Z,2026-04-09T01:05:44.546056+00:00 +2025-08-26,Coderabbit,all,4,,20260408T230245Z,2026-04-09T01:05:44.546056+00:00 +2025-08-26,Copilot,all,15,,20260408T230245Z,2026-04-09T01:05:44.546056+00:00 +2025-08-26,Copilot SWE Agent,all,3442,1,20260408T230245Z,2026-04-09T01:05:44.546056+00:00 +2025-08-26,Crush,all,1,,20260408T230245Z,2026-04-09T01:05:44.546056+00:00 +2025-08-26,Cursor,all,2526,,20260408T230245Z,2026-04-09T01:05:44.546056+00:00 +2025-08-26,DeepSource,all,24,,20260408T230245Z,2026-04-09T01:05:44.546056+00:00 +2025-08-26,Devin,all,6,,20260408T230245Z,2026-04-09T01:05:44.546056+00:00 +2025-08-26,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T01:05:44.546056+00:00 +2025-08-26,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T01:05:44.546056+00:00 +2025-08-26,Gru,all,0,,20260408T230245Z,2026-04-09T01:05:44.546056+00:00 +2025-08-26,Jules (Google),all,2798,,20260408T230245Z,2026-04-09T01:05:44.546056+00:00 +2025-08-26,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T01:05:44.546056+00:00 +2025-08-26,Kilo Code,all,0,,20260408T230245Z,2026-04-09T01:05:44.546056+00:00 +2025-08-26,Lovable,all,0,,20260408T230245Z,2026-04-09T01:05:44.546056+00:00 +2025-08-26,OpenAI Codex,all,0,,20260408T230245Z,2026-04-09T01:05:44.546056+00:00 +2025-08-26,OpenCode,all,0,,20260408T230245Z,2026-04-09T01:05:44.546056+00:00 +2025-08-26,OpenHands,all,72,,20260408T230245Z,2026-04-09T01:05:44.546056+00:00 +2025-08-26,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T01:05:44.546056+00:00 +2025-08-26,Roo Code,all,0,,20260408T230245Z,2026-04-09T01:05:44.546056+00:00 +2025-08-26,Sketch,all,0,,20260408T230245Z,2026-04-09T01:05:44.546056+00:00 +2025-08-26,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T01:05:44.546056+00:00 +2025-08-26,Sweep AI,all,0,,20260408T230245Z,2026-04-09T01:05:44.546056+00:00 +2025-08-26,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T01:05:44.546056+00:00 +2025-08-27,Aider,all,69,,20260408T230245Z,2026-04-09T01:07:56.698209+00:00 +2025-08-27,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T01:07:56.698209+00:00 +2025-08-27,ChatGPT,all,3,,20260408T230245Z,2026-04-09T01:07:56.698209+00:00 +2025-08-27,Claude Code,all,299,,20260408T230245Z,2026-04-09T01:07:56.698209+00:00 +2025-08-27,Cline,all,1184,,20260408T230245Z,2026-04-09T01:07:56.698209+00:00 +2025-08-27,Codegen,all,9,,20260408T230245Z,2026-04-09T01:07:56.698209+00:00 +2025-08-27,Coderabbit,all,9,,20260408T230245Z,2026-04-09T01:07:56.698209+00:00 +2025-08-27,Copilot,all,45,,20260408T230245Z,2026-04-09T01:07:56.698209+00:00 +2025-08-27,Copilot SWE Agent,all,3435,1,20260408T230245Z,2026-04-09T01:07:56.698209+00:00 +2025-08-27,Crush,all,0,,20260408T230245Z,2026-04-09T01:07:56.698209+00:00 +2025-08-27,Cursor,all,2907,,20260408T230245Z,2026-04-09T01:07:56.698209+00:00 +2025-08-27,DeepSource,all,26,,20260408T230245Z,2026-04-09T01:07:56.698209+00:00 +2025-08-27,Devin,all,20,1,20260408T230245Z,2026-04-09T01:07:56.698209+00:00 +2025-08-27,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T01:07:56.698209+00:00 +2025-08-27,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T01:07:56.698209+00:00 +2025-08-27,Gru,all,0,,20260408T230245Z,2026-04-09T01:07:56.698209+00:00 +2025-08-27,Jules (Google),all,2868,,20260408T230245Z,2026-04-09T01:07:56.698209+00:00 +2025-08-27,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T01:07:56.698209+00:00 +2025-08-27,Kilo Code,all,1,,20260408T230245Z,2026-04-09T01:07:56.698209+00:00 +2025-08-27,Lovable,all,0,,20260408T230245Z,2026-04-09T01:07:56.698209+00:00 +2025-08-27,OpenAI Codex,all,0,,20260408T230245Z,2026-04-09T01:07:56.698209+00:00 +2025-08-27,OpenCode,all,0,,20260408T230245Z,2026-04-09T01:07:56.698209+00:00 +2025-08-27,OpenHands,all,129,,20260408T230245Z,2026-04-09T01:07:56.698209+00:00 +2025-08-27,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T01:07:56.698209+00:00 +2025-08-27,Roo Code,all,0,,20260408T230245Z,2026-04-09T01:07:56.698209+00:00 +2025-08-27,Sketch,all,0,,20260408T230245Z,2026-04-09T01:07:56.698209+00:00 +2025-08-27,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T01:07:56.698209+00:00 +2025-08-27,Sweep AI,all,0,,20260408T230245Z,2026-04-09T01:07:56.698209+00:00 +2025-08-27,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T01:07:56.698209+00:00 +2025-08-28,Aider,all,76,,20260408T230245Z,2026-04-09T01:11:10.338023+00:00 +2025-08-28,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T01:11:10.338023+00:00 +2025-08-28,ChatGPT,all,1,,20260408T230245Z,2026-04-09T01:11:10.338023+00:00 +2025-08-28,Claude Code,all,262,,20260408T230245Z,2026-04-09T01:11:10.338023+00:00 +2025-08-28,Cline,all,801,,20260408T230245Z,2026-04-09T01:11:10.338023+00:00 +2025-08-28,Codegen,all,17,,20260408T230245Z,2026-04-09T01:11:10.338023+00:00 +2025-08-28,Coderabbit,all,13,,20260408T230245Z,2026-04-09T01:11:10.338023+00:00 +2025-08-28,Copilot,all,44,,20260408T230245Z,2026-04-09T01:11:10.338023+00:00 +2025-08-28,Copilot SWE Agent,all,3801,,20260408T230245Z,2026-04-09T01:11:10.338023+00:00 +2025-08-28,Crush,all,0,,20260408T230245Z,2026-04-09T01:11:10.338023+00:00 +2025-08-28,Cursor,all,3087,,20260408T230245Z,2026-04-09T01:11:10.338023+00:00 +2025-08-28,DeepSource,all,21,,20260408T230245Z,2026-04-09T01:11:10.338023+00:00 +2025-08-28,Devin,all,35,,20260408T230245Z,2026-04-09T01:11:10.338023+00:00 +2025-08-28,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T01:11:10.338023+00:00 +2025-08-28,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T01:11:10.338023+00:00 +2025-08-28,Gru,all,0,,20260408T230245Z,2026-04-09T01:11:10.338023+00:00 +2025-08-28,Jules (Google),all,2338,,20260408T230245Z,2026-04-09T01:11:10.338023+00:00 +2025-08-28,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T01:11:10.338023+00:00 +2025-08-28,Kilo Code,all,0,,20260408T230245Z,2026-04-09T01:11:10.338023+00:00 +2025-08-28,Lovable,all,0,,20260408T230245Z,2026-04-09T01:11:10.338023+00:00 +2025-08-28,OpenAI Codex,all,1,,20260408T230245Z,2026-04-09T01:11:10.338023+00:00 +2025-08-28,OpenCode,all,0,,20260408T230245Z,2026-04-09T01:11:10.338023+00:00 +2025-08-28,OpenHands,all,132,,20260408T230245Z,2026-04-09T01:11:10.338023+00:00 +2025-08-28,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T01:11:10.338023+00:00 +2025-08-28,Roo Code,all,0,,20260408T230245Z,2026-04-09T01:11:10.338023+00:00 +2025-08-28,Sketch,all,0,,20260408T230245Z,2026-04-09T01:11:10.338023+00:00 +2025-08-28,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T01:11:10.338023+00:00 +2025-08-28,Sweep AI,all,0,,20260408T230245Z,2026-04-09T01:11:10.338023+00:00 +2025-08-28,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T01:11:10.338023+00:00 +2025-08-29,Aider,all,73,,20260408T230245Z,2026-04-09T01:13:23.596589+00:00 +2025-08-29,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T01:13:23.596589+00:00 +2025-08-29,ChatGPT,all,12,,20260408T230245Z,2026-04-09T01:13:23.596589+00:00 +2025-08-29,Claude Code,all,255,,20260408T230245Z,2026-04-09T01:13:23.596589+00:00 +2025-08-29,Cline,all,726,,20260408T230245Z,2026-04-09T01:13:23.596589+00:00 +2025-08-29,Codegen,all,24,,20260408T230245Z,2026-04-09T01:13:23.596589+00:00 +2025-08-29,Coderabbit,all,40,,20260408T230245Z,2026-04-09T01:13:23.596589+00:00 +2025-08-29,Copilot,all,9,,20260408T230245Z,2026-04-09T01:13:23.596589+00:00 +2025-08-29,Copilot SWE Agent,all,3584,,20260408T230245Z,2026-04-09T01:13:23.596589+00:00 +2025-08-29,Crush,all,0,,20260408T230245Z,2026-04-09T01:13:23.596589+00:00 +2025-08-29,Cursor,all,2254,,20260408T230245Z,2026-04-09T01:13:23.596589+00:00 +2025-08-29,DeepSource,all,17,,20260408T230245Z,2026-04-09T01:13:23.596589+00:00 +2025-08-29,Devin,all,62,,20260408T230245Z,2026-04-09T01:13:23.596589+00:00 +2025-08-29,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T01:13:23.596589+00:00 +2025-08-29,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T01:13:23.596589+00:00 +2025-08-29,Gru,all,0,,20260408T230245Z,2026-04-09T01:13:23.596589+00:00 +2025-08-29,Jules (Google),all,2361,,20260408T230245Z,2026-04-09T01:13:23.596589+00:00 +2025-08-29,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T01:13:23.596589+00:00 +2025-08-29,Kilo Code,all,0,,20260408T230245Z,2026-04-09T01:13:23.596589+00:00 +2025-08-29,Lovable,all,0,,20260408T230245Z,2026-04-09T01:13:23.596589+00:00 +2025-08-29,OpenAI Codex,all,0,,20260408T230245Z,2026-04-09T01:13:23.596589+00:00 +2025-08-29,OpenCode,all,0,,20260408T230245Z,2026-04-09T01:13:23.596589+00:00 +2025-08-29,OpenHands,all,188,,20260408T230245Z,2026-04-09T01:13:23.596589+00:00 +2025-08-29,Qwen Coder,all,13,,20260408T230245Z,2026-04-09T01:13:23.596589+00:00 +2025-08-29,Roo Code,all,0,,20260408T230245Z,2026-04-09T01:13:23.596589+00:00 +2025-08-29,Sketch,all,0,,20260408T230245Z,2026-04-09T01:13:23.596589+00:00 +2025-08-29,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T01:13:23.596589+00:00 +2025-08-29,Sweep AI,all,0,,20260408T230245Z,2026-04-09T01:13:23.596589+00:00 +2025-08-29,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T01:13:23.596589+00:00 +2025-08-30,Aider,all,69,,20260408T230245Z,2026-04-09T01:15:35.192137+00:00 +2025-08-30,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T01:15:35.192137+00:00 +2025-08-30,ChatGPT,all,11,,20260408T230245Z,2026-04-09T01:15:35.192137+00:00 +2025-08-30,Claude Code,all,165,,20260408T230245Z,2026-04-09T01:15:35.192137+00:00 +2025-08-30,Cline,all,1172,,20260408T230245Z,2026-04-09T01:15:35.192137+00:00 +2025-08-30,Codegen,all,21,,20260408T230245Z,2026-04-09T01:15:35.192137+00:00 +2025-08-30,Coderabbit,all,22,,20260408T230245Z,2026-04-09T01:15:35.192137+00:00 +2025-08-30,Copilot,all,7,1,20260408T230245Z,2026-04-09T01:15:35.192137+00:00 +2025-08-30,Copilot SWE Agent,all,3586,,20260408T230245Z,2026-04-09T01:15:35.192137+00:00 +2025-08-30,Crush,all,0,,20260408T230245Z,2026-04-09T01:15:35.192137+00:00 +2025-08-30,Cursor,all,1943,,20260408T230245Z,2026-04-09T01:15:35.192137+00:00 +2025-08-30,DeepSource,all,15,,20260408T230245Z,2026-04-09T01:15:35.192137+00:00 +2025-08-30,Devin,all,34,,20260408T230245Z,2026-04-09T01:15:35.192137+00:00 +2025-08-30,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T01:15:35.192137+00:00 +2025-08-30,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T01:15:35.192137+00:00 +2025-08-30,Gru,all,0,,20260408T230245Z,2026-04-09T01:15:35.192137+00:00 +2025-08-30,Jules (Google),all,2144,,20260408T230245Z,2026-04-09T01:15:35.192137+00:00 +2025-08-30,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T01:15:35.192137+00:00 +2025-08-30,Kilo Code,all,2,,20260408T230245Z,2026-04-09T01:15:35.192137+00:00 +2025-08-30,Lovable,all,0,,20260408T230245Z,2026-04-09T01:15:35.192137+00:00 +2025-08-30,OpenAI Codex,all,6,,20260408T230245Z,2026-04-09T01:15:35.192137+00:00 +2025-08-30,OpenCode,all,0,,20260408T230245Z,2026-04-09T01:15:35.192137+00:00 +2025-08-30,OpenHands,all,86,,20260408T230245Z,2026-04-09T01:15:35.192137+00:00 +2025-08-30,Qwen Coder,all,9,,20260408T230245Z,2026-04-09T01:15:35.192137+00:00 +2025-08-30,Roo Code,all,0,,20260408T230245Z,2026-04-09T01:15:35.192137+00:00 +2025-08-30,Sketch,all,0,,20260408T230245Z,2026-04-09T01:15:35.192137+00:00 +2025-08-30,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T01:15:35.192137+00:00 +2025-08-30,Sweep AI,all,0,,20260408T230245Z,2026-04-09T01:15:35.192137+00:00 +2025-08-30,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T01:15:35.192137+00:00 +2025-08-31,Aider,all,35,,20260408T230245Z,2026-04-09T01:17:46.874175+00:00 +2025-08-31,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T01:17:46.874175+00:00 +2025-08-31,ChatGPT,all,1,,20260408T230245Z,2026-04-09T01:17:46.874175+00:00 +2025-08-31,Claude Code,all,216,,20260408T230245Z,2026-04-09T01:17:46.874175+00:00 +2025-08-31,Cline,all,704,,20260408T230245Z,2026-04-09T01:17:46.874175+00:00 +2025-08-31,Codegen,all,5,,20260408T230245Z,2026-04-09T01:17:46.874175+00:00 +2025-08-31,Coderabbit,all,13,,20260408T230245Z,2026-04-09T01:17:46.874175+00:00 +2025-08-31,Copilot,all,7,,20260408T230245Z,2026-04-09T01:17:46.874175+00:00 +2025-08-31,Copilot SWE Agent,all,3774,,20260408T230245Z,2026-04-09T01:17:46.874175+00:00 +2025-08-31,Crush,all,0,,20260408T230245Z,2026-04-09T01:17:46.874175+00:00 +2025-08-31,Cursor,all,1778,,20260408T230245Z,2026-04-09T01:17:46.874175+00:00 +2025-08-31,DeepSource,all,27,,20260408T230245Z,2026-04-09T01:17:46.874175+00:00 +2025-08-31,Devin,all,14,,20260408T230245Z,2026-04-09T01:17:46.874175+00:00 +2025-08-31,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T01:17:46.874175+00:00 +2025-08-31,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T01:17:46.874175+00:00 +2025-08-31,Gru,all,0,,20260408T230245Z,2026-04-09T01:17:46.874175+00:00 +2025-08-31,Jules (Google),all,2039,,20260408T230245Z,2026-04-09T01:17:46.874175+00:00 +2025-08-31,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T01:17:46.874175+00:00 +2025-08-31,Kilo Code,all,61,,20260408T230245Z,2026-04-09T01:17:46.874175+00:00 +2025-08-31,Lovable,all,0,,20260408T230245Z,2026-04-09T01:17:46.874175+00:00 +2025-08-31,OpenAI Codex,all,4,,20260408T230245Z,2026-04-09T01:17:46.874175+00:00 +2025-08-31,OpenCode,all,0,,20260408T230245Z,2026-04-09T01:17:46.874175+00:00 +2025-08-31,OpenHands,all,91,,20260408T230245Z,2026-04-09T01:17:46.874175+00:00 +2025-08-31,Qwen Coder,all,8,,20260408T230245Z,2026-04-09T01:17:46.874175+00:00 +2025-08-31,Roo Code,all,0,,20260408T230245Z,2026-04-09T01:17:46.874175+00:00 +2025-08-31,Sketch,all,0,,20260408T230245Z,2026-04-09T01:17:46.874175+00:00 +2025-08-31,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T01:17:46.874175+00:00 +2025-08-31,Sweep AI,all,0,,20260408T230245Z,2026-04-09T01:17:46.874175+00:00 +2025-08-31,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T01:17:46.874175+00:00 +2025-09-01,Aider,all,125,,20260408T230245Z,2026-04-09T01:19:58.581365+00:00 +2025-09-01,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T01:19:58.581365+00:00 +2025-09-01,ChatGPT,all,3,,20260408T230245Z,2026-04-09T01:19:58.581365+00:00 +2025-09-01,Claude Code,all,231,,20260408T230245Z,2026-04-09T01:19:58.581365+00:00 +2025-09-01,Cline,all,723,,20260408T230245Z,2026-04-09T01:19:58.581365+00:00 +2025-09-01,Codegen,all,17,,20260408T230245Z,2026-04-09T01:19:58.581365+00:00 +2025-09-01,Coderabbit,all,5,,20260408T230245Z,2026-04-09T01:19:58.581365+00:00 +2025-09-01,Copilot,all,10,,20260408T230245Z,2026-04-09T01:19:58.581365+00:00 +2025-09-01,Copilot SWE Agent,all,4515,,20260408T230245Z,2026-04-09T01:19:58.581365+00:00 +2025-09-01,Crush,all,0,,20260408T230245Z,2026-04-09T01:19:58.581365+00:00 +2025-09-01,Cursor,all,1381,,20260408T230245Z,2026-04-09T01:19:58.581365+00:00 +2025-09-01,DeepSource,all,10,,20260408T230245Z,2026-04-09T01:19:58.581365+00:00 +2025-09-01,Devin,all,20,,20260408T230245Z,2026-04-09T01:19:58.581365+00:00 +2025-09-01,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T01:19:58.581365+00:00 +2025-09-01,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T01:19:58.581365+00:00 +2025-09-01,Gru,all,0,,20260408T230245Z,2026-04-09T01:19:58.581365+00:00 +2025-09-01,Jules (Google),all,2278,,20260408T230245Z,2026-04-09T01:19:58.581365+00:00 +2025-09-01,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T01:19:58.581365+00:00 +2025-09-01,Kilo Code,all,29,,20260408T230245Z,2026-04-09T01:19:58.581365+00:00 +2025-09-01,Lovable,all,0,,20260408T230245Z,2026-04-09T01:19:58.581365+00:00 +2025-09-01,OpenAI Codex,all,14,,20260408T230245Z,2026-04-09T01:19:58.581365+00:00 +2025-09-01,OpenCode,all,0,,20260408T230245Z,2026-04-09T01:19:58.581365+00:00 +2025-09-01,OpenHands,all,41,,20260408T230245Z,2026-04-09T01:19:58.581365+00:00 +2025-09-01,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T01:19:58.581365+00:00 +2025-09-01,Roo Code,all,0,,20260408T230245Z,2026-04-09T01:19:58.581365+00:00 +2025-09-01,Sketch,all,0,,20260408T230245Z,2026-04-09T01:19:58.581365+00:00 +2025-09-01,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T01:19:58.581365+00:00 +2025-09-01,Sweep AI,all,0,,20260408T230245Z,2026-04-09T01:19:58.581365+00:00 +2025-09-01,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T01:19:58.581365+00:00 +2025-09-02,Aider,all,36,,20260408T230245Z,2026-04-09T01:22:12.411787+00:00 +2025-09-02,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T01:22:12.411787+00:00 +2025-09-02,ChatGPT,all,5,,20260408T230245Z,2026-04-09T01:22:12.411787+00:00 +2025-09-02,Claude Code,all,205,,20260408T230245Z,2026-04-09T01:22:12.411787+00:00 +2025-09-02,Cline,all,502,,20260408T230245Z,2026-04-09T01:22:12.411787+00:00 +2025-09-02,Codegen,all,7,,20260408T230245Z,2026-04-09T01:22:12.411787+00:00 +2025-09-02,Coderabbit,all,6,,20260408T230245Z,2026-04-09T01:22:12.411787+00:00 +2025-09-02,Copilot,all,42,,20260408T230245Z,2026-04-09T01:22:12.411787+00:00 +2025-09-02,Copilot SWE Agent,all,5060,1,20260408T230245Z,2026-04-09T01:22:12.411787+00:00 +2025-09-02,Crush,all,0,,20260408T230245Z,2026-04-09T01:22:12.411787+00:00 +2025-09-02,Cursor,all,2191,,20260408T230245Z,2026-04-09T01:22:12.411787+00:00 +2025-09-02,DeepSource,all,14,,20260408T230245Z,2026-04-09T01:22:12.411787+00:00 +2025-09-02,Devin,all,7,,20260408T230245Z,2026-04-09T01:22:12.411787+00:00 +2025-09-02,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T01:22:12.411787+00:00 +2025-09-02,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T01:22:12.411787+00:00 +2025-09-02,Gru,all,0,,20260408T230245Z,2026-04-09T01:22:12.411787+00:00 +2025-09-02,Jules (Google),all,2609,1,20260408T230245Z,2026-04-09T01:22:12.411787+00:00 +2025-09-02,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T01:22:12.411787+00:00 +2025-09-02,Kilo Code,all,21,,20260408T230245Z,2026-04-09T01:22:12.411787+00:00 +2025-09-02,Lovable,all,0,,20260408T230245Z,2026-04-09T01:22:12.411787+00:00 +2025-09-02,OpenAI Codex,all,2,,20260408T230245Z,2026-04-09T01:22:12.411787+00:00 +2025-09-02,OpenCode,all,0,,20260408T230245Z,2026-04-09T01:22:12.411787+00:00 +2025-09-02,OpenHands,all,266,,20260408T230245Z,2026-04-09T01:22:12.411787+00:00 +2025-09-02,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T01:22:12.411787+00:00 +2025-09-02,Roo Code,all,0,,20260408T230245Z,2026-04-09T01:22:12.411787+00:00 +2025-09-02,Sketch,all,0,,20260408T230245Z,2026-04-09T01:22:12.411787+00:00 +2025-09-02,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T01:22:12.411787+00:00 +2025-09-02,Sweep AI,all,0,,20260408T230245Z,2026-04-09T01:22:12.411787+00:00 +2025-09-02,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T01:22:12.411787+00:00 +2025-09-03,Aider,all,45,,20260408T230245Z,2026-04-09T01:25:25.646462+00:00 +2025-09-03,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T01:25:25.646462+00:00 +2025-09-03,ChatGPT,all,3,,20260408T230245Z,2026-04-09T01:25:25.646462+00:00 +2025-09-03,Claude Code,all,264,,20260408T230245Z,2026-04-09T01:25:25.646462+00:00 +2025-09-03,Cline,all,300,,20260408T230245Z,2026-04-09T01:25:25.646462+00:00 +2025-09-03,Codegen,all,49,,20260408T230245Z,2026-04-09T01:25:25.646462+00:00 +2025-09-03,Coderabbit,all,11,,20260408T230245Z,2026-04-09T01:25:25.646462+00:00 +2025-09-03,Copilot,all,42,,20260408T230245Z,2026-04-09T01:25:25.646462+00:00 +2025-09-03,Copilot SWE Agent,all,4022,,20260408T230245Z,2026-04-09T01:25:25.646462+00:00 +2025-09-03,Crush,all,0,,20260408T230245Z,2026-04-09T01:25:25.646462+00:00 +2025-09-03,Cursor,all,2177,,20260408T230245Z,2026-04-09T01:25:25.646462+00:00 +2025-09-03,DeepSource,all,19,,20260408T230245Z,2026-04-09T01:25:25.646462+00:00 +2025-09-03,Devin,all,19,,20260408T230245Z,2026-04-09T01:25:25.646462+00:00 +2025-09-03,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T01:25:25.646462+00:00 +2025-09-03,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T01:25:25.646462+00:00 +2025-09-03,Gru,all,0,,20260408T230245Z,2026-04-09T01:25:25.646462+00:00 +2025-09-03,Jules (Google),all,2284,,20260408T230245Z,2026-04-09T01:25:25.646462+00:00 +2025-09-03,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T01:25:25.646462+00:00 +2025-09-03,Kilo Code,all,14,,20260408T230245Z,2026-04-09T01:25:25.646462+00:00 +2025-09-03,Lovable,all,0,,20260408T230245Z,2026-04-09T01:25:25.646462+00:00 +2025-09-03,OpenAI Codex,all,2,,20260408T230245Z,2026-04-09T01:25:25.646462+00:00 +2025-09-03,OpenCode,all,0,,20260408T230245Z,2026-04-09T01:25:25.646462+00:00 +2025-09-03,OpenHands,all,118,,20260408T230245Z,2026-04-09T01:25:25.646462+00:00 +2025-09-03,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T01:25:25.646462+00:00 +2025-09-03,Roo Code,all,0,,20260408T230245Z,2026-04-09T01:25:25.646462+00:00 +2025-09-03,Sketch,all,0,,20260408T230245Z,2026-04-09T01:25:25.646462+00:00 +2025-09-03,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T01:25:25.646462+00:00 +2025-09-03,Sweep AI,all,0,,20260408T230245Z,2026-04-09T01:25:25.646462+00:00 +2025-09-03,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T01:25:25.646462+00:00 +2025-09-04,Aider,all,25,,20260408T230245Z,2026-04-09T01:27:38.028318+00:00 +2025-09-04,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T01:27:38.028318+00:00 +2025-09-04,ChatGPT,all,0,,20260408T230245Z,2026-04-09T01:27:38.028318+00:00 +2025-09-04,Claude Code,all,151,,20260408T230245Z,2026-04-09T01:27:38.028318+00:00 +2025-09-04,Cline,all,469,,20260408T230245Z,2026-04-09T01:27:38.028318+00:00 +2025-09-04,Codegen,all,85,,20260408T230245Z,2026-04-09T01:27:38.028318+00:00 +2025-09-04,Coderabbit,all,2,,20260408T230245Z,2026-04-09T01:27:38.028318+00:00 +2025-09-04,Copilot,all,17,,20260408T230245Z,2026-04-09T01:27:38.028318+00:00 +2025-09-04,Copilot SWE Agent,all,3816,,20260408T230245Z,2026-04-09T01:27:38.028318+00:00 +2025-09-04,Crush,all,0,,20260408T230245Z,2026-04-09T01:27:38.028318+00:00 +2025-09-04,Cursor,all,1514,,20260408T230245Z,2026-04-09T01:27:38.028318+00:00 +2025-09-04,DeepSource,all,27,,20260408T230245Z,2026-04-09T01:27:38.028318+00:00 +2025-09-04,Devin,all,7,,20260408T230245Z,2026-04-09T01:27:38.028318+00:00 +2025-09-04,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T01:27:38.028318+00:00 +2025-09-04,Gemini Code Assist,all,0,1,20260408T230245Z,2026-04-09T01:27:38.028318+00:00 +2025-09-04,Gru,all,0,,20260408T230245Z,2026-04-09T01:27:38.028318+00:00 +2025-09-04,Jules (Google),all,2618,,20260408T230245Z,2026-04-09T01:27:38.028318+00:00 +2025-09-04,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T01:27:38.028318+00:00 +2025-09-04,Kilo Code,all,2,,20260408T230245Z,2026-04-09T01:27:38.028318+00:00 +2025-09-04,Lovable,all,0,,20260408T230245Z,2026-04-09T01:27:38.028318+00:00 +2025-09-04,OpenAI Codex,all,0,,20260408T230245Z,2026-04-09T01:27:38.028318+00:00 +2025-09-04,OpenCode,all,0,,20260408T230245Z,2026-04-09T01:27:38.028318+00:00 +2025-09-04,OpenHands,all,35,,20260408T230245Z,2026-04-09T01:27:38.028318+00:00 +2025-09-04,Qwen Coder,all,5,,20260408T230245Z,2026-04-09T01:27:38.028318+00:00 +2025-09-04,Roo Code,all,0,,20260408T230245Z,2026-04-09T01:27:38.028318+00:00 +2025-09-04,Sketch,all,0,,20260408T230245Z,2026-04-09T01:27:38.028318+00:00 +2025-09-04,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T01:27:38.028318+00:00 +2025-09-04,Sweep AI,all,0,,20260408T230245Z,2026-04-09T01:27:38.028318+00:00 +2025-09-04,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T01:27:38.028318+00:00 +2025-09-05,Aider,all,55,,20260408T230245Z,2026-04-09T01:29:50.250521+00:00 +2025-09-05,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T01:29:50.250521+00:00 +2025-09-05,ChatGPT,all,14,,20260408T230245Z,2026-04-09T01:29:50.250521+00:00 +2025-09-05,Claude Code,all,148,,20260408T230245Z,2026-04-09T01:29:50.250521+00:00 +2025-09-05,Cline,all,245,,20260408T230245Z,2026-04-09T01:29:50.250521+00:00 +2025-09-05,Codegen,all,96,,20260408T230245Z,2026-04-09T01:29:50.250521+00:00 +2025-09-05,Coderabbit,all,6,,20260408T230245Z,2026-04-09T01:29:50.250521+00:00 +2025-09-05,Copilot,all,28,,20260408T230245Z,2026-04-09T01:29:50.250521+00:00 +2025-09-05,Copilot SWE Agent,all,3684,,20260408T230245Z,2026-04-09T01:29:50.250521+00:00 +2025-09-05,Crush,all,0,,20260408T230245Z,2026-04-09T01:29:50.250521+00:00 +2025-09-05,Cursor,all,1624,,20260408T230245Z,2026-04-09T01:29:50.250521+00:00 +2025-09-05,DeepSource,all,25,,20260408T230245Z,2026-04-09T01:29:50.250521+00:00 +2025-09-05,Devin,all,29,,20260408T230245Z,2026-04-09T01:29:50.250521+00:00 +2025-09-05,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T01:29:50.250521+00:00 +2025-09-05,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T01:29:50.250521+00:00 +2025-09-05,Gru,all,0,,20260408T230245Z,2026-04-09T01:29:50.250521+00:00 +2025-09-05,Jules (Google),all,2222,,20260408T230245Z,2026-04-09T01:29:50.250521+00:00 +2025-09-05,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T01:29:50.250521+00:00 +2025-09-05,Kilo Code,all,0,,20260408T230245Z,2026-04-09T01:29:50.250521+00:00 +2025-09-05,Lovable,all,0,,20260408T230245Z,2026-04-09T01:29:50.250521+00:00 +2025-09-05,OpenAI Codex,all,15,,20260408T230245Z,2026-04-09T01:29:50.250521+00:00 +2025-09-05,OpenCode,all,0,,20260408T230245Z,2026-04-09T01:29:50.250521+00:00 +2025-09-05,OpenHands,all,38,,20260408T230245Z,2026-04-09T01:29:50.250521+00:00 +2025-09-05,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T01:29:50.250521+00:00 +2025-09-05,Roo Code,all,0,,20260408T230245Z,2026-04-09T01:29:50.250521+00:00 +2025-09-05,Sketch,all,0,,20260408T230245Z,2026-04-09T01:29:50.250521+00:00 +2025-09-05,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T01:29:50.250521+00:00 +2025-09-05,Sweep AI,all,0,,20260408T230245Z,2026-04-09T01:29:50.250521+00:00 +2025-09-05,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T01:29:50.250521+00:00 +2025-09-06,Aider,all,11,,20260408T230245Z,2026-04-09T01:32:02.824475+00:00 +2025-09-06,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T01:32:02.824475+00:00 +2025-09-06,ChatGPT,all,10,,20260408T230245Z,2026-04-09T01:32:02.824475+00:00 +2025-09-06,Claude Code,all,258,,20260408T230245Z,2026-04-09T01:32:02.824475+00:00 +2025-09-06,Cline,all,505,,20260408T230245Z,2026-04-09T01:32:02.824475+00:00 +2025-09-06,Codegen,all,24,,20260408T230245Z,2026-04-09T01:32:02.824475+00:00 +2025-09-06,Coderabbit,all,9,,20260408T230245Z,2026-04-09T01:32:02.824475+00:00 +2025-09-06,Copilot,all,61,,20260408T230245Z,2026-04-09T01:32:02.824475+00:00 +2025-09-06,Copilot SWE Agent,all,3418,,20260408T230245Z,2026-04-09T01:32:02.824475+00:00 +2025-09-06,Crush,all,0,,20260408T230245Z,2026-04-09T01:32:02.824475+00:00 +2025-09-06,Cursor,all,1425,,20260408T230245Z,2026-04-09T01:32:02.824475+00:00 +2025-09-06,DeepSource,all,3,,20260408T230245Z,2026-04-09T01:32:02.824475+00:00 +2025-09-06,Devin,all,11,1,20260408T230245Z,2026-04-09T01:32:02.824475+00:00 +2025-09-06,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T01:32:02.824475+00:00 +2025-09-06,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T01:32:02.824475+00:00 +2025-09-06,Gru,all,0,,20260408T230245Z,2026-04-09T01:32:02.824475+00:00 +2025-09-06,Jules (Google),all,2116,,20260408T230245Z,2026-04-09T01:32:02.824475+00:00 +2025-09-06,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T01:32:02.824475+00:00 +2025-09-06,Kilo Code,all,2,,20260408T230245Z,2026-04-09T01:32:02.824475+00:00 +2025-09-06,Lovable,all,0,,20260408T230245Z,2026-04-09T01:32:02.824475+00:00 +2025-09-06,OpenAI Codex,all,0,,20260408T230245Z,2026-04-09T01:32:02.824475+00:00 +2025-09-06,OpenCode,all,0,,20260408T230245Z,2026-04-09T01:32:02.824475+00:00 +2025-09-06,OpenHands,all,78,,20260408T230245Z,2026-04-09T01:32:02.824475+00:00 +2025-09-06,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T01:32:02.824475+00:00 +2025-09-06,Roo Code,all,0,,20260408T230245Z,2026-04-09T01:32:02.824475+00:00 +2025-09-06,Sketch,all,0,,20260408T230245Z,2026-04-09T01:32:02.824475+00:00 +2025-09-06,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T01:32:02.824475+00:00 +2025-09-06,Sweep AI,all,0,,20260408T230245Z,2026-04-09T01:32:02.824475+00:00 +2025-09-06,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T01:32:02.824475+00:00 +2025-09-07,Aider,all,47,,20260408T230245Z,2026-04-09T01:34:15.566923+00:00 +2025-09-07,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T01:34:15.566923+00:00 +2025-09-07,ChatGPT,all,3,,20260408T230245Z,2026-04-09T01:34:15.566923+00:00 +2025-09-07,Claude Code,all,176,,20260408T230245Z,2026-04-09T01:34:15.566923+00:00 +2025-09-07,Cline,all,241,,20260408T230245Z,2026-04-09T01:34:15.566923+00:00 +2025-09-07,Codegen,all,35,,20260408T230245Z,2026-04-09T01:34:15.566923+00:00 +2025-09-07,Coderabbit,all,7,,20260408T230245Z,2026-04-09T01:34:15.566923+00:00 +2025-09-07,Copilot,all,16,,20260408T230245Z,2026-04-09T01:34:15.566923+00:00 +2025-09-07,Copilot SWE Agent,all,3326,,20260408T230245Z,2026-04-09T01:34:15.566923+00:00 +2025-09-07,Crush,all,0,,20260408T230245Z,2026-04-09T01:34:15.566923+00:00 +2025-09-07,Cursor,all,2256,,20260408T230245Z,2026-04-09T01:34:15.566923+00:00 +2025-09-07,DeepSource,all,10,,20260408T230245Z,2026-04-09T01:34:15.566923+00:00 +2025-09-07,Devin,all,19,,20260408T230245Z,2026-04-09T01:34:15.566923+00:00 +2025-09-07,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T01:34:15.566923+00:00 +2025-09-07,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T01:34:15.566923+00:00 +2025-09-07,Gru,all,0,,20260408T230245Z,2026-04-09T01:34:15.566923+00:00 +2025-09-07,Jules (Google),all,1841,,20260408T230245Z,2026-04-09T01:34:15.566923+00:00 +2025-09-07,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T01:34:15.566923+00:00 +2025-09-07,Kilo Code,all,7,,20260408T230245Z,2026-04-09T01:34:15.566923+00:00 +2025-09-07,Lovable,all,0,,20260408T230245Z,2026-04-09T01:34:15.566923+00:00 +2025-09-07,OpenAI Codex,all,1,,20260408T230245Z,2026-04-09T01:34:15.566923+00:00 +2025-09-07,OpenCode,all,0,,20260408T230245Z,2026-04-09T01:34:15.566923+00:00 +2025-09-07,OpenHands,all,66,,20260408T230245Z,2026-04-09T01:34:15.566923+00:00 +2025-09-07,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T01:34:15.566923+00:00 +2025-09-07,Roo Code,all,0,,20260408T230245Z,2026-04-09T01:34:15.566923+00:00 +2025-09-07,Sketch,all,0,,20260408T230245Z,2026-04-09T01:34:15.566923+00:00 +2025-09-07,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T01:34:15.566923+00:00 +2025-09-07,Sweep AI,all,0,,20260408T230245Z,2026-04-09T01:34:15.566923+00:00 +2025-09-07,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T01:34:15.566923+00:00 +2025-09-08,Aider,all,99,,20260408T230245Z,2026-04-09T01:36:28.148080+00:00 +2025-09-08,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T01:36:28.148080+00:00 +2025-09-08,ChatGPT,all,2,,20260408T230245Z,2026-04-09T01:36:28.148080+00:00 +2025-09-08,Claude Code,all,150,,20260408T230245Z,2026-04-09T01:36:28.148080+00:00 +2025-09-08,Cline,all,1042,,20260408T230245Z,2026-04-09T01:36:28.148080+00:00 +2025-09-08,Codegen,all,38,,20260408T230245Z,2026-04-09T01:36:28.148080+00:00 +2025-09-08,Coderabbit,all,0,,20260408T230245Z,2026-04-09T01:36:28.148080+00:00 +2025-09-08,Copilot,all,8,,20260408T230245Z,2026-04-09T01:36:28.148080+00:00 +2025-09-08,Copilot SWE Agent,all,4392,,20260408T230245Z,2026-04-09T01:36:28.148080+00:00 +2025-09-08,Crush,all,0,,20260408T230245Z,2026-04-09T01:36:28.148080+00:00 +2025-09-08,Cursor,all,1909,,20260408T230245Z,2026-04-09T01:36:28.148080+00:00 +2025-09-08,DeepSource,all,10,,20260408T230245Z,2026-04-09T01:36:28.148080+00:00 +2025-09-08,Devin,all,89,,20260408T230245Z,2026-04-09T01:36:28.148080+00:00 +2025-09-08,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T01:36:28.148080+00:00 +2025-09-08,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T01:36:28.148080+00:00 +2025-09-08,Gru,all,1,,20260408T230245Z,2026-04-09T01:36:28.148080+00:00 +2025-09-08,Jules (Google),all,2264,,20260408T230245Z,2026-04-09T01:36:28.148080+00:00 +2025-09-08,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T01:36:28.148080+00:00 +2025-09-08,Kilo Code,all,0,,20260408T230245Z,2026-04-09T01:36:28.148080+00:00 +2025-09-08,Lovable,all,0,,20260408T230245Z,2026-04-09T01:36:28.148080+00:00 +2025-09-08,OpenAI Codex,all,2,,20260408T230245Z,2026-04-09T01:36:28.148080+00:00 +2025-09-08,OpenCode,all,0,,20260408T230245Z,2026-04-09T01:36:28.148080+00:00 +2025-09-08,OpenHands,all,96,,20260408T230245Z,2026-04-09T01:36:28.148080+00:00 +2025-09-08,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T01:36:28.148080+00:00 +2025-09-08,Roo Code,all,0,,20260408T230245Z,2026-04-09T01:36:28.148080+00:00 +2025-09-08,Sketch,all,0,,20260408T230245Z,2026-04-09T01:36:28.148080+00:00 +2025-09-08,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T01:36:28.148080+00:00 +2025-09-08,Sweep AI,all,0,,20260408T230245Z,2026-04-09T01:36:28.148080+00:00 +2025-09-08,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T01:36:28.148080+00:00 +2025-09-09,Aider,all,39,,20260408T230245Z,2026-04-09T01:38:40.450800+00:00 +2025-09-09,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T01:38:40.450800+00:00 +2025-09-09,ChatGPT,all,2,,20260408T230245Z,2026-04-09T01:38:40.450800+00:00 +2025-09-09,Claude Code,all,268,,20260408T230245Z,2026-04-09T01:38:40.450800+00:00 +2025-09-09,Cline,all,483,,20260408T230245Z,2026-04-09T01:38:40.450800+00:00 +2025-09-09,Codegen,all,14,,20260408T230245Z,2026-04-09T01:38:40.450800+00:00 +2025-09-09,Coderabbit,all,10,,20260408T230245Z,2026-04-09T01:38:40.450800+00:00 +2025-09-09,Copilot,all,40,,20260408T230245Z,2026-04-09T01:38:40.450800+00:00 +2025-09-09,Copilot SWE Agent,all,4237,,20260408T230245Z,2026-04-09T01:38:40.450800+00:00 +2025-09-09,Crush,all,0,,20260408T230245Z,2026-04-09T01:38:40.450800+00:00 +2025-09-09,Cursor,all,1220,,20260408T230245Z,2026-04-09T01:38:40.450800+00:00 +2025-09-09,DeepSource,all,19,,20260408T230245Z,2026-04-09T01:38:40.450800+00:00 +2025-09-09,Devin,all,21,,20260408T230245Z,2026-04-09T01:38:40.450800+00:00 +2025-09-09,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T01:38:40.450800+00:00 +2025-09-09,Gemini Code Assist,all,0,1,20260408T230245Z,2026-04-09T01:38:40.450800+00:00 +2025-09-09,Gru,all,0,,20260408T230245Z,2026-04-09T01:38:40.450800+00:00 +2025-09-09,Jules (Google),all,2282,,20260408T230245Z,2026-04-09T01:38:40.450800+00:00 +2025-09-09,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T01:38:40.450800+00:00 +2025-09-09,Kilo Code,all,4,,20260408T230245Z,2026-04-09T01:38:40.450800+00:00 +2025-09-09,Lovable,all,0,,20260408T230245Z,2026-04-09T01:38:40.450800+00:00 +2025-09-09,OpenAI Codex,all,9,,20260408T230245Z,2026-04-09T01:38:40.450800+00:00 +2025-09-09,OpenCode,all,0,,20260408T230245Z,2026-04-09T01:38:40.450800+00:00 +2025-09-09,OpenHands,all,130,,20260408T230245Z,2026-04-09T01:38:40.450800+00:00 +2025-09-09,Qwen Coder,all,1,,20260408T230245Z,2026-04-09T01:38:40.450800+00:00 +2025-09-09,Roo Code,all,0,,20260408T230245Z,2026-04-09T01:38:40.450800+00:00 +2025-09-09,Sketch,all,0,,20260408T230245Z,2026-04-09T01:38:40.450800+00:00 +2025-09-09,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T01:38:40.450800+00:00 +2025-09-09,Sweep AI,all,0,,20260408T230245Z,2026-04-09T01:38:40.450800+00:00 +2025-09-09,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T01:38:40.450800+00:00 +2025-09-10,Aider,all,20,,20260408T230245Z,2026-04-09T01:40:53.568574+00:00 +2025-09-10,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T01:40:53.568574+00:00 +2025-09-10,ChatGPT,all,2,,20260408T230245Z,2026-04-09T01:40:53.568574+00:00 +2025-09-10,Claude Code,all,160,,20260408T230245Z,2026-04-09T01:40:53.568574+00:00 +2025-09-10,Cline,all,704,,20260408T230245Z,2026-04-09T01:40:53.568574+00:00 +2025-09-10,Codegen,all,29,,20260408T230245Z,2026-04-09T01:40:53.568574+00:00 +2025-09-10,Coderabbit,all,4,,20260408T230245Z,2026-04-09T01:40:53.568574+00:00 +2025-09-10,Copilot,all,37,,20260408T230245Z,2026-04-09T01:40:53.568574+00:00 +2025-09-10,Copilot SWE Agent,all,4214,,20260408T230245Z,2026-04-09T01:40:53.568574+00:00 +2025-09-10,Crush,all,0,,20260408T230245Z,2026-04-09T01:40:53.568574+00:00 +2025-09-10,Cursor,all,1546,,20260408T230245Z,2026-04-09T01:40:53.568574+00:00 +2025-09-10,DeepSource,all,31,,20260408T230245Z,2026-04-09T01:40:53.568574+00:00 +2025-09-10,Devin,all,9,,20260408T230245Z,2026-04-09T01:40:53.568574+00:00 +2025-09-10,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T01:40:53.568574+00:00 +2025-09-10,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T01:40:53.568574+00:00 +2025-09-10,Gru,all,0,,20260408T230245Z,2026-04-09T01:40:53.568574+00:00 +2025-09-10,Jules (Google),all,2097,,20260408T230245Z,2026-04-09T01:40:53.568574+00:00 +2025-09-10,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T01:40:53.568574+00:00 +2025-09-10,Kilo Code,all,10,,20260408T230245Z,2026-04-09T01:40:53.568574+00:00 +2025-09-10,Lovable,all,0,,20260408T230245Z,2026-04-09T01:40:53.568574+00:00 +2025-09-10,OpenAI Codex,all,10,,20260408T230245Z,2026-04-09T01:40:53.568574+00:00 +2025-09-10,OpenCode,all,0,,20260408T230245Z,2026-04-09T01:40:53.568574+00:00 +2025-09-10,OpenHands,all,45,,20260408T230245Z,2026-04-09T01:40:53.568574+00:00 +2025-09-10,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T01:40:53.568574+00:00 +2025-09-10,Roo Code,all,0,,20260408T230245Z,2026-04-09T01:40:53.568574+00:00 +2025-09-10,Sketch,all,0,,20260408T230245Z,2026-04-09T01:40:53.568574+00:00 +2025-09-10,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T01:40:53.568574+00:00 +2025-09-10,Sweep AI,all,0,,20260408T230245Z,2026-04-09T01:40:53.568574+00:00 +2025-09-10,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T01:40:53.568574+00:00 +2025-09-11,Aider,all,59,,20260408T230245Z,2026-04-09T01:43:05.652204+00:00 +2025-09-11,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T01:43:05.652204+00:00 +2025-09-11,ChatGPT,all,0,,20260408T230245Z,2026-04-09T01:43:05.652204+00:00 +2025-09-11,Claude Code,all,241,,20260408T230245Z,2026-04-09T01:43:05.652204+00:00 +2025-09-11,Cline,all,244,,20260408T230245Z,2026-04-09T01:43:05.652204+00:00 +2025-09-11,Codegen,all,12,,20260408T230245Z,2026-04-09T01:43:05.652204+00:00 +2025-09-11,Coderabbit,all,3,,20260408T230245Z,2026-04-09T01:43:05.652204+00:00 +2025-09-11,Copilot,all,31,,20260408T230245Z,2026-04-09T01:43:05.652204+00:00 +2025-09-11,Copilot SWE Agent,all,4388,,20260408T230245Z,2026-04-09T01:43:05.652204+00:00 +2025-09-11,Crush,all,0,,20260408T230245Z,2026-04-09T01:43:05.652204+00:00 +2025-09-11,Cursor,all,1375,,20260408T230245Z,2026-04-09T01:43:05.652204+00:00 +2025-09-11,DeepSource,all,18,,20260408T230245Z,2026-04-09T01:43:05.652204+00:00 +2025-09-11,Devin,all,4,,20260408T230245Z,2026-04-09T01:43:05.652204+00:00 +2025-09-11,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T01:43:05.652204+00:00 +2025-09-11,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T01:43:05.652204+00:00 +2025-09-11,Gru,all,0,,20260408T230245Z,2026-04-09T01:43:05.652204+00:00 +2025-09-11,Jules (Google),all,2032,,20260408T230245Z,2026-04-09T01:43:05.652204+00:00 +2025-09-11,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T01:43:05.652204+00:00 +2025-09-11,Kilo Code,all,0,,20260408T230245Z,2026-04-09T01:43:05.652204+00:00 +2025-09-11,Lovable,all,0,,20260408T230245Z,2026-04-09T01:43:05.652204+00:00 +2025-09-11,OpenAI Codex,all,19,,20260408T230245Z,2026-04-09T01:43:05.652204+00:00 +2025-09-11,OpenCode,all,0,,20260408T230245Z,2026-04-09T01:43:05.652204+00:00 +2025-09-11,OpenHands,all,76,,20260408T230245Z,2026-04-09T01:43:05.652204+00:00 +2025-09-11,Qwen Coder,all,5,,20260408T230245Z,2026-04-09T01:43:05.652204+00:00 +2025-09-11,Roo Code,all,0,,20260408T230245Z,2026-04-09T01:43:05.652204+00:00 +2025-09-11,Sketch,all,0,,20260408T230245Z,2026-04-09T01:43:05.652204+00:00 +2025-09-11,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T01:43:05.652204+00:00 +2025-09-11,Sweep AI,all,0,,20260408T230245Z,2026-04-09T01:43:05.652204+00:00 +2025-09-11,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T01:43:05.652204+00:00 +2025-09-12,Aider,all,18,,20260408T230245Z,2026-04-09T01:45:17.423725+00:00 +2025-09-12,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T01:45:17.423725+00:00 +2025-09-12,ChatGPT,all,0,,20260408T230245Z,2026-04-09T01:45:17.423725+00:00 +2025-09-12,Claude Code,all,322,,20260408T230245Z,2026-04-09T01:45:17.423725+00:00 +2025-09-12,Cline,all,282,,20260408T230245Z,2026-04-09T01:45:17.423725+00:00 +2025-09-12,Codegen,all,7,,20260408T230245Z,2026-04-09T01:45:17.423725+00:00 +2025-09-12,Coderabbit,all,9,,20260408T230245Z,2026-04-09T01:45:17.423725+00:00 +2025-09-12,Copilot,all,44,,20260408T230245Z,2026-04-09T01:45:17.423725+00:00 +2025-09-12,Copilot SWE Agent,all,4044,,20260408T230245Z,2026-04-09T01:45:17.423725+00:00 +2025-09-12,Crush,all,0,,20260408T230245Z,2026-04-09T01:45:17.423725+00:00 +2025-09-12,Cursor,all,1554,,20260408T230245Z,2026-04-09T01:45:17.423725+00:00 +2025-09-12,DeepSource,all,18,,20260408T230245Z,2026-04-09T01:45:17.423725+00:00 +2025-09-12,Devin,all,37,,20260408T230245Z,2026-04-09T01:45:17.423725+00:00 +2025-09-12,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T01:45:17.423725+00:00 +2025-09-12,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T01:45:17.423725+00:00 +2025-09-12,Gru,all,0,,20260408T230245Z,2026-04-09T01:45:17.423725+00:00 +2025-09-12,Jules (Google),all,1818,,20260408T230245Z,2026-04-09T01:45:17.423725+00:00 +2025-09-12,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T01:45:17.423725+00:00 +2025-09-12,Kilo Code,all,0,,20260408T230245Z,2026-04-09T01:45:17.423725+00:00 +2025-09-12,Lovable,all,0,,20260408T230245Z,2026-04-09T01:45:17.423725+00:00 +2025-09-12,OpenAI Codex,all,8,,20260408T230245Z,2026-04-09T01:45:17.423725+00:00 +2025-09-12,OpenCode,all,0,,20260408T230245Z,2026-04-09T01:45:17.423725+00:00 +2025-09-12,OpenHands,all,170,,20260408T230245Z,2026-04-09T01:45:17.423725+00:00 +2025-09-12,Qwen Coder,all,4,,20260408T230245Z,2026-04-09T01:45:17.423725+00:00 +2025-09-12,Roo Code,all,0,,20260408T230245Z,2026-04-09T01:45:17.423725+00:00 +2025-09-12,Sketch,all,0,,20260408T230245Z,2026-04-09T01:45:17.423725+00:00 +2025-09-12,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T01:45:17.423725+00:00 +2025-09-12,Sweep AI,all,0,,20260408T230245Z,2026-04-09T01:45:17.423725+00:00 +2025-09-12,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T01:45:17.423725+00:00 +2025-09-13,Aider,all,50,,20260408T230245Z,2026-04-09T01:47:29.684974+00:00 +2025-09-13,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T01:47:29.684974+00:00 +2025-09-13,ChatGPT,all,0,,20260408T230245Z,2026-04-09T01:47:29.684974+00:00 +2025-09-13,Claude Code,all,299,,20260408T230245Z,2026-04-09T01:47:29.684974+00:00 +2025-09-13,Cline,all,487,,20260408T230245Z,2026-04-09T01:47:29.684974+00:00 +2025-09-13,Codegen,all,13,,20260408T230245Z,2026-04-09T01:47:29.684974+00:00 +2025-09-13,Coderabbit,all,4,,20260408T230245Z,2026-04-09T01:47:29.684974+00:00 +2025-09-13,Copilot,all,65,,20260408T230245Z,2026-04-09T01:47:29.684974+00:00 +2025-09-13,Copilot SWE Agent,all,3615,,20260408T230245Z,2026-04-09T01:47:29.684974+00:00 +2025-09-13,Crush,all,0,,20260408T230245Z,2026-04-09T01:47:29.684974+00:00 +2025-09-13,Cursor,all,1297,,20260408T230245Z,2026-04-09T01:47:29.684974+00:00 +2025-09-13,DeepSource,all,11,,20260408T230245Z,2026-04-09T01:47:29.684974+00:00 +2025-09-13,Devin,all,9,,20260408T230245Z,2026-04-09T01:47:29.684974+00:00 +2025-09-13,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T01:47:29.684974+00:00 +2025-09-13,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T01:47:29.684974+00:00 +2025-09-13,Gru,all,0,,20260408T230245Z,2026-04-09T01:47:29.684974+00:00 +2025-09-13,Jules (Google),all,1539,,20260408T230245Z,2026-04-09T01:47:29.684974+00:00 +2025-09-13,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T01:47:29.684974+00:00 +2025-09-13,Kilo Code,all,0,,20260408T230245Z,2026-04-09T01:47:29.684974+00:00 +2025-09-13,Lovable,all,0,,20260408T230245Z,2026-04-09T01:47:29.684974+00:00 +2025-09-13,OpenAI Codex,all,10,,20260408T230245Z,2026-04-09T01:47:29.684974+00:00 +2025-09-13,OpenCode,all,0,,20260408T230245Z,2026-04-09T01:47:29.684974+00:00 +2025-09-13,OpenHands,all,107,,20260408T230245Z,2026-04-09T01:47:29.684974+00:00 +2025-09-13,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T01:47:29.684974+00:00 +2025-09-13,Roo Code,all,0,,20260408T230245Z,2026-04-09T01:47:29.684974+00:00 +2025-09-13,Sketch,all,0,,20260408T230245Z,2026-04-09T01:47:29.684974+00:00 +2025-09-13,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T01:47:29.684974+00:00 +2025-09-13,Sweep AI,all,0,,20260408T230245Z,2026-04-09T01:47:29.684974+00:00 +2025-09-13,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T01:47:29.684974+00:00 +2025-09-14,Aider,all,102,,20260408T230245Z,2026-04-09T01:49:42.152613+00:00 +2025-09-14,Amp (Sourcegraph),all,0,1,20260408T230245Z,2026-04-09T01:49:42.152613+00:00 +2025-09-14,ChatGPT,all,0,,20260408T230245Z,2026-04-09T01:49:42.152613+00:00 +2025-09-14,Claude Code,all,470,,20260408T230245Z,2026-04-09T01:49:42.152613+00:00 +2025-09-14,Cline,all,711,,20260408T230245Z,2026-04-09T01:49:42.152613+00:00 +2025-09-14,Codegen,all,39,,20260408T230245Z,2026-04-09T01:49:42.152613+00:00 +2025-09-14,Coderabbit,all,7,,20260408T230245Z,2026-04-09T01:49:42.152613+00:00 +2025-09-14,Copilot,all,51,1,20260408T230245Z,2026-04-09T01:49:42.152613+00:00 +2025-09-14,Copilot SWE Agent,all,3803,,20260408T230245Z,2026-04-09T01:49:42.152613+00:00 +2025-09-14,Crush,all,0,,20260408T230245Z,2026-04-09T01:49:42.152613+00:00 +2025-09-14,Cursor,all,1094,,20260408T230245Z,2026-04-09T01:49:42.152613+00:00 +2025-09-14,DeepSource,all,14,,20260408T230245Z,2026-04-09T01:49:42.152613+00:00 +2025-09-14,Devin,all,46,1,20260408T230245Z,2026-04-09T01:49:42.152613+00:00 +2025-09-14,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T01:49:42.152613+00:00 +2025-09-14,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T01:49:42.152613+00:00 +2025-09-14,Gru,all,0,,20260408T230245Z,2026-04-09T01:49:42.152613+00:00 +2025-09-14,Jules (Google),all,1707,1,20260408T230245Z,2026-04-09T01:49:42.152613+00:00 +2025-09-14,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T01:49:42.152613+00:00 +2025-09-14,Kilo Code,all,0,,20260408T230245Z,2026-04-09T01:49:42.152613+00:00 +2025-09-14,Lovable,all,0,,20260408T230245Z,2026-04-09T01:49:42.152613+00:00 +2025-09-14,OpenAI Codex,all,4,,20260408T230245Z,2026-04-09T01:49:42.152613+00:00 +2025-09-14,OpenCode,all,0,,20260408T230245Z,2026-04-09T01:49:42.152613+00:00 +2025-09-14,OpenHands,all,153,,20260408T230245Z,2026-04-09T01:49:42.152613+00:00 +2025-09-14,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T01:49:42.152613+00:00 +2025-09-14,Roo Code,all,0,,20260408T230245Z,2026-04-09T01:49:42.152613+00:00 +2025-09-14,Sketch,all,0,,20260408T230245Z,2026-04-09T01:49:42.152613+00:00 +2025-09-14,Sourcery AI,all,0,1,20260408T230245Z,2026-04-09T01:49:42.152613+00:00 +2025-09-14,Sweep AI,all,0,,20260408T230245Z,2026-04-09T01:49:42.152613+00:00 +2025-09-14,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T01:49:42.152613+00:00 +2025-09-15,Aider,all,86,,20260409T204843Z,2026-04-09T20:56:03.946233+00:00 +2025-09-15,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T11:12:10.441141+00:00 +2025-09-15,ChatGPT,all,0,,20260409T204843Z,2026-04-09T20:56:03.946233+00:00 +2025-09-15,Claude Code,all,524,,20260409T204843Z,2026-04-09T20:56:03.946233+00:00 +2025-09-15,Cline,all,251,,20260409T204843Z,2026-04-09T20:56:03.946233+00:00 +2025-09-15,Codegen,all,58,,20260408T230245Z,2026-04-09T11:12:10.441141+00:00 +2025-09-15,Coderabbit,all,10,,20260409T204843Z,2026-04-09T20:56:03.946233+00:00 +2025-09-15,Copilot,all,33,,20260408T230245Z,2026-04-09T11:12:10.441141+00:00 +2025-09-15,Copilot SWE Agent,all,4033,,20260409T204843Z,2026-04-09T20:56:03.946233+00:00 +2025-09-15,Crush,all,0,,20260408T230245Z,2026-04-09T11:12:10.441141+00:00 +2025-09-15,Cursor,all,1342,,20260409T204843Z,2026-04-09T20:56:03.946233+00:00 +2025-09-15,DeepSource,all,10,,20260408T230245Z,2026-04-09T11:12:10.441141+00:00 +2025-09-15,Devin,all,39,,20260409T204843Z,2026-04-09T20:56:03.946233+00:00 +2025-09-15,Gemini CLI,all,0,,20260409T204843Z,2026-04-09T20:56:03.946233+00:00 +2025-09-15,Gemini Code Assist,all,0,,20260409T204843Z,2026-04-09T20:56:03.946233+00:00 +2025-09-15,Gru,all,0,,20260408T230245Z,2026-04-09T11:12:10.441141+00:00 +2025-09-15,Jules (Google),all,2121,,20260409T204843Z,2026-04-09T20:56:03.946233+00:00 +2025-09-15,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T11:12:10.441141+00:00 +2025-09-15,Kilo Code,all,0,,20260408T230245Z,2026-04-09T11:12:10.441141+00:00 +2025-09-15,Lovable,all,0,,20260409T204843Z,2026-04-09T20:56:03.946233+00:00 +2025-09-15,OpenAI Codex,all,0,,20260408T230245Z,2026-04-09T11:12:10.441141+00:00 +2025-09-15,OpenCode,all,0,,20260408T230245Z,2026-04-09T11:12:10.441141+00:00 +2025-09-15,OpenHands,all,190,,20260409T204843Z,2026-04-09T20:56:03.946233+00:00 +2025-09-15,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T11:12:10.441141+00:00 +2025-09-15,Roo Code,all,0,,20260408T230245Z,2026-04-09T11:12:10.441141+00:00 +2025-09-15,Sketch,all,0,,20260408T230245Z,2026-04-09T11:12:10.441141+00:00 +2025-09-15,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T11:12:10.441141+00:00 +2025-09-15,Sweep AI,all,0,,20260408T230245Z,2026-04-09T11:12:10.441141+00:00 +2025-09-15,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T11:12:10.441141+00:00 +2025-09-16,Aider,all,21,,20260408T230245Z,2026-04-09T16:23:55.799495+00:00 +2025-09-16,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T16:23:55.799495+00:00 +2025-09-16,ChatGPT,all,0,,20260408T230245Z,2026-04-09T16:23:55.799495+00:00 +2025-09-16,Claude Code,all,452,,20260408T230245Z,2026-04-09T16:23:55.799495+00:00 +2025-09-16,Cline,all,264,,20260408T230245Z,2026-04-09T16:23:55.799495+00:00 +2025-09-16,Codegen,all,19,,20260408T230245Z,2026-04-09T16:23:55.799495+00:00 +2025-09-16,Coderabbit,all,35,,20260408T230245Z,2026-04-09T16:23:55.799495+00:00 +2025-09-16,Copilot,all,38,,20260408T230245Z,2026-04-09T16:23:55.799495+00:00 +2025-09-16,Copilot SWE Agent,all,4380,,20260408T230245Z,2026-04-09T16:23:55.799495+00:00 +2025-09-16,Crush,all,0,,20260408T230245Z,2026-04-09T16:23:55.799495+00:00 +2025-09-16,Cursor,all,1702,,20260408T230245Z,2026-04-09T16:23:55.799495+00:00 +2025-09-16,DeepSource,all,7,,20260408T230245Z,2026-04-09T16:23:55.799495+00:00 +2025-09-16,Devin,all,34,,20260408T230245Z,2026-04-09T16:23:55.799495+00:00 +2025-09-16,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T16:23:55.799495+00:00 +2025-09-16,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T16:23:55.799495+00:00 +2025-09-16,Gru,all,0,,20260408T230245Z,2026-04-09T16:23:55.799495+00:00 +2025-09-16,Jules (Google),all,2172,,20260408T230245Z,2026-04-09T16:23:55.799495+00:00 +2025-09-16,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T16:23:55.799495+00:00 +2025-09-16,Kilo Code,all,0,,20260408T230245Z,2026-04-09T16:23:55.799495+00:00 +2025-09-16,Lovable,all,0,,20260408T230245Z,2026-04-09T16:23:55.799495+00:00 +2025-09-16,OpenAI Codex,all,9,,20260408T230245Z,2026-04-09T16:23:55.799495+00:00 +2025-09-16,OpenCode,all,0,,20260408T230245Z,2026-04-09T16:23:55.799495+00:00 +2025-09-16,OpenHands,all,168,,20260408T230245Z,2026-04-09T16:23:55.799495+00:00 +2025-09-16,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T16:23:55.799495+00:00 +2025-09-16,Roo Code,all,0,,20260408T230245Z,2026-04-09T16:23:55.799495+00:00 +2025-09-16,Sketch,all,0,,20260408T230245Z,2026-04-09T16:23:55.799495+00:00 +2025-09-16,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T16:23:55.799495+00:00 +2025-09-16,Sweep AI,all,0,,20260408T230245Z,2026-04-09T16:23:55.799495+00:00 +2025-09-16,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T16:23:55.799495+00:00 +2025-09-17,Aider,all,30,,20260408T230245Z,2026-04-09T16:26:07.610507+00:00 +2025-09-17,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T16:26:07.610507+00:00 +2025-09-17,ChatGPT,all,6,,20260408T230245Z,2026-04-09T16:26:07.610507+00:00 +2025-09-17,Claude Code,all,393,,20260408T230245Z,2026-04-09T16:26:07.610507+00:00 +2025-09-17,Cline,all,949,,20260408T230245Z,2026-04-09T16:26:07.610507+00:00 +2025-09-17,Codegen,all,39,,20260408T230245Z,2026-04-09T16:26:07.610507+00:00 +2025-09-17,Coderabbit,all,15,,20260408T230245Z,2026-04-09T16:26:07.610507+00:00 +2025-09-17,Copilot,all,71,,20260408T230245Z,2026-04-09T16:26:07.610507+00:00 +2025-09-17,Copilot SWE Agent,all,4465,1,20260408T230245Z,2026-04-09T16:26:07.610507+00:00 +2025-09-17,Crush,all,0,,20260408T230245Z,2026-04-09T16:26:07.610507+00:00 +2025-09-17,Cursor,all,1427,,20260408T230245Z,2026-04-09T16:26:07.610507+00:00 +2025-09-17,DeepSource,all,36,,20260408T230245Z,2026-04-09T16:26:07.610507+00:00 +2025-09-17,Devin,all,16,,20260408T230245Z,2026-04-09T16:26:07.610507+00:00 +2025-09-17,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T16:26:07.610507+00:00 +2025-09-17,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T16:26:07.610507+00:00 +2025-09-17,Gru,all,0,,20260408T230245Z,2026-04-09T16:26:07.610507+00:00 +2025-09-17,Jules (Google),all,1971,,20260408T230245Z,2026-04-09T16:26:07.610507+00:00 +2025-09-17,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T16:26:07.610507+00:00 +2025-09-17,Kilo Code,all,0,,20260408T230245Z,2026-04-09T16:26:07.610507+00:00 +2025-09-17,Lovable,all,0,,20260408T230245Z,2026-04-09T16:26:07.610507+00:00 +2025-09-17,OpenAI Codex,all,10,,20260408T230245Z,2026-04-09T16:26:07.610507+00:00 +2025-09-17,OpenCode,all,0,,20260408T230245Z,2026-04-09T16:26:07.610507+00:00 +2025-09-17,OpenHands,all,109,,20260408T230245Z,2026-04-09T16:26:07.610507+00:00 +2025-09-17,Qwen Coder,all,8,,20260408T230245Z,2026-04-09T16:26:07.610507+00:00 +2025-09-17,Roo Code,all,0,,20260408T230245Z,2026-04-09T16:26:07.610507+00:00 +2025-09-17,Sketch,all,0,,20260408T230245Z,2026-04-09T16:26:07.610507+00:00 +2025-09-17,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T16:26:07.610507+00:00 +2025-09-17,Sweep AI,all,0,,20260408T230245Z,2026-04-09T16:26:07.610507+00:00 +2025-09-17,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T16:26:07.610507+00:00 +2025-09-18,Aider,all,67,,20260408T230245Z,2026-04-09T16:28:19.994142+00:00 +2025-09-18,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T16:28:19.994142+00:00 +2025-09-18,ChatGPT,all,21,,20260408T230245Z,2026-04-09T16:28:19.994142+00:00 +2025-09-18,Claude Code,all,303,,20260408T230245Z,2026-04-09T16:28:19.994142+00:00 +2025-09-18,Cline,all,483,,20260408T230245Z,2026-04-09T16:28:19.994142+00:00 +2025-09-18,Codegen,all,69,,20260408T230245Z,2026-04-09T16:28:19.994142+00:00 +2025-09-18,Coderabbit,all,7,,20260408T230245Z,2026-04-09T16:28:19.994142+00:00 +2025-09-18,Copilot,all,29,,20260408T230245Z,2026-04-09T16:28:19.994142+00:00 +2025-09-18,Copilot SWE Agent,all,3701,,20260408T230245Z,2026-04-09T16:28:19.994142+00:00 +2025-09-18,Crush,all,0,,20260408T230245Z,2026-04-09T16:28:19.994142+00:00 +2025-09-18,Cursor,all,1555,,20260408T230245Z,2026-04-09T16:28:19.994142+00:00 +2025-09-18,DeepSource,all,42,,20260408T230245Z,2026-04-09T16:28:19.994142+00:00 +2025-09-18,Devin,all,28,,20260408T230245Z,2026-04-09T16:28:19.994142+00:00 +2025-09-18,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T16:28:19.994142+00:00 +2025-09-18,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T16:28:19.994142+00:00 +2025-09-18,Gru,all,0,,20260408T230245Z,2026-04-09T16:28:19.994142+00:00 +2025-09-18,Jules (Google),all,1822,,20260408T230245Z,2026-04-09T16:28:19.994142+00:00 +2025-09-18,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T16:28:19.994142+00:00 +2025-09-18,Kilo Code,all,1,,20260408T230245Z,2026-04-09T16:28:19.994142+00:00 +2025-09-18,Lovable,all,0,,20260408T230245Z,2026-04-09T16:28:19.994142+00:00 +2025-09-18,OpenAI Codex,all,22,,20260408T230245Z,2026-04-09T16:28:19.994142+00:00 +2025-09-18,OpenCode,all,0,,20260408T230245Z,2026-04-09T16:28:19.994142+00:00 +2025-09-18,OpenHands,all,123,,20260408T230245Z,2026-04-09T16:28:19.994142+00:00 +2025-09-18,Qwen Coder,all,6,,20260408T230245Z,2026-04-09T16:28:19.994142+00:00 +2025-09-18,Roo Code,all,0,,20260408T230245Z,2026-04-09T16:28:19.994142+00:00 +2025-09-18,Sketch,all,0,,20260408T230245Z,2026-04-09T16:28:19.994142+00:00 +2025-09-18,Sourcery AI,all,0,1,20260408T230245Z,2026-04-09T16:28:19.994142+00:00 +2025-09-18,Sweep AI,all,0,,20260408T230245Z,2026-04-09T16:28:19.994142+00:00 +2025-09-18,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T16:28:19.994142+00:00 +2025-09-19,Aider,all,54,,20260408T230245Z,2026-04-09T16:30:33.018248+00:00 +2025-09-19,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T16:30:33.018248+00:00 +2025-09-19,ChatGPT,all,7,,20260408T230245Z,2026-04-09T16:30:33.018248+00:00 +2025-09-19,Claude Code,all,424,,20260408T230245Z,2026-04-09T16:30:33.018248+00:00 +2025-09-19,Cline,all,255,,20260408T230245Z,2026-04-09T16:30:33.018248+00:00 +2025-09-19,Codegen,all,12,,20260408T230245Z,2026-04-09T16:30:33.018248+00:00 +2025-09-19,Coderabbit,all,10,,20260408T230245Z,2026-04-09T16:30:33.018248+00:00 +2025-09-19,Copilot,all,40,1,20260408T230245Z,2026-04-09T16:30:33.018248+00:00 +2025-09-19,Copilot SWE Agent,all,3808,,20260408T230245Z,2026-04-09T16:30:33.018248+00:00 +2025-09-19,Crush,all,0,,20260408T230245Z,2026-04-09T16:30:33.018248+00:00 +2025-09-19,Cursor,all,1152,,20260408T230245Z,2026-04-09T16:30:33.018248+00:00 +2025-09-19,DeepSource,all,33,,20260408T230245Z,2026-04-09T16:30:33.018248+00:00 +2025-09-19,Devin,all,33,,20260408T230245Z,2026-04-09T16:30:33.018248+00:00 +2025-09-19,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T16:30:33.018248+00:00 +2025-09-19,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T16:30:33.018248+00:00 +2025-09-19,Gru,all,0,,20260408T230245Z,2026-04-09T16:30:33.018248+00:00 +2025-09-19,Jules (Google),all,1817,,20260408T230245Z,2026-04-09T16:30:33.018248+00:00 +2025-09-19,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T16:30:33.018248+00:00 +2025-09-19,Kilo Code,all,0,,20260408T230245Z,2026-04-09T16:30:33.018248+00:00 +2025-09-19,Lovable,all,0,,20260408T230245Z,2026-04-09T16:30:33.018248+00:00 +2025-09-19,OpenAI Codex,all,4,,20260408T230245Z,2026-04-09T16:30:33.018248+00:00 +2025-09-19,OpenCode,all,0,,20260408T230245Z,2026-04-09T16:30:33.018248+00:00 +2025-09-19,OpenHands,all,63,,20260408T230245Z,2026-04-09T16:30:33.018248+00:00 +2025-09-19,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T16:30:33.018248+00:00 +2025-09-19,Roo Code,all,0,,20260408T230245Z,2026-04-09T16:30:33.018248+00:00 +2025-09-19,Sketch,all,0,,20260408T230245Z,2026-04-09T16:30:33.018248+00:00 +2025-09-19,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T16:30:33.018248+00:00 +2025-09-19,Sweep AI,all,0,,20260408T230245Z,2026-04-09T16:30:33.018248+00:00 +2025-09-19,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T16:30:33.018248+00:00 +2025-09-20,Aider,all,19,,20260408T230245Z,2026-04-09T16:32:45.088150+00:00 +2025-09-20,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T16:32:45.088150+00:00 +2025-09-20,ChatGPT,all,3,,20260408T230245Z,2026-04-09T16:32:45.088150+00:00 +2025-09-20,Claude Code,all,315,,20260408T230245Z,2026-04-09T16:32:45.088150+00:00 +2025-09-20,Cline,all,575,,20260408T230245Z,2026-04-09T16:32:45.088150+00:00 +2025-09-20,Codegen,all,35,,20260408T230245Z,2026-04-09T16:32:45.088150+00:00 +2025-09-20,Coderabbit,all,5,,20260408T230245Z,2026-04-09T16:32:45.088150+00:00 +2025-09-20,Copilot,all,19,,20260408T230245Z,2026-04-09T16:32:45.088150+00:00 +2025-09-20,Copilot SWE Agent,all,3688,,20260408T230245Z,2026-04-09T16:32:45.088150+00:00 +2025-09-20,Crush,all,0,,20260408T230245Z,2026-04-09T16:32:45.088150+00:00 +2025-09-20,Cursor,all,818,,20260408T230245Z,2026-04-09T16:32:45.088150+00:00 +2025-09-20,DeepSource,all,25,,20260408T230245Z,2026-04-09T16:32:45.088150+00:00 +2025-09-20,Devin,all,20,,20260408T230245Z,2026-04-09T16:32:45.088150+00:00 +2025-09-20,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T16:32:45.088150+00:00 +2025-09-20,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T16:32:45.088150+00:00 +2025-09-20,Gru,all,0,,20260408T230245Z,2026-04-09T16:32:45.088150+00:00 +2025-09-20,Jules (Google),all,1501,,20260408T230245Z,2026-04-09T16:32:45.088150+00:00 +2025-09-20,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T16:32:45.088150+00:00 +2025-09-20,Kilo Code,all,0,,20260408T230245Z,2026-04-09T16:32:45.088150+00:00 +2025-09-20,Lovable,all,1,,20260408T230245Z,2026-04-09T16:32:45.088150+00:00 +2025-09-20,OpenAI Codex,all,5,,20260408T230245Z,2026-04-09T16:32:45.088150+00:00 +2025-09-20,OpenCode,all,0,,20260408T230245Z,2026-04-09T16:32:45.088150+00:00 +2025-09-20,OpenHands,all,86,,20260408T230245Z,2026-04-09T16:32:45.088150+00:00 +2025-09-20,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T16:32:45.088150+00:00 +2025-09-20,Roo Code,all,0,,20260408T230245Z,2026-04-09T16:32:45.088150+00:00 +2025-09-20,Sketch,all,0,,20260408T230245Z,2026-04-09T16:32:45.088150+00:00 +2025-09-20,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T16:32:45.088150+00:00 +2025-09-20,Sweep AI,all,0,,20260408T230245Z,2026-04-09T16:32:45.088150+00:00 +2025-09-20,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T16:32:45.088150+00:00 +2025-09-21,Aider,all,62,,20260408T230245Z,2026-04-09T16:34:56.852303+00:00 +2025-09-21,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T16:34:56.852303+00:00 +2025-09-21,ChatGPT,all,0,,20260408T230245Z,2026-04-09T16:34:56.852303+00:00 +2025-09-21,Claude Code,all,256,,20260408T230245Z,2026-04-09T16:34:56.852303+00:00 +2025-09-21,Cline,all,478,,20260408T230245Z,2026-04-09T16:34:56.852303+00:00 +2025-09-21,Codegen,all,36,,20260408T230245Z,2026-04-09T16:34:56.852303+00:00 +2025-09-21,Coderabbit,all,7,,20260408T230245Z,2026-04-09T16:34:56.852303+00:00 +2025-09-21,Copilot,all,28,,20260408T230245Z,2026-04-09T16:34:56.852303+00:00 +2025-09-21,Copilot SWE Agent,all,3765,,20260408T230245Z,2026-04-09T16:34:56.852303+00:00 +2025-09-21,Crush,all,0,,20260408T230245Z,2026-04-09T16:34:56.852303+00:00 +2025-09-21,Cursor,all,922,,20260408T230245Z,2026-04-09T16:34:56.852303+00:00 +2025-09-21,DeepSource,all,11,,20260408T230245Z,2026-04-09T16:34:56.852303+00:00 +2025-09-21,Devin,all,11,,20260408T230245Z,2026-04-09T16:34:56.852303+00:00 +2025-09-21,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T16:34:56.852303+00:00 +2025-09-21,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T16:34:56.852303+00:00 +2025-09-21,Gru,all,0,,20260408T230245Z,2026-04-09T16:34:56.852303+00:00 +2025-09-21,Jules (Google),all,1877,1,20260408T230245Z,2026-04-09T16:34:56.852303+00:00 +2025-09-21,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T16:34:56.852303+00:00 +2025-09-21,Kilo Code,all,0,,20260408T230245Z,2026-04-09T16:34:56.852303+00:00 +2025-09-21,Lovable,all,0,,20260408T230245Z,2026-04-09T16:34:56.852303+00:00 +2025-09-21,OpenAI Codex,all,2,,20260408T230245Z,2026-04-09T16:34:56.852303+00:00 +2025-09-21,OpenCode,all,0,,20260408T230245Z,2026-04-09T16:34:56.852303+00:00 +2025-09-21,OpenHands,all,72,,20260408T230245Z,2026-04-09T16:34:56.852303+00:00 +2025-09-21,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T16:34:56.852303+00:00 +2025-09-21,Roo Code,all,0,,20260408T230245Z,2026-04-09T16:34:56.852303+00:00 +2025-09-21,Sketch,all,0,,20260408T230245Z,2026-04-09T16:34:56.852303+00:00 +2025-09-21,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T16:34:56.852303+00:00 +2025-09-21,Sweep AI,all,0,,20260408T230245Z,2026-04-09T16:34:56.852303+00:00 +2025-09-21,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T16:34:56.852303+00:00 +2025-09-22,Aider,all,104,,20260408T230245Z,2026-04-09T16:37:09.158781+00:00 +2025-09-22,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T16:37:09.158781+00:00 +2025-09-22,ChatGPT,all,0,,20260408T230245Z,2026-04-09T16:37:09.158781+00:00 +2025-09-22,Claude Code,all,273,,20260408T230245Z,2026-04-09T16:37:09.158781+00:00 +2025-09-22,Cline,all,243,,20260408T230245Z,2026-04-09T16:37:09.158781+00:00 +2025-09-22,Codegen,all,21,,20260408T230245Z,2026-04-09T16:37:09.158781+00:00 +2025-09-22,Coderabbit,all,4,,20260408T230245Z,2026-04-09T16:37:09.158781+00:00 +2025-09-22,Copilot,all,44,,20260408T230245Z,2026-04-09T16:37:09.158781+00:00 +2025-09-22,Copilot SWE Agent,all,4205,,20260408T230245Z,2026-04-09T16:37:09.158781+00:00 +2025-09-22,Crush,all,0,,20260408T230245Z,2026-04-09T16:37:09.158781+00:00 +2025-09-22,Cursor,all,931,,20260408T230245Z,2026-04-09T16:37:09.158781+00:00 +2025-09-22,DeepSource,all,34,1,20260408T230245Z,2026-04-09T16:37:09.158781+00:00 +2025-09-22,Devin,all,20,,20260408T230245Z,2026-04-09T16:37:09.158781+00:00 +2025-09-22,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T16:37:09.158781+00:00 +2025-09-22,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T16:37:09.158781+00:00 +2025-09-22,Gru,all,0,,20260408T230245Z,2026-04-09T16:37:09.158781+00:00 +2025-09-22,Jules (Google),all,1857,1,20260408T230245Z,2026-04-09T16:37:09.158781+00:00 +2025-09-22,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T16:37:09.158781+00:00 +2025-09-22,Kilo Code,all,6,,20260408T230245Z,2026-04-09T16:37:09.158781+00:00 +2025-09-22,Lovable,all,0,,20260408T230245Z,2026-04-09T16:37:09.158781+00:00 +2025-09-22,OpenAI Codex,all,0,,20260408T230245Z,2026-04-09T16:37:09.158781+00:00 +2025-09-22,OpenCode,all,0,,20260408T230245Z,2026-04-09T16:37:09.158781+00:00 +2025-09-22,OpenHands,all,55,,20260408T230245Z,2026-04-09T16:37:09.158781+00:00 +2025-09-22,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T16:37:09.158781+00:00 +2025-09-22,Roo Code,all,0,,20260408T230245Z,2026-04-09T16:37:09.158781+00:00 +2025-09-22,Sketch,all,0,,20260408T230245Z,2026-04-09T16:37:09.158781+00:00 +2025-09-22,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T16:37:09.158781+00:00 +2025-09-22,Sweep AI,all,0,,20260408T230245Z,2026-04-09T16:37:09.158781+00:00 +2025-09-22,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T16:37:09.158781+00:00 +2025-09-23,Aider,all,134,,20260408T230245Z,2026-04-09T16:40:21.850050+00:00 +2025-09-23,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T16:40:21.850050+00:00 +2025-09-23,ChatGPT,all,2,,20260408T230245Z,2026-04-09T16:40:21.850050+00:00 +2025-09-23,Claude Code,all,288,1,20260408T230245Z,2026-04-09T16:40:21.850050+00:00 +2025-09-23,Cline,all,704,,20260408T230245Z,2026-04-09T16:40:21.850050+00:00 +2025-09-23,Codegen,all,8,,20260408T230245Z,2026-04-09T16:40:21.850050+00:00 +2025-09-23,Coderabbit,all,9,,20260408T230245Z,2026-04-09T16:40:21.850050+00:00 +2025-09-23,Copilot,all,56,1,20260408T230245Z,2026-04-09T16:40:21.850050+00:00 +2025-09-23,Copilot SWE Agent,all,4246,1,20260408T230245Z,2026-04-09T16:40:21.850050+00:00 +2025-09-23,Crush,all,0,,20260408T230245Z,2026-04-09T16:40:21.850050+00:00 +2025-09-23,Cursor,all,1102,,20260408T230245Z,2026-04-09T16:40:21.850050+00:00 +2025-09-23,DeepSource,all,17,,20260408T230245Z,2026-04-09T16:40:21.850050+00:00 +2025-09-23,Devin,all,27,,20260408T230245Z,2026-04-09T16:40:21.850050+00:00 +2025-09-23,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T16:40:21.850050+00:00 +2025-09-23,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T16:40:21.850050+00:00 +2025-09-23,Gru,all,0,,20260408T230245Z,2026-04-09T16:40:21.850050+00:00 +2025-09-23,Jules (Google),all,1938,,20260408T230245Z,2026-04-09T16:40:21.850050+00:00 +2025-09-23,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T16:40:21.850050+00:00 +2025-09-23,Kilo Code,all,0,,20260408T230245Z,2026-04-09T16:40:21.850050+00:00 +2025-09-23,Lovable,all,0,,20260408T230245Z,2026-04-09T16:40:21.850050+00:00 +2025-09-23,OpenAI Codex,all,7,,20260408T230245Z,2026-04-09T16:40:21.850050+00:00 +2025-09-23,OpenCode,all,0,,20260408T230245Z,2026-04-09T16:40:21.850050+00:00 +2025-09-23,OpenHands,all,47,,20260408T230245Z,2026-04-09T16:40:21.850050+00:00 +2025-09-23,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T16:40:21.850050+00:00 +2025-09-23,Roo Code,all,0,,20260408T230245Z,2026-04-09T16:40:21.850050+00:00 +2025-09-23,Sketch,all,0,,20260408T230245Z,2026-04-09T16:40:21.850050+00:00 +2025-09-23,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T16:40:21.850050+00:00 +2025-09-23,Sweep AI,all,0,,20260408T230245Z,2026-04-09T16:40:21.850050+00:00 +2025-09-23,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T16:40:21.850050+00:00 +2025-09-24,Aider,all,48,,20260408T230245Z,2026-04-09T16:43:34.039575+00:00 +2025-09-24,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T16:43:34.039575+00:00 +2025-09-24,ChatGPT,all,3,,20260408T230245Z,2026-04-09T16:43:34.039575+00:00 +2025-09-24,Claude Code,all,224,,20260408T230245Z,2026-04-09T16:43:34.039575+00:00 +2025-09-24,Cline,all,35,,20260408T230245Z,2026-04-09T16:43:34.039575+00:00 +2025-09-24,Codegen,all,25,,20260408T230245Z,2026-04-09T16:43:34.039575+00:00 +2025-09-24,Coderabbit,all,15,,20260408T230245Z,2026-04-09T16:43:34.039575+00:00 +2025-09-24,Copilot,all,108,,20260408T230245Z,2026-04-09T16:43:34.039575+00:00 +2025-09-24,Copilot SWE Agent,all,4804,,20260408T230245Z,2026-04-09T16:43:34.039575+00:00 +2025-09-24,Crush,all,0,,20260408T230245Z,2026-04-09T16:43:34.039575+00:00 +2025-09-24,Cursor,all,1186,,20260408T230245Z,2026-04-09T16:43:34.039575+00:00 +2025-09-24,DeepSource,all,21,,20260408T230245Z,2026-04-09T16:43:34.039575+00:00 +2025-09-24,Devin,all,49,,20260408T230245Z,2026-04-09T16:43:34.039575+00:00 +2025-09-24,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T16:43:34.039575+00:00 +2025-09-24,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T16:43:34.039575+00:00 +2025-09-24,Gru,all,0,,20260408T230245Z,2026-04-09T16:43:34.039575+00:00 +2025-09-24,Jules (Google),all,2152,,20260408T230245Z,2026-04-09T16:43:34.039575+00:00 +2025-09-24,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T16:43:34.039575+00:00 +2025-09-24,Kilo Code,all,0,,20260408T230245Z,2026-04-09T16:43:34.039575+00:00 +2025-09-24,Lovable,all,0,,20260408T230245Z,2026-04-09T16:43:34.039575+00:00 +2025-09-24,OpenAI Codex,all,0,,20260408T230245Z,2026-04-09T16:43:34.039575+00:00 +2025-09-24,OpenCode,all,0,,20260408T230245Z,2026-04-09T16:43:34.039575+00:00 +2025-09-24,OpenHands,all,48,,20260408T230245Z,2026-04-09T16:43:34.039575+00:00 +2025-09-24,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T16:43:34.039575+00:00 +2025-09-24,Roo Code,all,0,,20260408T230245Z,2026-04-09T16:43:34.039575+00:00 +2025-09-24,Sketch,all,0,,20260408T230245Z,2026-04-09T16:43:34.039575+00:00 +2025-09-24,Sourcery AI,all,1,,20260408T230245Z,2026-04-09T16:43:34.039575+00:00 +2025-09-24,Sweep AI,all,0,,20260408T230245Z,2026-04-09T16:43:34.039575+00:00 +2025-09-24,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T16:43:34.039575+00:00 +2025-09-25,Aider,all,63,,20260408T230245Z,2026-04-09T16:45:45.185171+00:00 +2025-09-25,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T16:45:45.185171+00:00 +2025-09-25,ChatGPT,all,1,,20260408T230245Z,2026-04-09T16:45:45.185171+00:00 +2025-09-25,Claude Code,all,228,,20260408T230245Z,2026-04-09T16:45:45.185171+00:00 +2025-09-25,Cline,all,15,,20260408T230245Z,2026-04-09T16:45:45.185171+00:00 +2025-09-25,Codegen,all,16,,20260408T230245Z,2026-04-09T16:45:45.185171+00:00 +2025-09-25,Coderabbit,all,13,,20260408T230245Z,2026-04-09T16:45:45.185171+00:00 +2025-09-25,Copilot,all,99,,20260408T230245Z,2026-04-09T16:45:45.185171+00:00 +2025-09-25,Copilot SWE Agent,all,4761,,20260408T230245Z,2026-04-09T16:45:45.185171+00:00 +2025-09-25,Crush,all,0,,20260408T230245Z,2026-04-09T16:45:45.185171+00:00 +2025-09-25,Cursor,all,1383,,20260408T230245Z,2026-04-09T16:45:45.185171+00:00 +2025-09-25,DeepSource,all,36,,20260408T230245Z,2026-04-09T16:45:45.185171+00:00 +2025-09-25,Devin,all,19,,20260408T230245Z,2026-04-09T16:45:45.185171+00:00 +2025-09-25,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T16:45:45.185171+00:00 +2025-09-25,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T16:45:45.185171+00:00 +2025-09-25,Gru,all,0,,20260408T230245Z,2026-04-09T16:45:45.185171+00:00 +2025-09-25,Jules (Google),all,1977,1,20260408T230245Z,2026-04-09T16:45:45.185171+00:00 +2025-09-25,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T16:45:45.185171+00:00 +2025-09-25,Kilo Code,all,2,,20260408T230245Z,2026-04-09T16:45:45.185171+00:00 +2025-09-25,Lovable,all,0,,20260408T230245Z,2026-04-09T16:45:45.185171+00:00 +2025-09-25,OpenAI Codex,all,0,,20260408T230245Z,2026-04-09T16:45:45.185171+00:00 +2025-09-25,OpenCode,all,0,,20260408T230245Z,2026-04-09T16:45:45.185171+00:00 +2025-09-25,OpenHands,all,67,,20260408T230245Z,2026-04-09T16:45:45.185171+00:00 +2025-09-25,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T16:45:45.185171+00:00 +2025-09-25,Roo Code,all,0,,20260408T230245Z,2026-04-09T16:45:45.185171+00:00 +2025-09-25,Sketch,all,0,,20260408T230245Z,2026-04-09T16:45:45.185171+00:00 +2025-09-25,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T16:45:45.185171+00:00 +2025-09-25,Sweep AI,all,0,,20260408T230245Z,2026-04-09T16:45:45.185171+00:00 +2025-09-25,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T16:45:45.185171+00:00 +2025-09-26,Aider,all,80,,20260408T230245Z,2026-04-09T16:47:56.971477+00:00 +2025-09-26,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T16:47:56.971477+00:00 +2025-09-26,ChatGPT,all,1,,20260408T230245Z,2026-04-09T16:47:56.971477+00:00 +2025-09-26,Claude Code,all,263,,20260408T230245Z,2026-04-09T16:47:56.971477+00:00 +2025-09-26,Cline,all,504,,20260408T230245Z,2026-04-09T16:47:56.971477+00:00 +2025-09-26,Codegen,all,12,,20260408T230245Z,2026-04-09T16:47:56.971477+00:00 +2025-09-26,Coderabbit,all,16,,20260408T230245Z,2026-04-09T16:47:56.971477+00:00 +2025-09-26,Copilot,all,55,,20260408T230245Z,2026-04-09T16:47:56.971477+00:00 +2025-09-26,Copilot SWE Agent,all,4261,,20260408T230245Z,2026-04-09T16:47:56.971477+00:00 +2025-09-26,Crush,all,0,,20260408T230245Z,2026-04-09T16:47:56.971477+00:00 +2025-09-26,Cursor,all,1155,,20260408T230245Z,2026-04-09T16:47:56.971477+00:00 +2025-09-26,DeepSource,all,99,,20260408T230245Z,2026-04-09T16:47:56.971477+00:00 +2025-09-26,Devin,all,22,,20260408T230245Z,2026-04-09T16:47:56.971477+00:00 +2025-09-26,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T16:47:56.971477+00:00 +2025-09-26,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T16:47:56.971477+00:00 +2025-09-26,Gru,all,0,,20260408T230245Z,2026-04-09T16:47:56.971477+00:00 +2025-09-26,Jules (Google),all,2573,,20260408T230245Z,2026-04-09T16:47:56.971477+00:00 +2025-09-26,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T16:47:56.971477+00:00 +2025-09-26,Kilo Code,all,0,,20260408T230245Z,2026-04-09T16:47:56.971477+00:00 +2025-09-26,Lovable,all,0,,20260408T230245Z,2026-04-09T16:47:56.971477+00:00 +2025-09-26,OpenAI Codex,all,0,,20260408T230245Z,2026-04-09T16:47:56.971477+00:00 +2025-09-26,OpenCode,all,0,,20260408T230245Z,2026-04-09T16:47:56.971477+00:00 +2025-09-26,OpenHands,all,44,,20260408T230245Z,2026-04-09T16:47:56.971477+00:00 +2025-09-26,Qwen Coder,all,1,,20260408T230245Z,2026-04-09T16:47:56.971477+00:00 +2025-09-26,Roo Code,all,0,,20260408T230245Z,2026-04-09T16:47:56.971477+00:00 +2025-09-26,Sketch,all,0,,20260408T230245Z,2026-04-09T16:47:56.971477+00:00 +2025-09-26,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T16:47:56.971477+00:00 +2025-09-26,Sweep AI,all,0,,20260408T230245Z,2026-04-09T16:47:56.971477+00:00 +2025-09-26,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T16:47:56.971477+00:00 +2025-09-27,Aider,all,42,,20260408T230245Z,2026-04-09T16:50:08.131213+00:00 +2025-09-27,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T16:50:08.131213+00:00 +2025-09-27,ChatGPT,all,0,,20260408T230245Z,2026-04-09T16:50:08.131213+00:00 +2025-09-27,Claude Code,all,134,,20260408T230245Z,2026-04-09T16:50:08.131213+00:00 +2025-09-27,Cline,all,296,,20260408T230245Z,2026-04-09T16:50:08.131213+00:00 +2025-09-27,Codegen,all,30,,20260408T230245Z,2026-04-09T16:50:08.131213+00:00 +2025-09-27,Coderabbit,all,6,,20260408T230245Z,2026-04-09T16:50:08.131213+00:00 +2025-09-27,Copilot,all,44,1,20260408T230245Z,2026-04-09T16:50:08.131213+00:00 +2025-09-27,Copilot SWE Agent,all,4316,,20260408T230245Z,2026-04-09T16:50:08.131213+00:00 +2025-09-27,Crush,all,0,,20260408T230245Z,2026-04-09T16:50:08.131213+00:00 +2025-09-27,Cursor,all,983,,20260408T230245Z,2026-04-09T16:50:08.131213+00:00 +2025-09-27,DeepSource,all,53,,20260408T230245Z,2026-04-09T16:50:08.131213+00:00 +2025-09-27,Devin,all,38,,20260408T230245Z,2026-04-09T16:50:08.131213+00:00 +2025-09-27,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T16:50:08.131213+00:00 +2025-09-27,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T16:50:08.131213+00:00 +2025-09-27,Gru,all,0,,20260408T230245Z,2026-04-09T16:50:08.131213+00:00 +2025-09-27,Jules (Google),all,2279,,20260408T230245Z,2026-04-09T16:50:08.131213+00:00 +2025-09-27,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T16:50:08.131213+00:00 +2025-09-27,Kilo Code,all,1,,20260408T230245Z,2026-04-09T16:50:08.131213+00:00 +2025-09-27,Lovable,all,0,,20260408T230245Z,2026-04-09T16:50:08.131213+00:00 +2025-09-27,OpenAI Codex,all,0,,20260408T230245Z,2026-04-09T16:50:08.131213+00:00 +2025-09-27,OpenCode,all,0,,20260408T230245Z,2026-04-09T16:50:08.131213+00:00 +2025-09-27,OpenHands,all,83,,20260408T230245Z,2026-04-09T16:50:08.131213+00:00 +2025-09-27,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T16:50:08.131213+00:00 +2025-09-27,Roo Code,all,0,,20260408T230245Z,2026-04-09T16:50:08.131213+00:00 +2025-09-27,Sketch,all,0,,20260408T230245Z,2026-04-09T16:50:08.131213+00:00 +2025-09-27,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T16:50:08.131213+00:00 +2025-09-27,Sweep AI,all,0,,20260408T230245Z,2026-04-09T16:50:08.131213+00:00 +2025-09-27,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T16:50:08.131213+00:00 +2025-09-28,Aider,all,25,,20260408T230245Z,2026-04-09T16:52:19.629371+00:00 +2025-09-28,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T16:52:19.629371+00:00 +2025-09-28,ChatGPT,all,0,,20260408T230245Z,2026-04-09T16:52:19.629371+00:00 +2025-09-28,Claude Code,all,152,,20260408T230245Z,2026-04-09T16:52:19.629371+00:00 +2025-09-28,Cline,all,1,,20260408T230245Z,2026-04-09T16:52:19.629371+00:00 +2025-09-28,Codegen,all,30,,20260408T230245Z,2026-04-09T16:52:19.629371+00:00 +2025-09-28,Coderabbit,all,10,,20260408T230245Z,2026-04-09T16:52:19.629371+00:00 +2025-09-28,Copilot,all,81,,20260408T230245Z,2026-04-09T16:52:19.629371+00:00 +2025-09-28,Copilot SWE Agent,all,4464,,20260408T230245Z,2026-04-09T16:52:19.629371+00:00 +2025-09-28,Crush,all,0,,20260408T230245Z,2026-04-09T16:52:19.629371+00:00 +2025-09-28,Cursor,all,996,,20260408T230245Z,2026-04-09T16:52:19.629371+00:00 +2025-09-28,DeepSource,all,22,,20260408T230245Z,2026-04-09T16:52:19.629371+00:00 +2025-09-28,Devin,all,23,1,20260408T230245Z,2026-04-09T16:52:19.629371+00:00 +2025-09-28,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T16:52:19.629371+00:00 +2025-09-28,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T16:52:19.629371+00:00 +2025-09-28,Gru,all,0,,20260408T230245Z,2026-04-09T16:52:19.629371+00:00 +2025-09-28,Jules (Google),all,2282,,20260408T230245Z,2026-04-09T16:52:19.629371+00:00 +2025-09-28,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T16:52:19.629371+00:00 +2025-09-28,Kilo Code,all,0,,20260408T230245Z,2026-04-09T16:52:19.629371+00:00 +2025-09-28,Lovable,all,0,,20260408T230245Z,2026-04-09T16:52:19.629371+00:00 +2025-09-28,OpenAI Codex,all,0,,20260408T230245Z,2026-04-09T16:52:19.629371+00:00 +2025-09-28,OpenCode,all,0,,20260408T230245Z,2026-04-09T16:52:19.629371+00:00 +2025-09-28,OpenHands,all,73,,20260408T230245Z,2026-04-09T16:52:19.629371+00:00 +2025-09-28,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T16:52:19.629371+00:00 +2025-09-28,Roo Code,all,0,,20260408T230245Z,2026-04-09T16:52:19.629371+00:00 +2025-09-28,Sketch,all,0,,20260408T230245Z,2026-04-09T16:52:19.629371+00:00 +2025-09-28,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T16:52:19.629371+00:00 +2025-09-28,Sweep AI,all,0,,20260408T230245Z,2026-04-09T16:52:19.629371+00:00 +2025-09-28,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T16:52:19.629371+00:00 +2025-09-29,Aider,all,78,,20260408T230245Z,2026-04-09T16:54:30.003680+00:00 +2025-09-29,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T16:54:30.003680+00:00 +2025-09-29,ChatGPT,all,0,1,20260408T230245Z,2026-04-09T16:54:30.003680+00:00 +2025-09-29,Claude Code,all,198,,20260408T230245Z,2026-04-09T16:54:30.003680+00:00 +2025-09-29,Cline,all,499,,20260408T230245Z,2026-04-09T16:54:30.003680+00:00 +2025-09-29,Codegen,all,69,,20260408T230245Z,2026-04-09T16:54:30.003680+00:00 +2025-09-29,Coderabbit,all,13,,20260408T230245Z,2026-04-09T16:54:30.003680+00:00 +2025-09-29,Copilot,all,59,,20260408T230245Z,2026-04-09T16:54:30.003680+00:00 +2025-09-29,Copilot SWE Agent,all,4740,1,20260408T230245Z,2026-04-09T16:54:30.003680+00:00 +2025-09-29,Crush,all,0,,20260408T230245Z,2026-04-09T16:54:30.003680+00:00 +2025-09-29,Cursor,all,960,,20260408T230245Z,2026-04-09T16:54:30.003680+00:00 +2025-09-29,DeepSource,all,63,,20260408T230245Z,2026-04-09T16:54:30.003680+00:00 +2025-09-29,Devin,all,43,,20260408T230245Z,2026-04-09T16:54:30.003680+00:00 +2025-09-29,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T16:54:30.003680+00:00 +2025-09-29,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T16:54:30.003680+00:00 +2025-09-29,Gru,all,0,,20260408T230245Z,2026-04-09T16:54:30.003680+00:00 +2025-09-29,Jules (Google),all,2097,,20260408T230245Z,2026-04-09T16:54:30.003680+00:00 +2025-09-29,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T16:54:30.003680+00:00 +2025-09-29,Kilo Code,all,0,,20260408T230245Z,2026-04-09T16:54:30.003680+00:00 +2025-09-29,Lovable,all,0,,20260408T230245Z,2026-04-09T16:54:30.003680+00:00 +2025-09-29,OpenAI Codex,all,9,,20260408T230245Z,2026-04-09T16:54:30.003680+00:00 +2025-09-29,OpenCode,all,0,,20260408T230245Z,2026-04-09T16:54:30.003680+00:00 +2025-09-29,OpenHands,all,130,,20260408T230245Z,2026-04-09T16:54:30.003680+00:00 +2025-09-29,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T16:54:30.003680+00:00 +2025-09-29,Roo Code,all,0,,20260408T230245Z,2026-04-09T16:54:30.003680+00:00 +2025-09-29,Sketch,all,0,,20260408T230245Z,2026-04-09T16:54:30.003680+00:00 +2025-09-29,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T16:54:30.003680+00:00 +2025-09-29,Sweep AI,all,0,,20260408T230245Z,2026-04-09T16:54:30.003680+00:00 +2025-09-29,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T16:54:30.003680+00:00 +2025-09-30,Aider,all,37,,20260408T230245Z,2026-04-09T16:57:41.741667+00:00 +2025-09-30,Amp (Sourcegraph),all,0,,20260408T230245Z,2026-04-09T16:57:41.741667+00:00 +2025-09-30,ChatGPT,all,2,,20260408T230245Z,2026-04-09T16:57:41.741667+00:00 +2025-09-30,Claude Code,all,316,,20260408T230245Z,2026-04-09T16:57:41.741667+00:00 +2025-09-30,Cline,all,703,,20260408T230245Z,2026-04-09T16:57:41.741667+00:00 +2025-09-30,Codegen,all,95,,20260408T230245Z,2026-04-09T16:57:41.741667+00:00 +2025-09-30,Coderabbit,all,19,,20260408T230245Z,2026-04-09T16:57:41.741667+00:00 +2025-09-30,Copilot,all,61,,20260408T230245Z,2026-04-09T16:57:41.741667+00:00 +2025-09-30,Copilot SWE Agent,all,5899,,20260408T230245Z,2026-04-09T16:57:41.741667+00:00 +2025-09-30,Crush,all,0,,20260408T230245Z,2026-04-09T16:57:41.741667+00:00 +2025-09-30,Cursor,all,997,,20260408T230245Z,2026-04-09T16:57:41.741667+00:00 +2025-09-30,DeepSource,all,98,,20260408T230245Z,2026-04-09T16:57:41.741667+00:00 +2025-09-30,Devin,all,10,1,20260408T230245Z,2026-04-09T16:57:41.741667+00:00 +2025-09-30,Gemini CLI,all,0,,20260408T230245Z,2026-04-09T16:57:41.741667+00:00 +2025-09-30,Gemini Code Assist,all,0,,20260408T230245Z,2026-04-09T16:57:41.741667+00:00 +2025-09-30,Gru,all,0,,20260408T230245Z,2026-04-09T16:57:41.741667+00:00 +2025-09-30,Jules (Google),all,2232,,20260408T230245Z,2026-04-09T16:57:41.741667+00:00 +2025-09-30,Junie (JetBrains),all,0,,20260408T230245Z,2026-04-09T16:57:41.741667+00:00 +2025-09-30,Kilo Code,all,0,,20260408T230245Z,2026-04-09T16:57:41.741667+00:00 +2025-09-30,Lovable,all,0,,20260408T230245Z,2026-04-09T16:57:41.741667+00:00 +2025-09-30,OpenAI Codex,all,19,,20260408T230245Z,2026-04-09T16:57:41.741667+00:00 +2025-09-30,OpenCode,all,0,,20260408T230245Z,2026-04-09T16:57:41.741667+00:00 +2025-09-30,OpenHands,all,52,,20260408T230245Z,2026-04-09T16:57:41.741667+00:00 +2025-09-30,Qwen Coder,all,0,,20260408T230245Z,2026-04-09T16:57:41.741667+00:00 +2025-09-30,Roo Code,all,0,,20260408T230245Z,2026-04-09T16:57:41.741667+00:00 +2025-09-30,Sketch,all,0,,20260408T230245Z,2026-04-09T16:57:41.741667+00:00 +2025-09-30,Sourcery AI,all,0,,20260408T230245Z,2026-04-09T16:57:41.741667+00:00 +2025-09-30,Sweep AI,all,0,,20260408T230245Z,2026-04-09T16:57:41.741667+00:00 +2025-09-30,Warp (Oz Agent),all,0,,20260408T230245Z,2026-04-09T16:57:41.741667+00:00 +2025-10-01,Aider,all,92,,20260408T193250Z,2026-04-08T19:32:50.690544+00:00 +2025-10-01,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T19:32:50.690544+00:00 +2025-10-01,ChatGPT,all,1,,20260408T193250Z,2026-04-08T19:32:50.690544+00:00 +2025-10-01,Claude Code,all,242,,20260408T193250Z,2026-04-08T19:32:50.690544+00:00 +2025-10-01,Cline,all,55,,20260408T193250Z,2026-04-08T19:32:50.690544+00:00 +2025-10-01,Codegen,all,82,,20260408T193250Z,2026-04-08T19:32:50.690544+00:00 +2025-10-01,Coderabbit,all,11,,20260408T193250Z,2026-04-08T19:32:50.690544+00:00 +2025-10-01,Copilot,all,75,,20260408T193250Z,2026-04-08T19:32:50.690544+00:00 +2025-10-01,Copilot SWE Agent,all,6303,,20260408T193250Z,2026-04-08T19:32:50.690544+00:00 +2025-10-01,Crush,all,0,,20260408T193250Z,2026-04-08T19:32:50.690544+00:00 +2025-10-01,Cursor,all,1009,,20260408T193250Z,2026-04-08T19:32:50.690544+00:00 +2025-10-01,DeepSource,all,31,,20260408T193250Z,2026-04-08T19:32:50.690544+00:00 +2025-10-01,Devin,all,74,,20260408T193250Z,2026-04-08T19:32:50.690544+00:00 +2025-10-01,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T19:32:50.690544+00:00 +2025-10-01,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T19:32:50.690544+00:00 +2025-10-01,Gru,all,0,,20260408T193250Z,2026-04-08T19:32:50.690544+00:00 +2025-10-01,Jules (Google),all,2317,,20260408T193250Z,2026-04-08T19:32:50.690544+00:00 +2025-10-01,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T19:32:50.690544+00:00 +2025-10-01,Kilo Code,all,13,,20260408T193250Z,2026-04-08T19:32:50.690544+00:00 +2025-10-01,Lovable,all,0,,20260408T193250Z,2026-04-08T19:32:50.690544+00:00 +2025-10-01,OpenAI Codex,all,22,,20260408T193250Z,2026-04-08T19:32:50.690544+00:00 +2025-10-01,OpenCode,all,0,,20260408T193250Z,2026-04-08T19:32:50.690544+00:00 +2025-10-01,OpenHands,all,69,,20260408T193250Z,2026-04-08T19:32:50.690544+00:00 +2025-10-01,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T19:32:50.690544+00:00 +2025-10-01,Roo Code,all,0,,20260408T193250Z,2026-04-08T19:32:50.690544+00:00 +2025-10-01,Sketch,all,0,,20260408T193250Z,2026-04-08T19:32:50.690544+00:00 +2025-10-01,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T19:32:50.690544+00:00 +2025-10-01,Sweep AI,all,0,,20260408T193250Z,2026-04-08T19:32:50.690544+00:00 +2025-10-01,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T19:32:50.690544+00:00 +2025-10-02,Aider,all,38,,20260408T193250Z,2026-04-08T19:35:03.003219+00:00 +2025-10-02,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T19:35:03.003219+00:00 +2025-10-02,ChatGPT,all,1,,20260408T193250Z,2026-04-08T19:35:03.003219+00:00 +2025-10-02,Claude Code,all,285,,20260408T193250Z,2026-04-08T19:35:03.003219+00:00 +2025-10-02,Cline,all,938,,20260408T193250Z,2026-04-08T19:35:03.003219+00:00 +2025-10-02,Codegen,all,17,,20260408T193250Z,2026-04-08T19:35:03.003219+00:00 +2025-10-02,Coderabbit,all,22,,20260408T193250Z,2026-04-08T19:35:03.003219+00:00 +2025-10-02,Copilot,all,55,,20260408T193250Z,2026-04-08T19:35:03.003219+00:00 +2025-10-02,Copilot SWE Agent,all,6815,,20260408T193250Z,2026-04-08T19:35:03.003219+00:00 +2025-10-02,Crush,all,0,,20260408T193250Z,2026-04-08T19:35:03.003219+00:00 +2025-10-02,Cursor,all,1057,,20260408T193250Z,2026-04-08T19:35:03.003219+00:00 +2025-10-02,DeepSource,all,11,,20260408T193250Z,2026-04-08T19:35:03.003219+00:00 +2025-10-02,Devin,all,18,,20260408T193250Z,2026-04-08T19:35:03.003219+00:00 +2025-10-02,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T19:35:03.003219+00:00 +2025-10-02,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T19:35:03.003219+00:00 +2025-10-02,Gru,all,0,,20260408T193250Z,2026-04-08T19:35:03.003219+00:00 +2025-10-02,Jules (Google),all,2029,1,20260408T193250Z,2026-04-08T19:35:03.003219+00:00 +2025-10-02,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T19:35:03.003219+00:00 +2025-10-02,Kilo Code,all,0,,20260408T193250Z,2026-04-08T19:35:03.003219+00:00 +2025-10-02,Lovable,all,0,,20260408T193250Z,2026-04-08T19:35:03.003219+00:00 +2025-10-02,OpenAI Codex,all,16,,20260408T193250Z,2026-04-08T19:35:03.003219+00:00 +2025-10-02,OpenCode,all,0,,20260408T193250Z,2026-04-08T19:35:03.003219+00:00 +2025-10-02,OpenHands,all,67,,20260408T193250Z,2026-04-08T19:35:03.003219+00:00 +2025-10-02,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T19:35:03.003219+00:00 +2025-10-02,Roo Code,all,0,,20260408T193250Z,2026-04-08T19:35:03.003219+00:00 +2025-10-02,Sketch,all,0,,20260408T193250Z,2026-04-08T19:35:03.003219+00:00 +2025-10-02,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T19:35:03.003219+00:00 +2025-10-02,Sweep AI,all,0,,20260408T193250Z,2026-04-08T19:35:03.003219+00:00 +2025-10-02,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T19:35:03.003219+00:00 +2025-10-03,Aider,all,64,,20260408T193250Z,2026-04-08T19:37:14.148630+00:00 +2025-10-03,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T19:37:14.148630+00:00 +2025-10-03,ChatGPT,all,0,,20260408T193250Z,2026-04-08T19:37:14.148630+00:00 +2025-10-03,Claude Code,all,364,,20260408T193250Z,2026-04-08T19:37:14.148630+00:00 +2025-10-03,Cline,all,346,,20260408T193250Z,2026-04-08T19:37:14.148630+00:00 +2025-10-03,Codegen,all,16,,20260408T193250Z,2026-04-08T19:37:14.148630+00:00 +2025-10-03,Coderabbit,all,17,,20260408T193250Z,2026-04-08T19:37:14.148630+00:00 +2025-10-03,Copilot,all,65,,20260408T193250Z,2026-04-08T19:37:14.148630+00:00 +2025-10-03,Copilot SWE Agent,all,7343,,20260408T193250Z,2026-04-08T19:37:14.148630+00:00 +2025-10-03,Crush,all,0,,20260408T193250Z,2026-04-08T19:37:14.148630+00:00 +2025-10-03,Cursor,all,1203,,20260408T193250Z,2026-04-08T19:37:14.148630+00:00 +2025-10-03,DeepSource,all,18,,20260408T193250Z,2026-04-08T19:37:14.148630+00:00 +2025-10-03,Devin,all,35,,20260408T193250Z,2026-04-08T19:37:14.148630+00:00 +2025-10-03,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T19:37:14.148630+00:00 +2025-10-03,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T19:37:14.148630+00:00 +2025-10-03,Gru,all,0,,20260408T193250Z,2026-04-08T19:37:14.148630+00:00 +2025-10-03,Jules (Google),all,1812,,20260408T193250Z,2026-04-08T19:37:14.148630+00:00 +2025-10-03,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T19:37:14.148630+00:00 +2025-10-03,Kilo Code,all,1,,20260408T193250Z,2026-04-08T19:37:14.148630+00:00 +2025-10-03,Lovable,all,13,,20260408T193250Z,2026-04-08T19:37:14.148630+00:00 +2025-10-03,OpenAI Codex,all,9,,20260408T193250Z,2026-04-08T19:37:14.148630+00:00 +2025-10-03,OpenCode,all,0,,20260408T193250Z,2026-04-08T19:37:14.148630+00:00 +2025-10-03,OpenHands,all,129,,20260408T193250Z,2026-04-08T19:37:14.148630+00:00 +2025-10-03,Qwen Coder,all,4,,20260408T193250Z,2026-04-08T19:37:14.148630+00:00 +2025-10-03,Roo Code,all,0,,20260408T193250Z,2026-04-08T19:37:14.148630+00:00 +2025-10-03,Sketch,all,0,,20260408T193250Z,2026-04-08T19:37:14.148630+00:00 +2025-10-03,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T19:37:14.148630+00:00 +2025-10-03,Sweep AI,all,0,,20260408T193250Z,2026-04-08T19:37:14.148630+00:00 +2025-10-03,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T19:37:14.148630+00:00 +2025-10-04,Aider,all,0,,20260408T193250Z,2026-04-08T19:39:26.834273+00:00 +2025-10-04,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T19:39:26.834273+00:00 +2025-10-04,ChatGPT,all,2,,20260408T193250Z,2026-04-08T19:39:26.834273+00:00 +2025-10-04,Claude Code,all,172,,20260408T193250Z,2026-04-08T19:39:26.834273+00:00 +2025-10-04,Cline,all,286,,20260408T193250Z,2026-04-08T19:39:26.834273+00:00 +2025-10-04,Codegen,all,47,,20260408T193250Z,2026-04-08T19:39:26.834273+00:00 +2025-10-04,Coderabbit,all,13,,20260408T193250Z,2026-04-08T19:39:26.834273+00:00 +2025-10-04,Copilot,all,109,,20260408T193250Z,2026-04-08T19:39:26.834273+00:00 +2025-10-04,Copilot SWE Agent,all,6330,,20260408T193250Z,2026-04-08T19:39:26.834273+00:00 +2025-10-04,Crush,all,0,,20260408T193250Z,2026-04-08T19:39:26.834273+00:00 +2025-10-04,Cursor,all,1111,,20260408T193250Z,2026-04-08T19:39:26.834273+00:00 +2025-10-04,DeepSource,all,15,,20260408T193250Z,2026-04-08T19:39:26.834273+00:00 +2025-10-04,Devin,all,21,,20260408T193250Z,2026-04-08T19:39:26.834273+00:00 +2025-10-04,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T19:39:26.834273+00:00 +2025-10-04,Gemini Code Assist,all,0,1,20260408T193250Z,2026-04-08T19:39:26.834273+00:00 +2025-10-04,Gru,all,0,,20260408T193250Z,2026-04-08T19:39:26.834273+00:00 +2025-10-04,Jules (Google),all,1774,,20260408T193250Z,2026-04-08T19:39:26.834273+00:00 +2025-10-04,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T19:39:26.834273+00:00 +2025-10-04,Kilo Code,all,0,,20260408T193250Z,2026-04-08T19:39:26.834273+00:00 +2025-10-04,Lovable,all,0,,20260408T193250Z,2026-04-08T19:39:26.834273+00:00 +2025-10-04,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T19:39:26.834273+00:00 +2025-10-04,OpenCode,all,0,,20260408T193250Z,2026-04-08T19:39:26.834273+00:00 +2025-10-04,OpenHands,all,155,,20260408T193250Z,2026-04-08T19:39:26.834273+00:00 +2025-10-04,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T19:39:26.834273+00:00 +2025-10-04,Roo Code,all,0,,20260408T193250Z,2026-04-08T19:39:26.834273+00:00 +2025-10-04,Sketch,all,0,,20260408T193250Z,2026-04-08T19:39:26.834273+00:00 +2025-10-04,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T19:39:26.834273+00:00 +2025-10-04,Sweep AI,all,0,,20260408T193250Z,2026-04-08T19:39:26.834273+00:00 +2025-10-04,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T19:39:26.834273+00:00 +2025-10-05,Aider,all,0,,20260408T193250Z,2026-04-08T19:41:39.841929+00:00 +2025-10-05,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T19:41:39.841929+00:00 +2025-10-05,ChatGPT,all,4,,20260408T193250Z,2026-04-08T19:41:39.841929+00:00 +2025-10-05,Claude Code,all,160,,20260408T193250Z,2026-04-08T19:41:39.841929+00:00 +2025-10-05,Cline,all,463,,20260408T193250Z,2026-04-08T19:41:39.841929+00:00 +2025-10-05,Codegen,all,22,,20260408T193250Z,2026-04-08T19:41:39.841929+00:00 +2025-10-05,Coderabbit,all,13,,20260408T193250Z,2026-04-08T19:41:39.841929+00:00 +2025-10-05,Copilot,all,105,,20260408T193250Z,2026-04-08T19:41:39.841929+00:00 +2025-10-05,Copilot SWE Agent,all,7027,,20260408T193250Z,2026-04-08T19:41:39.841929+00:00 +2025-10-05,Crush,all,2,,20260408T193250Z,2026-04-08T19:41:39.841929+00:00 +2025-10-05,Cursor,all,1279,,20260408T193250Z,2026-04-08T19:41:39.841929+00:00 +2025-10-05,DeepSource,all,41,,20260408T193250Z,2026-04-08T19:41:39.841929+00:00 +2025-10-05,Devin,all,7,,20260408T193250Z,2026-04-08T19:41:39.841929+00:00 +2025-10-05,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T19:41:39.841929+00:00 +2025-10-05,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T19:41:39.841929+00:00 +2025-10-05,Gru,all,0,,20260408T193250Z,2026-04-08T19:41:39.841929+00:00 +2025-10-05,Jules (Google),all,1593,,20260408T193250Z,2026-04-08T19:41:39.841929+00:00 +2025-10-05,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T19:41:39.841929+00:00 +2025-10-05,Kilo Code,all,0,,20260408T193250Z,2026-04-08T19:41:39.841929+00:00 +2025-10-05,Lovable,all,0,,20260408T193250Z,2026-04-08T19:41:39.841929+00:00 +2025-10-05,OpenAI Codex,all,15,,20260408T193250Z,2026-04-08T19:41:39.841929+00:00 +2025-10-05,OpenCode,all,0,,20260408T193250Z,2026-04-08T19:41:39.841929+00:00 +2025-10-05,OpenHands,all,91,,20260408T193250Z,2026-04-08T19:41:39.841929+00:00 +2025-10-05,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T19:41:39.841929+00:00 +2025-10-05,Roo Code,all,0,,20260408T193250Z,2026-04-08T19:41:39.841929+00:00 +2025-10-05,Sketch,all,0,,20260408T193250Z,2026-04-08T19:41:39.841929+00:00 +2025-10-05,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T19:41:39.841929+00:00 +2025-10-05,Sweep AI,all,0,,20260408T193250Z,2026-04-08T19:41:39.841929+00:00 +2025-10-05,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T19:41:39.841929+00:00 +2025-10-06,Aider,all,0,,20260408T193250Z,2026-04-08T19:43:52.372928+00:00 +2025-10-06,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T19:43:52.372928+00:00 +2025-10-06,ChatGPT,all,0,,20260408T193250Z,2026-04-08T19:43:52.372928+00:00 +2025-10-06,Claude Code,all,392,,20260408T193250Z,2026-04-08T19:43:52.372928+00:00 +2025-10-06,Cline,all,244,,20260408T193250Z,2026-04-08T19:43:52.372928+00:00 +2025-10-06,Codegen,all,28,,20260408T193250Z,2026-04-08T19:43:52.372928+00:00 +2025-10-06,Coderabbit,all,16,,20260408T193250Z,2026-04-08T19:43:52.372928+00:00 +2025-10-06,Copilot,all,33,,20260408T193250Z,2026-04-08T19:43:52.372928+00:00 +2025-10-06,Copilot SWE Agent,all,6278,,20260408T193250Z,2026-04-08T19:43:52.372928+00:00 +2025-10-06,Crush,all,0,,20260408T193250Z,2026-04-08T19:43:52.372928+00:00 +2025-10-06,Cursor,all,2082,,20260408T193250Z,2026-04-08T19:43:52.372928+00:00 +2025-10-06,DeepSource,all,24,,20260408T193250Z,2026-04-08T19:43:52.372928+00:00 +2025-10-06,Devin,all,34,,20260408T193250Z,2026-04-08T19:43:52.372928+00:00 +2025-10-06,Gemini CLI,all,0,1,20260408T193250Z,2026-04-08T19:43:52.372928+00:00 +2025-10-06,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T19:43:52.372928+00:00 +2025-10-06,Gru,all,0,,20260408T193250Z,2026-04-08T19:43:52.372928+00:00 +2025-10-06,Jules (Google),all,1705,,20260408T193250Z,2026-04-08T19:43:52.372928+00:00 +2025-10-06,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T19:43:52.372928+00:00 +2025-10-06,Kilo Code,all,1,,20260408T193250Z,2026-04-08T19:43:52.372928+00:00 +2025-10-06,Lovable,all,0,,20260408T193250Z,2026-04-08T19:43:52.372928+00:00 +2025-10-06,OpenAI Codex,all,13,,20260408T193250Z,2026-04-08T19:43:52.372928+00:00 +2025-10-06,OpenCode,all,0,,20260408T193250Z,2026-04-08T19:43:52.372928+00:00 +2025-10-06,OpenHands,all,102,,20260408T193250Z,2026-04-08T19:43:52.372928+00:00 +2025-10-06,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T19:43:52.372928+00:00 +2025-10-06,Roo Code,all,0,,20260408T193250Z,2026-04-08T19:43:52.372928+00:00 +2025-10-06,Sketch,all,0,,20260408T193250Z,2026-04-08T19:43:52.372928+00:00 +2025-10-06,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T19:43:52.372928+00:00 +2025-10-06,Sweep AI,all,0,,20260408T193250Z,2026-04-08T19:43:52.372928+00:00 +2025-10-06,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T19:43:52.372928+00:00 +2025-10-07,Aider,all,12,,20260408T193250Z,2026-04-08T19:46:05.504838+00:00 +2025-10-07,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T19:46:05.504838+00:00 +2025-10-07,ChatGPT,all,0,,20260408T193250Z,2026-04-08T19:46:05.504838+00:00 +2025-10-07,Claude Code,all,248,,20260408T193250Z,2026-04-08T19:46:05.504838+00:00 +2025-10-07,Cline,all,712,,20260408T193250Z,2026-04-08T19:46:05.504838+00:00 +2025-10-07,Codegen,all,94,,20260408T193250Z,2026-04-08T19:46:05.504838+00:00 +2025-10-07,Coderabbit,all,20,,20260408T193250Z,2026-04-08T19:46:05.504838+00:00 +2025-10-07,Copilot,all,22,1,20260408T193250Z,2026-04-08T19:46:05.504838+00:00 +2025-10-07,Copilot SWE Agent,all,6646,,20260408T193250Z,2026-04-08T19:46:05.504838+00:00 +2025-10-07,Crush,all,0,,20260408T193250Z,2026-04-08T19:46:05.504838+00:00 +2025-10-07,Cursor,all,1975,,20260408T193250Z,2026-04-08T19:46:05.504838+00:00 +2025-10-07,DeepSource,all,21,,20260408T193250Z,2026-04-08T19:46:05.504838+00:00 +2025-10-07,Devin,all,53,,20260408T193250Z,2026-04-08T19:46:05.504838+00:00 +2025-10-07,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T19:46:05.504838+00:00 +2025-10-07,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T19:46:05.504838+00:00 +2025-10-07,Gru,all,0,,20260408T193250Z,2026-04-08T19:46:05.504838+00:00 +2025-10-07,Jules (Google),all,1836,,20260408T193250Z,2026-04-08T19:46:05.504838+00:00 +2025-10-07,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T19:46:05.504838+00:00 +2025-10-07,Kilo Code,all,1,,20260408T193250Z,2026-04-08T19:46:05.504838+00:00 +2025-10-07,Lovable,all,0,,20260408T193250Z,2026-04-08T19:46:05.504838+00:00 +2025-10-07,OpenAI Codex,all,10,,20260408T193250Z,2026-04-08T19:46:05.504838+00:00 +2025-10-07,OpenCode,all,0,,20260408T193250Z,2026-04-08T19:46:05.504838+00:00 +2025-10-07,OpenHands,all,130,,20260408T193250Z,2026-04-08T19:46:05.504838+00:00 +2025-10-07,Qwen Coder,all,1,,20260408T193250Z,2026-04-08T19:46:05.504838+00:00 +2025-10-07,Roo Code,all,0,,20260408T193250Z,2026-04-08T19:46:05.504838+00:00 +2025-10-07,Sketch,all,0,,20260408T193250Z,2026-04-08T19:46:05.504838+00:00 +2025-10-07,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T19:46:05.504838+00:00 +2025-10-07,Sweep AI,all,0,,20260408T193250Z,2026-04-08T19:46:05.504838+00:00 +2025-10-07,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T19:46:05.504838+00:00 +2025-10-08,Aider,all,26,,20260408T193250Z,2026-04-08T19:48:17.985508+00:00 +2025-10-08,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T19:48:17.985508+00:00 +2025-10-08,ChatGPT,all,0,,20260408T193250Z,2026-04-08T19:48:17.985508+00:00 +2025-10-08,Claude Code,all,267,,20260408T193250Z,2026-04-08T19:48:17.985508+00:00 +2025-10-08,Cline,all,13,,20260408T193250Z,2026-04-08T19:48:17.985508+00:00 +2025-10-08,Codegen,all,69,,20260408T193250Z,2026-04-08T19:48:17.985508+00:00 +2025-10-08,Coderabbit,all,24,,20260408T193250Z,2026-04-08T19:48:17.985508+00:00 +2025-10-08,Copilot,all,19,,20260408T193250Z,2026-04-08T19:48:17.985508+00:00 +2025-10-08,Copilot SWE Agent,all,7465,,20260408T193250Z,2026-04-08T19:48:17.985508+00:00 +2025-10-08,Crush,all,0,,20260408T193250Z,2026-04-08T19:48:17.985508+00:00 +2025-10-08,Cursor,all,1166,,20260408T193250Z,2026-04-08T19:48:17.985508+00:00 +2025-10-08,DeepSource,all,17,1,20260408T193250Z,2026-04-08T19:48:17.985508+00:00 +2025-10-08,Devin,all,48,,20260408T193250Z,2026-04-08T19:48:17.985508+00:00 +2025-10-08,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T19:48:17.985508+00:00 +2025-10-08,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T19:48:17.985508+00:00 +2025-10-08,Gru,all,0,,20260408T193250Z,2026-04-08T19:48:17.985508+00:00 +2025-10-08,Jules (Google),all,2039,,20260408T193250Z,2026-04-08T19:48:17.985508+00:00 +2025-10-08,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T19:48:17.985508+00:00 +2025-10-08,Kilo Code,all,17,,20260408T193250Z,2026-04-08T19:48:17.985508+00:00 +2025-10-08,Lovable,all,0,,20260408T193250Z,2026-04-08T19:48:17.985508+00:00 +2025-10-08,OpenAI Codex,all,1,,20260408T193250Z,2026-04-08T19:48:17.985508+00:00 +2025-10-08,OpenCode,all,0,,20260408T193250Z,2026-04-08T19:48:17.985508+00:00 +2025-10-08,OpenHands,all,174,,20260408T193250Z,2026-04-08T19:48:17.985508+00:00 +2025-10-08,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T19:48:17.985508+00:00 +2025-10-08,Roo Code,all,0,,20260408T193250Z,2026-04-08T19:48:17.985508+00:00 +2025-10-08,Sketch,all,0,,20260408T193250Z,2026-04-08T19:48:17.985508+00:00 +2025-10-08,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T19:48:17.985508+00:00 +2025-10-08,Sweep AI,all,3,,20260408T193250Z,2026-04-08T19:48:17.985508+00:00 +2025-10-08,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T19:48:17.985508+00:00 +2025-10-09,Aider,all,18,,20260408T193250Z,2026-04-08T19:50:29.771863+00:00 +2025-10-09,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T19:50:29.771863+00:00 +2025-10-09,ChatGPT,all,1,,20260408T193250Z,2026-04-08T19:50:29.771863+00:00 +2025-10-09,Claude Code,all,165,,20260408T193250Z,2026-04-08T19:50:29.771863+00:00 +2025-10-09,Cline,all,472,,20260408T193250Z,2026-04-08T19:50:29.771863+00:00 +2025-10-09,Codegen,all,57,,20260408T193250Z,2026-04-08T19:50:29.771863+00:00 +2025-10-09,Coderabbit,all,17,,20260408T193250Z,2026-04-08T19:50:29.771863+00:00 +2025-10-09,Copilot,all,64,,20260408T193250Z,2026-04-08T19:50:29.771863+00:00 +2025-10-09,Copilot SWE Agent,all,7129,,20260408T193250Z,2026-04-08T19:50:29.771863+00:00 +2025-10-09,Crush,all,0,,20260408T193250Z,2026-04-08T19:50:29.771863+00:00 +2025-10-09,Cursor,all,1494,,20260408T193250Z,2026-04-08T19:50:29.771863+00:00 +2025-10-09,DeepSource,all,27,,20260408T193250Z,2026-04-08T19:50:29.771863+00:00 +2025-10-09,Devin,all,48,,20260408T193250Z,2026-04-08T19:50:29.771863+00:00 +2025-10-09,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T19:50:29.771863+00:00 +2025-10-09,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T19:50:29.771863+00:00 +2025-10-09,Gru,all,0,,20260408T193250Z,2026-04-08T19:50:29.771863+00:00 +2025-10-09,Jules (Google),all,2418,,20260408T193250Z,2026-04-08T19:50:29.771863+00:00 +2025-10-09,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T19:50:29.771863+00:00 +2025-10-09,Kilo Code,all,8,,20260408T193250Z,2026-04-08T19:50:29.771863+00:00 +2025-10-09,Lovable,all,0,,20260408T193250Z,2026-04-08T19:50:29.771863+00:00 +2025-10-09,OpenAI Codex,all,13,,20260408T193250Z,2026-04-08T19:50:29.771863+00:00 +2025-10-09,OpenCode,all,0,,20260408T193250Z,2026-04-08T19:50:29.771863+00:00 +2025-10-09,OpenHands,all,115,,20260408T193250Z,2026-04-08T19:50:29.771863+00:00 +2025-10-09,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T19:50:29.771863+00:00 +2025-10-09,Roo Code,all,0,,20260408T193250Z,2026-04-08T19:50:29.771863+00:00 +2025-10-09,Sketch,all,0,,20260408T193250Z,2026-04-08T19:50:29.771863+00:00 +2025-10-09,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T19:50:29.771863+00:00 +2025-10-09,Sweep AI,all,4,,20260408T193250Z,2026-04-08T19:50:29.771863+00:00 +2025-10-09,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T19:50:29.771863+00:00 +2025-10-10,Aider,all,54,,20260408T193250Z,2026-04-08T19:52:42.287380+00:00 +2025-10-10,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T19:52:42.287380+00:00 +2025-10-10,ChatGPT,all,17,,20260408T193250Z,2026-04-08T19:52:42.287380+00:00 +2025-10-10,Claude Code,all,146,,20260408T193250Z,2026-04-08T19:52:42.287380+00:00 +2025-10-10,Cline,all,74,,20260408T193250Z,2026-04-08T19:52:42.287380+00:00 +2025-10-10,Codegen,all,68,,20260408T193250Z,2026-04-08T19:52:42.287380+00:00 +2025-10-10,Coderabbit,all,17,,20260408T193250Z,2026-04-08T19:52:42.287380+00:00 +2025-10-10,Copilot,all,92,,20260408T193250Z,2026-04-08T19:52:42.287380+00:00 +2025-10-10,Copilot SWE Agent,all,6948,,20260408T193250Z,2026-04-08T19:52:42.287380+00:00 +2025-10-10,Crush,all,0,,20260408T193250Z,2026-04-08T19:52:42.287380+00:00 +2025-10-10,Cursor,all,1435,,20260408T193250Z,2026-04-08T19:52:42.287380+00:00 +2025-10-10,DeepSource,all,24,,20260408T193250Z,2026-04-08T19:52:42.287380+00:00 +2025-10-10,Devin,all,47,,20260408T193250Z,2026-04-08T19:52:42.287380+00:00 +2025-10-10,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T19:52:42.287380+00:00 +2025-10-10,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T19:52:42.287380+00:00 +2025-10-10,Gru,all,0,,20260408T193250Z,2026-04-08T19:52:42.287380+00:00 +2025-10-10,Jules (Google),all,1936,,20260408T193250Z,2026-04-08T19:52:42.287380+00:00 +2025-10-10,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T19:52:42.287380+00:00 +2025-10-10,Kilo Code,all,13,,20260408T193250Z,2026-04-08T19:52:42.287380+00:00 +2025-10-10,Lovable,all,1,,20260408T193250Z,2026-04-08T19:52:42.287380+00:00 +2025-10-10,OpenAI Codex,all,12,,20260408T193250Z,2026-04-08T19:52:42.287380+00:00 +2025-10-10,OpenCode,all,0,,20260408T193250Z,2026-04-08T19:52:42.287380+00:00 +2025-10-10,OpenHands,all,56,,20260408T193250Z,2026-04-08T19:52:42.287380+00:00 +2025-10-10,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T19:52:42.287380+00:00 +2025-10-10,Roo Code,all,0,,20260408T193250Z,2026-04-08T19:52:42.287380+00:00 +2025-10-10,Sketch,all,0,,20260408T193250Z,2026-04-08T19:52:42.287380+00:00 +2025-10-10,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T19:52:42.287380+00:00 +2025-10-10,Sweep AI,all,0,,20260408T193250Z,2026-04-08T19:52:42.287380+00:00 +2025-10-10,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T19:52:42.287380+00:00 +2025-10-11,Aider,all,32,,20260408T193250Z,2026-04-08T19:54:55.470566+00:00 +2025-10-11,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T19:54:55.470566+00:00 +2025-10-11,ChatGPT,all,5,,20260408T193250Z,2026-04-08T19:54:55.470566+00:00 +2025-10-11,Claude Code,all,57,,20260408T193250Z,2026-04-08T19:54:55.470566+00:00 +2025-10-11,Cline,all,15,,20260408T193250Z,2026-04-08T19:54:55.470566+00:00 +2025-10-11,Codegen,all,25,,20260408T193250Z,2026-04-08T19:54:55.470566+00:00 +2025-10-11,Coderabbit,all,9,,20260408T193250Z,2026-04-08T19:54:55.470566+00:00 +2025-10-11,Copilot,all,81,,20260408T193250Z,2026-04-08T19:54:55.470566+00:00 +2025-10-11,Copilot SWE Agent,all,6837,,20260408T193250Z,2026-04-08T19:54:55.470566+00:00 +2025-10-11,Crush,all,0,,20260408T193250Z,2026-04-08T19:54:55.470566+00:00 +2025-10-11,Cursor,all,1593,,20260408T193250Z,2026-04-08T19:54:55.470566+00:00 +2025-10-11,DeepSource,all,7,,20260408T193250Z,2026-04-08T19:54:55.470566+00:00 +2025-10-11,Devin,all,27,,20260408T193250Z,2026-04-08T19:54:55.470566+00:00 +2025-10-11,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T19:54:55.470566+00:00 +2025-10-11,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T19:54:55.470566+00:00 +2025-10-11,Gru,all,0,,20260408T193250Z,2026-04-08T19:54:55.470566+00:00 +2025-10-11,Jules (Google),all,1623,1,20260408T193250Z,2026-04-08T19:54:55.470566+00:00 +2025-10-11,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T19:54:55.470566+00:00 +2025-10-11,Kilo Code,all,53,,20260408T193250Z,2026-04-08T19:54:55.470566+00:00 +2025-10-11,Lovable,all,0,,20260408T193250Z,2026-04-08T19:54:55.470566+00:00 +2025-10-11,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T19:54:55.470566+00:00 +2025-10-11,OpenCode,all,0,,20260408T193250Z,2026-04-08T19:54:55.470566+00:00 +2025-10-11,OpenHands,all,32,,20260408T193250Z,2026-04-08T19:54:55.470566+00:00 +2025-10-11,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T19:54:55.470566+00:00 +2025-10-11,Roo Code,all,0,,20260408T193250Z,2026-04-08T19:54:55.470566+00:00 +2025-10-11,Sketch,all,0,,20260408T193250Z,2026-04-08T19:54:55.470566+00:00 +2025-10-11,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T19:54:55.470566+00:00 +2025-10-11,Sweep AI,all,1,,20260408T193250Z,2026-04-08T19:54:55.470566+00:00 +2025-10-11,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T19:54:55.470566+00:00 +2025-10-12,Aider,all,10,,20260408T193250Z,2026-04-08T19:57:07.367635+00:00 +2025-10-12,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T19:57:07.367635+00:00 +2025-10-12,ChatGPT,all,9,,20260408T193250Z,2026-04-08T19:57:07.367635+00:00 +2025-10-12,Claude Code,all,148,,20260408T193250Z,2026-04-08T19:57:07.367635+00:00 +2025-10-12,Cline,all,467,,20260408T193250Z,2026-04-08T19:57:07.367635+00:00 +2025-10-12,Codegen,all,43,,20260408T193250Z,2026-04-08T19:57:07.367635+00:00 +2025-10-12,Coderabbit,all,11,,20260408T193250Z,2026-04-08T19:57:07.367635+00:00 +2025-10-12,Copilot,all,118,,20260408T193250Z,2026-04-08T19:57:07.367635+00:00 +2025-10-12,Copilot SWE Agent,all,6718,,20260408T193250Z,2026-04-08T19:57:07.367635+00:00 +2025-10-12,Crush,all,0,,20260408T193250Z,2026-04-08T19:57:07.367635+00:00 +2025-10-12,Cursor,all,1624,,20260408T193250Z,2026-04-08T19:57:07.367635+00:00 +2025-10-12,DeepSource,all,37,,20260408T193250Z,2026-04-08T19:57:07.367635+00:00 +2025-10-12,Devin,all,34,,20260408T193250Z,2026-04-08T19:57:07.367635+00:00 +2025-10-12,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T19:57:07.367635+00:00 +2025-10-12,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T19:57:07.367635+00:00 +2025-10-12,Gru,all,0,,20260408T193250Z,2026-04-08T19:57:07.367635+00:00 +2025-10-12,Jules (Google),all,2206,,20260408T193250Z,2026-04-08T19:57:07.367635+00:00 +2025-10-12,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T19:57:07.367635+00:00 +2025-10-12,Kilo Code,all,12,,20260408T193250Z,2026-04-08T19:57:07.367635+00:00 +2025-10-12,Lovable,all,0,,20260408T193250Z,2026-04-08T19:57:07.367635+00:00 +2025-10-12,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T19:57:07.367635+00:00 +2025-10-12,OpenCode,all,0,,20260408T193250Z,2026-04-08T19:57:07.367635+00:00 +2025-10-12,OpenHands,all,78,,20260408T193250Z,2026-04-08T19:57:07.367635+00:00 +2025-10-12,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T19:57:07.367635+00:00 +2025-10-12,Roo Code,all,0,,20260408T193250Z,2026-04-08T19:57:07.367635+00:00 +2025-10-12,Sketch,all,0,,20260408T193250Z,2026-04-08T19:57:07.367635+00:00 +2025-10-12,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T19:57:07.367635+00:00 +2025-10-12,Sweep AI,all,0,,20260408T193250Z,2026-04-08T19:57:07.367635+00:00 +2025-10-12,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T19:57:07.367635+00:00 +2025-10-13,Aider,all,12,,20260408T193250Z,2026-04-08T19:59:20.313212+00:00 +2025-10-13,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T19:59:20.313212+00:00 +2025-10-13,ChatGPT,all,2,,20260408T193250Z,2026-04-08T19:59:20.313212+00:00 +2025-10-13,Claude Code,all,211,,20260408T193250Z,2026-04-08T19:59:20.313212+00:00 +2025-10-13,Cline,all,811,,20260408T193250Z,2026-04-08T19:59:20.313212+00:00 +2025-10-13,Codegen,all,10,,20260408T193250Z,2026-04-08T19:59:20.313212+00:00 +2025-10-13,Coderabbit,all,20,,20260408T193250Z,2026-04-08T19:59:20.313212+00:00 +2025-10-13,Copilot,all,116,,20260408T193250Z,2026-04-08T19:59:20.313212+00:00 +2025-10-13,Copilot SWE Agent,all,6835,,20260408T193250Z,2026-04-08T19:59:20.313212+00:00 +2025-10-13,Crush,all,0,,20260408T193250Z,2026-04-08T19:59:20.313212+00:00 +2025-10-13,Cursor,all,1669,,20260408T193250Z,2026-04-08T19:59:20.313212+00:00 +2025-10-13,DeepSource,all,13,,20260408T193250Z,2026-04-08T19:59:20.313212+00:00 +2025-10-13,Devin,all,51,,20260408T193250Z,2026-04-08T19:59:20.313212+00:00 +2025-10-13,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T19:59:20.313212+00:00 +2025-10-13,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T19:59:20.313212+00:00 +2025-10-13,Gru,all,0,,20260408T193250Z,2026-04-08T19:59:20.313212+00:00 +2025-10-13,Jules (Google),all,1796,,20260408T193250Z,2026-04-08T19:59:20.313212+00:00 +2025-10-13,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T19:59:20.313212+00:00 +2025-10-13,Kilo Code,all,51,,20260408T193250Z,2026-04-08T19:59:20.313212+00:00 +2025-10-13,Lovable,all,0,,20260408T193250Z,2026-04-08T19:59:20.313212+00:00 +2025-10-13,OpenAI Codex,all,8,,20260408T193250Z,2026-04-08T19:59:20.313212+00:00 +2025-10-13,OpenCode,all,0,,20260408T193250Z,2026-04-08T19:59:20.313212+00:00 +2025-10-13,OpenHands,all,76,,20260408T193250Z,2026-04-08T19:59:20.313212+00:00 +2025-10-13,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T19:59:20.313212+00:00 +2025-10-13,Roo Code,all,0,,20260408T193250Z,2026-04-08T19:59:20.313212+00:00 +2025-10-13,Sketch,all,0,,20260408T193250Z,2026-04-08T19:59:20.313212+00:00 +2025-10-13,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T19:59:20.313212+00:00 +2025-10-13,Sweep AI,all,0,,20260408T193250Z,2026-04-08T19:59:20.313212+00:00 +2025-10-13,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T19:59:20.313212+00:00 +2025-10-14,Aider,all,1,,20260408T193250Z,2026-04-08T20:01:32.509359+00:00 +2025-10-14,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T20:01:32.509359+00:00 +2025-10-14,ChatGPT,all,0,,20260408T193250Z,2026-04-08T20:01:32.509359+00:00 +2025-10-14,Claude Code,all,283,,20260408T193250Z,2026-04-08T20:01:32.509359+00:00 +2025-10-14,Cline,all,822,,20260408T193250Z,2026-04-08T20:01:32.509359+00:00 +2025-10-14,Codegen,all,16,,20260408T193250Z,2026-04-08T20:01:32.509359+00:00 +2025-10-14,Coderabbit,all,11,,20260408T193250Z,2026-04-08T20:01:32.509359+00:00 +2025-10-14,Copilot,all,143,,20260408T193250Z,2026-04-08T20:01:32.509359+00:00 +2025-10-14,Copilot SWE Agent,all,7719,,20260408T193250Z,2026-04-08T20:01:32.509359+00:00 +2025-10-14,Crush,all,0,,20260408T193250Z,2026-04-08T20:01:32.509359+00:00 +2025-10-14,Cursor,all,1939,,20260408T193250Z,2026-04-08T20:01:32.509359+00:00 +2025-10-14,DeepSource,all,16,,20260408T193250Z,2026-04-08T20:01:32.509359+00:00 +2025-10-14,Devin,all,47,1,20260408T193250Z,2026-04-08T20:01:32.509359+00:00 +2025-10-14,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T20:01:32.509359+00:00 +2025-10-14,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T20:01:32.509359+00:00 +2025-10-14,Gru,all,0,,20260408T193250Z,2026-04-08T20:01:32.509359+00:00 +2025-10-14,Jules (Google),all,1905,,20260408T193250Z,2026-04-08T20:01:32.509359+00:00 +2025-10-14,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T20:01:32.509359+00:00 +2025-10-14,Kilo Code,all,29,,20260408T193250Z,2026-04-08T20:01:32.509359+00:00 +2025-10-14,Lovable,all,0,,20260408T193250Z,2026-04-08T20:01:32.509359+00:00 +2025-10-14,OpenAI Codex,all,15,,20260408T193250Z,2026-04-08T20:01:32.509359+00:00 +2025-10-14,OpenCode,all,0,,20260408T193250Z,2026-04-08T20:01:32.509359+00:00 +2025-10-14,OpenHands,all,139,,20260408T193250Z,2026-04-08T20:01:32.509359+00:00 +2025-10-14,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T20:01:32.509359+00:00 +2025-10-14,Roo Code,all,0,,20260408T193250Z,2026-04-08T20:01:32.509359+00:00 +2025-10-14,Sketch,all,0,,20260408T193250Z,2026-04-08T20:01:32.509359+00:00 +2025-10-14,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T20:01:32.509359+00:00 +2025-10-14,Sweep AI,all,0,,20260408T193250Z,2026-04-08T20:01:32.509359+00:00 +2025-10-14,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T20:01:32.509359+00:00 +2025-10-15,Aider,all,75,,20260408T193250Z,2026-04-08T20:03:44.125892+00:00 +2025-10-15,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T20:03:44.125892+00:00 +2025-10-15,ChatGPT,all,3,,20260408T193250Z,2026-04-08T20:03:44.125892+00:00 +2025-10-15,Claude Code,all,189,,20260408T193250Z,2026-04-08T20:03:44.125892+00:00 +2025-10-15,Cline,all,1315,,20260408T193250Z,2026-04-08T20:03:44.125892+00:00 +2025-10-15,Codegen,all,9,,20260408T193250Z,2026-04-08T20:03:44.125892+00:00 +2025-10-15,Coderabbit,all,23,,20260408T193250Z,2026-04-08T20:03:44.125892+00:00 +2025-10-15,Copilot,all,75,,20260408T193250Z,2026-04-08T20:03:44.125892+00:00 +2025-10-15,Copilot SWE Agent,all,7819,,20260408T193250Z,2026-04-08T20:03:44.125892+00:00 +2025-10-15,Crush,all,0,,20260408T193250Z,2026-04-08T20:03:44.125892+00:00 +2025-10-15,Cursor,all,1590,,20260408T193250Z,2026-04-08T20:03:44.125892+00:00 +2025-10-15,DeepSource,all,79,,20260408T193250Z,2026-04-08T20:03:44.125892+00:00 +2025-10-15,Devin,all,70,,20260408T193250Z,2026-04-08T20:03:44.125892+00:00 +2025-10-15,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T20:03:44.125892+00:00 +2025-10-15,Gemini Code Assist,all,5,,20260408T193250Z,2026-04-08T20:03:44.125892+00:00 +2025-10-15,Gru,all,0,,20260408T193250Z,2026-04-08T20:03:44.125892+00:00 +2025-10-15,Jules (Google),all,1968,,20260408T193250Z,2026-04-08T20:03:44.125892+00:00 +2025-10-15,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T20:03:44.125892+00:00 +2025-10-15,Kilo Code,all,27,,20260408T193250Z,2026-04-08T20:03:44.125892+00:00 +2025-10-15,Lovable,all,0,,20260408T193250Z,2026-04-08T20:03:44.125892+00:00 +2025-10-15,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T20:03:44.125892+00:00 +2025-10-15,OpenCode,all,0,,20260408T193250Z,2026-04-08T20:03:44.125892+00:00 +2025-10-15,OpenHands,all,95,,20260408T193250Z,2026-04-08T20:03:44.125892+00:00 +2025-10-15,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T20:03:44.125892+00:00 +2025-10-15,Roo Code,all,0,,20260408T193250Z,2026-04-08T20:03:44.125892+00:00 +2025-10-15,Sketch,all,0,,20260408T193250Z,2026-04-08T20:03:44.125892+00:00 +2025-10-15,Sourcery AI,all,2,,20260408T193250Z,2026-04-08T20:03:44.125892+00:00 +2025-10-15,Sweep AI,all,0,,20260408T193250Z,2026-04-08T20:03:44.125892+00:00 +2025-10-15,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T20:03:44.125892+00:00 +2025-10-16,Aider,all,21,,20260408T193250Z,2026-04-08T20:05:57.345223+00:00 +2025-10-16,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T20:05:57.345223+00:00 +2025-10-16,ChatGPT,all,1,,20260408T193250Z,2026-04-08T20:05:57.345223+00:00 +2025-10-16,Claude Code,all,328,,20260408T193250Z,2026-04-08T20:05:57.345223+00:00 +2025-10-16,Cline,all,2101,,20260408T193250Z,2026-04-08T20:05:57.345223+00:00 +2025-10-16,Codegen,all,31,,20260408T193250Z,2026-04-08T20:05:57.345223+00:00 +2025-10-16,Coderabbit,all,15,,20260408T193250Z,2026-04-08T20:05:57.345223+00:00 +2025-10-16,Copilot,all,90,,20260408T193250Z,2026-04-08T20:05:57.345223+00:00 +2025-10-16,Copilot SWE Agent,all,7506,,20260408T193250Z,2026-04-08T20:05:57.345223+00:00 +2025-10-16,Crush,all,0,,20260408T193250Z,2026-04-08T20:05:57.345223+00:00 +2025-10-16,Cursor,all,1321,,20260408T193250Z,2026-04-08T20:05:57.345223+00:00 +2025-10-16,DeepSource,all,29,,20260408T193250Z,2026-04-08T20:05:57.345223+00:00 +2025-10-16,Devin,all,58,,20260408T193250Z,2026-04-08T20:05:57.345223+00:00 +2025-10-16,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T20:05:57.345223+00:00 +2025-10-16,Gemini Code Assist,all,1,,20260408T193250Z,2026-04-08T20:05:57.345223+00:00 +2025-10-16,Gru,all,0,,20260408T193250Z,2026-04-08T20:05:57.345223+00:00 +2025-10-16,Jules (Google),all,1790,,20260408T193250Z,2026-04-08T20:05:57.345223+00:00 +2025-10-16,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T20:05:57.345223+00:00 +2025-10-16,Kilo Code,all,14,,20260408T193250Z,2026-04-08T20:05:57.345223+00:00 +2025-10-16,Lovable,all,0,,20260408T193250Z,2026-04-08T20:05:57.345223+00:00 +2025-10-16,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T20:05:57.345223+00:00 +2025-10-16,OpenCode,all,0,,20260408T193250Z,2026-04-08T20:05:57.345223+00:00 +2025-10-16,OpenHands,all,62,,20260408T193250Z,2026-04-08T20:05:57.345223+00:00 +2025-10-16,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T20:05:57.345223+00:00 +2025-10-16,Roo Code,all,0,,20260408T193250Z,2026-04-08T20:05:57.345223+00:00 +2025-10-16,Sketch,all,0,,20260408T193250Z,2026-04-08T20:05:57.345223+00:00 +2025-10-16,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T20:05:57.345223+00:00 +2025-10-16,Sweep AI,all,0,,20260408T193250Z,2026-04-08T20:05:57.345223+00:00 +2025-10-16,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T20:05:57.345223+00:00 +2025-10-17,Aider,all,13,,20260408T193250Z,2026-04-08T20:08:09.542749+00:00 +2025-10-17,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T20:08:09.542749+00:00 +2025-10-17,ChatGPT,all,0,,20260408T193250Z,2026-04-08T20:08:09.542749+00:00 +2025-10-17,Claude Code,all,228,,20260408T193250Z,2026-04-08T20:08:09.542749+00:00 +2025-10-17,Cline,all,358,,20260408T193250Z,2026-04-08T20:08:09.542749+00:00 +2025-10-17,Codegen,all,69,,20260408T193250Z,2026-04-08T20:08:09.542749+00:00 +2025-10-17,Coderabbit,all,7,,20260408T193250Z,2026-04-08T20:08:09.542749+00:00 +2025-10-17,Copilot,all,84,,20260408T193250Z,2026-04-08T20:08:09.542749+00:00 +2025-10-17,Copilot SWE Agent,all,6587,,20260408T193250Z,2026-04-08T20:08:09.542749+00:00 +2025-10-17,Crush,all,0,,20260408T193250Z,2026-04-08T20:08:09.542749+00:00 +2025-10-17,Cursor,all,1406,,20260408T193250Z,2026-04-08T20:08:09.542749+00:00 +2025-10-17,DeepSource,all,24,,20260408T193250Z,2026-04-08T20:08:09.542749+00:00 +2025-10-17,Devin,all,96,1,20260408T193250Z,2026-04-08T20:08:09.542749+00:00 +2025-10-17,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T20:08:09.542749+00:00 +2025-10-17,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T20:08:09.542749+00:00 +2025-10-17,Gru,all,0,,20260408T193250Z,2026-04-08T20:08:09.542749+00:00 +2025-10-17,Jules (Google),all,1671,,20260408T193250Z,2026-04-08T20:08:09.542749+00:00 +2025-10-17,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T20:08:09.542749+00:00 +2025-10-17,Kilo Code,all,10,,20260408T193250Z,2026-04-08T20:08:09.542749+00:00 +2025-10-17,Lovable,all,0,,20260408T193250Z,2026-04-08T20:08:09.542749+00:00 +2025-10-17,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T20:08:09.542749+00:00 +2025-10-17,OpenCode,all,0,,20260408T193250Z,2026-04-08T20:08:09.542749+00:00 +2025-10-17,OpenHands,all,46,,20260408T193250Z,2026-04-08T20:08:09.542749+00:00 +2025-10-17,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T20:08:09.542749+00:00 +2025-10-17,Roo Code,all,0,,20260408T193250Z,2026-04-08T20:08:09.542749+00:00 +2025-10-17,Sketch,all,0,,20260408T193250Z,2026-04-08T20:08:09.542749+00:00 +2025-10-17,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T20:08:09.542749+00:00 +2025-10-17,Sweep AI,all,0,,20260408T193250Z,2026-04-08T20:08:09.542749+00:00 +2025-10-17,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T20:08:09.542749+00:00 +2025-10-18,Aider,all,4,,20260408T193250Z,2026-04-08T20:10:21.681129+00:00 +2025-10-18,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T20:10:21.681129+00:00 +2025-10-18,ChatGPT,all,0,,20260408T193250Z,2026-04-08T20:10:21.681129+00:00 +2025-10-18,Claude Code,all,291,,20260408T193250Z,2026-04-08T20:10:21.681129+00:00 +2025-10-18,Cline,all,705,,20260408T193250Z,2026-04-08T20:10:21.681129+00:00 +2025-10-18,Codegen,all,45,,20260408T193250Z,2026-04-08T20:10:21.681129+00:00 +2025-10-18,Coderabbit,all,14,,20260408T193250Z,2026-04-08T20:10:21.681129+00:00 +2025-10-18,Copilot,all,87,,20260408T193250Z,2026-04-08T20:10:21.681129+00:00 +2025-10-18,Copilot SWE Agent,all,6198,1,20260408T193250Z,2026-04-08T20:10:21.681129+00:00 +2025-10-18,Crush,all,0,,20260408T193250Z,2026-04-08T20:10:21.681129+00:00 +2025-10-18,Cursor,all,1427,,20260408T193250Z,2026-04-08T20:10:21.681129+00:00 +2025-10-18,DeepSource,all,20,,20260408T193250Z,2026-04-08T20:10:21.681129+00:00 +2025-10-18,Devin,all,17,,20260408T193250Z,2026-04-08T20:10:21.681129+00:00 +2025-10-18,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T20:10:21.681129+00:00 +2025-10-18,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T20:10:21.681129+00:00 +2025-10-18,Gru,all,0,,20260408T193250Z,2026-04-08T20:10:21.681129+00:00 +2025-10-18,Jules (Google),all,1456,,20260408T193250Z,2026-04-08T20:10:21.681129+00:00 +2025-10-18,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T20:10:21.681129+00:00 +2025-10-18,Kilo Code,all,0,,20260408T193250Z,2026-04-08T20:10:21.681129+00:00 +2025-10-18,Lovable,all,0,,20260408T193250Z,2026-04-08T20:10:21.681129+00:00 +2025-10-18,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T20:10:21.681129+00:00 +2025-10-18,OpenCode,all,0,,20260408T193250Z,2026-04-08T20:10:21.681129+00:00 +2025-10-18,OpenHands,all,26,,20260408T193250Z,2026-04-08T20:10:21.681129+00:00 +2025-10-18,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T20:10:21.681129+00:00 +2025-10-18,Roo Code,all,0,,20260408T193250Z,2026-04-08T20:10:21.681129+00:00 +2025-10-18,Sketch,all,0,,20260408T193250Z,2026-04-08T20:10:21.681129+00:00 +2025-10-18,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T20:10:21.681129+00:00 +2025-10-18,Sweep AI,all,0,,20260408T193250Z,2026-04-08T20:10:21.681129+00:00 +2025-10-18,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T20:10:21.681129+00:00 +2025-10-19,Aider,all,5,,20260408T193250Z,2026-04-08T20:13:38.194574+00:00 +2025-10-19,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T20:13:38.194574+00:00 +2025-10-19,ChatGPT,all,0,,20260408T193250Z,2026-04-08T20:13:38.194574+00:00 +2025-10-19,Claude Code,all,276,,20260408T193250Z,2026-04-08T20:13:38.194574+00:00 +2025-10-19,Cline,all,689,,20260408T193250Z,2026-04-08T20:13:38.194574+00:00 +2025-10-19,Codegen,all,39,,20260408T193250Z,2026-04-08T20:13:38.194574+00:00 +2025-10-19,Coderabbit,all,7,,20260408T193250Z,2026-04-08T20:13:38.194574+00:00 +2025-10-19,Copilot,all,133,,20260408T193250Z,2026-04-08T20:13:38.194574+00:00 +2025-10-19,Copilot SWE Agent,all,6447,,20260408T193250Z,2026-04-08T20:13:38.194574+00:00 +2025-10-19,Crush,all,0,,20260408T193250Z,2026-04-08T20:13:38.194574+00:00 +2025-10-19,Cursor,all,1875,,20260408T193250Z,2026-04-08T20:13:38.194574+00:00 +2025-10-19,DeepSource,all,57,,20260408T193250Z,2026-04-08T20:13:38.194574+00:00 +2025-10-19,Devin,all,16,,20260408T193250Z,2026-04-08T20:13:38.194574+00:00 +2025-10-19,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T20:13:38.194574+00:00 +2025-10-19,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T20:13:38.194574+00:00 +2025-10-19,Gru,all,0,,20260408T193250Z,2026-04-08T20:13:38.194574+00:00 +2025-10-19,Jules (Google),all,1492,,20260408T193250Z,2026-04-08T20:13:38.194574+00:00 +2025-10-19,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T20:13:38.194574+00:00 +2025-10-19,Kilo Code,all,30,,20260408T193250Z,2026-04-08T20:13:38.194574+00:00 +2025-10-19,Lovable,all,0,,20260408T193250Z,2026-04-08T20:13:38.194574+00:00 +2025-10-19,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T20:13:38.194574+00:00 +2025-10-19,OpenCode,all,0,,20260408T193250Z,2026-04-08T20:13:38.194574+00:00 +2025-10-19,OpenHands,all,66,,20260408T193250Z,2026-04-08T20:13:38.194574+00:00 +2025-10-19,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T20:13:38.194574+00:00 +2025-10-19,Roo Code,all,0,,20260408T193250Z,2026-04-08T20:13:38.194574+00:00 +2025-10-19,Sketch,all,0,,20260408T193250Z,2026-04-08T20:13:38.194574+00:00 +2025-10-19,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T20:13:38.194574+00:00 +2025-10-19,Sweep AI,all,0,,20260408T193250Z,2026-04-08T20:13:38.194574+00:00 +2025-10-19,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T20:13:38.194574+00:00 +2025-10-20,Aider,all,40,,20260408T193250Z,2026-04-08T20:15:50.557390+00:00 +2025-10-20,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T20:15:50.557390+00:00 +2025-10-20,ChatGPT,all,0,,20260408T193250Z,2026-04-08T20:15:50.557390+00:00 +2025-10-20,Claude Code,all,1488,,20260408T193250Z,2026-04-08T20:15:50.557390+00:00 +2025-10-20,Cline,all,820,,20260408T193250Z,2026-04-08T20:15:50.557390+00:00 +2025-10-20,Codegen,all,59,,20260408T193250Z,2026-04-08T20:15:50.557390+00:00 +2025-10-20,Coderabbit,all,15,,20260408T193250Z,2026-04-08T20:15:50.557390+00:00 +2025-10-20,Copilot,all,151,,20260408T193250Z,2026-04-08T20:15:50.557390+00:00 +2025-10-20,Copilot SWE Agent,all,6813,,20260408T193250Z,2026-04-08T20:15:50.557390+00:00 +2025-10-20,Crush,all,0,,20260408T193250Z,2026-04-08T20:15:50.557390+00:00 +2025-10-20,Cursor,all,1394,,20260408T193250Z,2026-04-08T20:15:50.557390+00:00 +2025-10-20,DeepSource,all,21,,20260408T193250Z,2026-04-08T20:15:50.557390+00:00 +2025-10-20,Devin,all,39,,20260408T193250Z,2026-04-08T20:15:50.557390+00:00 +2025-10-20,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T20:15:50.557390+00:00 +2025-10-20,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T20:15:50.557390+00:00 +2025-10-20,Gru,all,0,,20260408T193250Z,2026-04-08T20:15:50.557390+00:00 +2025-10-20,Jules (Google),all,1715,,20260408T193250Z,2026-04-08T20:15:50.557390+00:00 +2025-10-20,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T20:15:50.557390+00:00 +2025-10-20,Kilo Code,all,54,,20260408T193250Z,2026-04-08T20:15:50.557390+00:00 +2025-10-20,Lovable,all,0,,20260408T193250Z,2026-04-08T20:15:50.557390+00:00 +2025-10-20,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T20:15:50.557390+00:00 +2025-10-20,OpenCode,all,0,,20260408T193250Z,2026-04-08T20:15:50.557390+00:00 +2025-10-20,OpenHands,all,95,,20260408T193250Z,2026-04-08T20:15:50.557390+00:00 +2025-10-20,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T20:15:50.557390+00:00 +2025-10-20,Roo Code,all,0,,20260408T193250Z,2026-04-08T20:15:50.557390+00:00 +2025-10-20,Sketch,all,0,,20260408T193250Z,2026-04-08T20:15:50.557390+00:00 +2025-10-20,Sourcery AI,all,2,,20260408T193250Z,2026-04-08T20:15:50.557390+00:00 +2025-10-20,Sweep AI,all,0,,20260408T193250Z,2026-04-08T20:15:50.557390+00:00 +2025-10-20,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T20:15:50.557390+00:00 +2025-10-21,Aider,all,9,,20260408T193250Z,2026-04-08T20:18:03.236233+00:00 +2025-10-21,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T20:18:03.236233+00:00 +2025-10-21,ChatGPT,all,0,1,20260408T193250Z,2026-04-08T20:18:03.236233+00:00 +2025-10-21,Claude Code,all,6589,,20260408T193250Z,2026-04-08T20:18:03.236233+00:00 +2025-10-21,Cline,all,1163,,20260408T193250Z,2026-04-08T20:18:03.236233+00:00 +2025-10-21,Codegen,all,55,,20260408T193250Z,2026-04-08T20:18:03.236233+00:00 +2025-10-21,Coderabbit,all,9,,20260408T193250Z,2026-04-08T20:18:03.236233+00:00 +2025-10-21,Copilot,all,168,,20260408T193250Z,2026-04-08T20:18:03.236233+00:00 +2025-10-21,Copilot SWE Agent,all,6998,,20260408T193250Z,2026-04-08T20:18:03.236233+00:00 +2025-10-21,Crush,all,0,,20260408T193250Z,2026-04-08T20:18:03.236233+00:00 +2025-10-21,Cursor,all,1650,,20260408T193250Z,2026-04-08T20:18:03.236233+00:00 +2025-10-21,DeepSource,all,26,,20260408T193250Z,2026-04-08T20:18:03.236233+00:00 +2025-10-21,Devin,all,33,,20260408T193250Z,2026-04-08T20:18:03.236233+00:00 +2025-10-21,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T20:18:03.236233+00:00 +2025-10-21,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T20:18:03.236233+00:00 +2025-10-21,Gru,all,0,,20260408T193250Z,2026-04-08T20:18:03.236233+00:00 +2025-10-21,Jules (Google),all,1851,,20260408T193250Z,2026-04-08T20:18:03.236233+00:00 +2025-10-21,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T20:18:03.236233+00:00 +2025-10-21,Kilo Code,all,30,,20260408T193250Z,2026-04-08T20:18:03.236233+00:00 +2025-10-21,Lovable,all,0,,20260408T193250Z,2026-04-08T20:18:03.236233+00:00 +2025-10-21,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T20:18:03.236233+00:00 +2025-10-21,OpenCode,all,0,,20260408T193250Z,2026-04-08T20:18:03.236233+00:00 +2025-10-21,OpenHands,all,68,,20260408T193250Z,2026-04-08T20:18:03.236233+00:00 +2025-10-21,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T20:18:03.236233+00:00 +2025-10-21,Roo Code,all,0,,20260408T193250Z,2026-04-08T20:18:03.236233+00:00 +2025-10-21,Sketch,all,0,,20260408T193250Z,2026-04-08T20:18:03.236233+00:00 +2025-10-21,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T20:18:03.236233+00:00 +2025-10-21,Sweep AI,all,0,,20260408T193250Z,2026-04-08T20:18:03.236233+00:00 +2025-10-21,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T20:18:03.236233+00:00 +2025-10-22,Aider,all,19,,20260408T193250Z,2026-04-08T20:20:15.559962+00:00 +2025-10-22,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T20:20:15.559962+00:00 +2025-10-22,ChatGPT,all,32,,20260408T193250Z,2026-04-08T20:20:15.559962+00:00 +2025-10-22,Claude Code,all,7159,,20260408T193250Z,2026-04-08T20:20:15.559962+00:00 +2025-10-22,Cline,all,2099,,20260408T193250Z,2026-04-08T20:20:15.559962+00:00 +2025-10-22,Codegen,all,14,,20260408T193250Z,2026-04-08T20:20:15.559962+00:00 +2025-10-22,Coderabbit,all,13,,20260408T193250Z,2026-04-08T20:20:15.559962+00:00 +2025-10-22,Copilot,all,59,,20260408T193250Z,2026-04-08T20:20:15.559962+00:00 +2025-10-22,Copilot SWE Agent,all,7321,,20260408T193250Z,2026-04-08T20:20:15.559962+00:00 +2025-10-22,Crush,all,0,,20260408T193250Z,2026-04-08T20:20:15.559962+00:00 +2025-10-22,Cursor,all,1215,,20260408T193250Z,2026-04-08T20:20:15.559962+00:00 +2025-10-22,DeepSource,all,16,,20260408T193250Z,2026-04-08T20:20:15.559962+00:00 +2025-10-22,Devin,all,46,1,20260408T193250Z,2026-04-08T20:20:15.559962+00:00 +2025-10-22,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T20:20:15.559962+00:00 +2025-10-22,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T20:20:15.559962+00:00 +2025-10-22,Gru,all,0,,20260408T193250Z,2026-04-08T20:20:15.559962+00:00 +2025-10-22,Jules (Google),all,1740,,20260408T193250Z,2026-04-08T20:20:15.559962+00:00 +2025-10-22,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T20:20:15.559962+00:00 +2025-10-22,Kilo Code,all,36,,20260408T193250Z,2026-04-08T20:20:15.559962+00:00 +2025-10-22,Lovable,all,0,,20260408T193250Z,2026-04-08T20:20:15.559962+00:00 +2025-10-22,OpenAI Codex,all,3,,20260408T193250Z,2026-04-08T20:20:15.559962+00:00 +2025-10-22,OpenCode,all,0,,20260408T193250Z,2026-04-08T20:20:15.559962+00:00 +2025-10-22,OpenHands,all,111,,20260408T193250Z,2026-04-08T20:20:15.559962+00:00 +2025-10-22,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T20:20:15.559962+00:00 +2025-10-22,Roo Code,all,0,,20260408T193250Z,2026-04-08T20:20:15.559962+00:00 +2025-10-22,Sketch,all,0,,20260408T193250Z,2026-04-08T20:20:15.559962+00:00 +2025-10-22,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T20:20:15.559962+00:00 +2025-10-22,Sweep AI,all,0,,20260408T193250Z,2026-04-08T20:20:15.559962+00:00 +2025-10-22,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T20:20:15.559962+00:00 +2025-10-23,Aider,all,16,,20260408T193250Z,2026-04-08T20:22:28.652864+00:00 +2025-10-23,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T20:22:28.652864+00:00 +2025-10-23,ChatGPT,all,4,,20260408T193250Z,2026-04-08T20:22:28.652864+00:00 +2025-10-23,Claude Code,all,6935,,20260408T193250Z,2026-04-08T20:22:28.652864+00:00 +2025-10-23,Cline,all,1653,,20260408T193250Z,2026-04-08T20:22:28.652864+00:00 +2025-10-23,Codegen,all,64,,20260408T193250Z,2026-04-08T20:22:28.652864+00:00 +2025-10-23,Coderabbit,all,9,,20260408T193250Z,2026-04-08T20:22:28.652864+00:00 +2025-10-23,Copilot,all,126,,20260408T193250Z,2026-04-08T20:22:28.652864+00:00 +2025-10-23,Copilot SWE Agent,all,7671,,20260408T193250Z,2026-04-08T20:22:28.652864+00:00 +2025-10-23,Crush,all,0,,20260408T193250Z,2026-04-08T20:22:28.652864+00:00 +2025-10-23,Cursor,all,1277,,20260408T193250Z,2026-04-08T20:22:28.652864+00:00 +2025-10-23,DeepSource,all,16,,20260408T193250Z,2026-04-08T20:22:28.652864+00:00 +2025-10-23,Devin,all,87,,20260408T193250Z,2026-04-08T20:22:28.652864+00:00 +2025-10-23,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T20:22:28.652864+00:00 +2025-10-23,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T20:22:28.652864+00:00 +2025-10-23,Gru,all,1,,20260408T193250Z,2026-04-08T20:22:28.652864+00:00 +2025-10-23,Jules (Google),all,1712,,20260408T193250Z,2026-04-08T20:22:28.652864+00:00 +2025-10-23,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T20:22:28.652864+00:00 +2025-10-23,Kilo Code,all,37,,20260408T193250Z,2026-04-08T20:22:28.652864+00:00 +2025-10-23,Lovable,all,0,,20260408T193250Z,2026-04-08T20:22:28.652864+00:00 +2025-10-23,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T20:22:28.652864+00:00 +2025-10-23,OpenCode,all,0,,20260408T193250Z,2026-04-08T20:22:28.652864+00:00 +2025-10-23,OpenHands,all,140,,20260408T193250Z,2026-04-08T20:22:28.652864+00:00 +2025-10-23,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T20:22:28.652864+00:00 +2025-10-23,Roo Code,all,0,,20260408T193250Z,2026-04-08T20:22:28.652864+00:00 +2025-10-23,Sketch,all,0,,20260408T193250Z,2026-04-08T20:22:28.652864+00:00 +2025-10-23,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T20:22:28.652864+00:00 +2025-10-23,Sweep AI,all,0,,20260408T193250Z,2026-04-08T20:22:28.652864+00:00 +2025-10-23,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T20:22:28.652864+00:00 +2025-10-24,Aider,all,4,,20260408T193250Z,2026-04-08T20:24:41.391548+00:00 +2025-10-24,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T20:24:41.391548+00:00 +2025-10-24,ChatGPT,all,2,,20260408T193250Z,2026-04-08T20:24:41.391548+00:00 +2025-10-24,Claude Code,all,6934,,20260408T193250Z,2026-04-08T20:24:41.391548+00:00 +2025-10-24,Cline,all,934,,20260408T193250Z,2026-04-08T20:24:41.391548+00:00 +2025-10-24,Codegen,all,38,,20260408T193250Z,2026-04-08T20:24:41.391548+00:00 +2025-10-24,Coderabbit,all,12,,20260408T193250Z,2026-04-08T20:24:41.391548+00:00 +2025-10-24,Copilot,all,120,1,20260408T193250Z,2026-04-08T20:24:41.391548+00:00 +2025-10-24,Copilot SWE Agent,all,6928,1,20260408T193250Z,2026-04-08T20:24:41.391548+00:00 +2025-10-24,Crush,all,0,,20260408T193250Z,2026-04-08T20:24:41.391548+00:00 +2025-10-24,Cursor,all,1036,,20260408T193250Z,2026-04-08T20:24:41.391548+00:00 +2025-10-24,DeepSource,all,9,,20260408T193250Z,2026-04-08T20:24:41.391548+00:00 +2025-10-24,Devin,all,45,1,20260408T193250Z,2026-04-08T20:24:41.391548+00:00 +2025-10-24,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T20:24:41.391548+00:00 +2025-10-24,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T20:24:41.391548+00:00 +2025-10-24,Gru,all,2,,20260408T193250Z,2026-04-08T20:24:41.391548+00:00 +2025-10-24,Jules (Google),all,1688,,20260408T193250Z,2026-04-08T20:24:41.391548+00:00 +2025-10-24,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T20:24:41.391548+00:00 +2025-10-24,Kilo Code,all,6,,20260408T193250Z,2026-04-08T20:24:41.391548+00:00 +2025-10-24,Lovable,all,0,,20260408T193250Z,2026-04-08T20:24:41.391548+00:00 +2025-10-24,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T20:24:41.391548+00:00 +2025-10-24,OpenCode,all,0,,20260408T193250Z,2026-04-08T20:24:41.391548+00:00 +2025-10-24,OpenHands,all,116,,20260408T193250Z,2026-04-08T20:24:41.391548+00:00 +2025-10-24,Qwen Coder,all,2,,20260408T193250Z,2026-04-08T20:24:41.391548+00:00 +2025-10-24,Roo Code,all,0,,20260408T193250Z,2026-04-08T20:24:41.391548+00:00 +2025-10-24,Sketch,all,0,,20260408T193250Z,2026-04-08T20:24:41.391548+00:00 +2025-10-24,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T20:24:41.391548+00:00 +2025-10-24,Sweep AI,all,0,,20260408T193250Z,2026-04-08T20:24:41.391548+00:00 +2025-10-24,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T20:24:41.391548+00:00 +2025-10-25,Aider,all,52,,20260408T193250Z,2026-04-08T20:27:53.370389+00:00 +2025-10-25,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T20:27:53.370389+00:00 +2025-10-25,ChatGPT,all,5,,20260408T193250Z,2026-04-08T20:27:53.370389+00:00 +2025-10-25,Claude Code,all,6274,,20260408T193250Z,2026-04-08T20:27:53.370389+00:00 +2025-10-25,Cline,all,697,,20260408T193250Z,2026-04-08T20:27:53.370389+00:00 +2025-10-25,Codegen,all,40,,20260408T193250Z,2026-04-08T20:27:53.370389+00:00 +2025-10-25,Coderabbit,all,15,,20260408T193250Z,2026-04-08T20:27:53.370389+00:00 +2025-10-25,Copilot,all,115,,20260408T193250Z,2026-04-08T20:27:53.370389+00:00 +2025-10-25,Copilot SWE Agent,all,7588,,20260408T193250Z,2026-04-08T20:27:53.370389+00:00 +2025-10-25,Crush,all,0,,20260408T193250Z,2026-04-08T20:27:53.370389+00:00 +2025-10-25,Cursor,all,915,,20260408T193250Z,2026-04-08T20:27:53.370389+00:00 +2025-10-25,DeepSource,all,48,,20260408T193250Z,2026-04-08T20:27:53.370389+00:00 +2025-10-25,Devin,all,13,,20260408T193250Z,2026-04-08T20:27:53.370389+00:00 +2025-10-25,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T20:27:53.370389+00:00 +2025-10-25,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T20:27:53.370389+00:00 +2025-10-25,Gru,all,0,,20260408T193250Z,2026-04-08T20:27:53.370389+00:00 +2025-10-25,Jules (Google),all,1559,,20260408T193250Z,2026-04-08T20:27:53.370389+00:00 +2025-10-25,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T20:27:53.370389+00:00 +2025-10-25,Kilo Code,all,3,,20260408T193250Z,2026-04-08T20:27:53.370389+00:00 +2025-10-25,Lovable,all,0,,20260408T193250Z,2026-04-08T20:27:53.370389+00:00 +2025-10-25,OpenAI Codex,all,3,,20260408T193250Z,2026-04-08T20:27:53.370389+00:00 +2025-10-25,OpenCode,all,0,,20260408T193250Z,2026-04-08T20:27:53.370389+00:00 +2025-10-25,OpenHands,all,137,,20260408T193250Z,2026-04-08T20:27:53.370389+00:00 +2025-10-25,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T20:27:53.370389+00:00 +2025-10-25,Roo Code,all,0,,20260408T193250Z,2026-04-08T20:27:53.370389+00:00 +2025-10-25,Sketch,all,0,,20260408T193250Z,2026-04-08T20:27:53.370389+00:00 +2025-10-25,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T20:27:53.370389+00:00 +2025-10-25,Sweep AI,all,0,,20260408T193250Z,2026-04-08T20:27:53.370389+00:00 +2025-10-25,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T20:27:53.370389+00:00 +2025-10-26,Aider,all,14,,20260408T193250Z,2026-04-08T20:30:05.336864+00:00 +2025-10-26,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T20:30:05.336864+00:00 +2025-10-26,ChatGPT,all,1,,20260408T193250Z,2026-04-08T20:30:05.336864+00:00 +2025-10-26,Claude Code,all,6358,,20260408T193250Z,2026-04-08T20:30:05.336864+00:00 +2025-10-26,Cline,all,718,,20260408T193250Z,2026-04-08T20:30:05.336864+00:00 +2025-10-26,Codegen,all,14,,20260408T193250Z,2026-04-08T20:30:05.336864+00:00 +2025-10-26,Coderabbit,all,19,,20260408T193250Z,2026-04-08T20:30:05.336864+00:00 +2025-10-26,Copilot,all,103,1,20260408T193250Z,2026-04-08T20:30:05.336864+00:00 +2025-10-26,Copilot SWE Agent,all,7635,,20260408T193250Z,2026-04-08T20:30:05.336864+00:00 +2025-10-26,Crush,all,0,,20260408T193250Z,2026-04-08T20:30:05.336864+00:00 +2025-10-26,Cursor,all,799,,20260408T193250Z,2026-04-08T20:30:05.336864+00:00 +2025-10-26,DeepSource,all,22,,20260408T193250Z,2026-04-08T20:30:05.336864+00:00 +2025-10-26,Devin,all,8,,20260408T193250Z,2026-04-08T20:30:05.336864+00:00 +2025-10-26,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T20:30:05.336864+00:00 +2025-10-26,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T20:30:05.336864+00:00 +2025-10-26,Gru,all,0,,20260408T193250Z,2026-04-08T20:30:05.336864+00:00 +2025-10-26,Jules (Google),all,1481,,20260408T193250Z,2026-04-08T20:30:05.336864+00:00 +2025-10-26,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T20:30:05.336864+00:00 +2025-10-26,Kilo Code,all,2,,20260408T193250Z,2026-04-08T20:30:05.336864+00:00 +2025-10-26,Lovable,all,0,,20260408T193250Z,2026-04-08T20:30:05.336864+00:00 +2025-10-26,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T20:30:05.336864+00:00 +2025-10-26,OpenCode,all,0,,20260408T193250Z,2026-04-08T20:30:05.336864+00:00 +2025-10-26,OpenHands,all,86,,20260408T193250Z,2026-04-08T20:30:05.336864+00:00 +2025-10-26,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T20:30:05.336864+00:00 +2025-10-26,Roo Code,all,0,,20260408T193250Z,2026-04-08T20:30:05.336864+00:00 +2025-10-26,Sketch,all,0,,20260408T193250Z,2026-04-08T20:30:05.336864+00:00 +2025-10-26,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T20:30:05.336864+00:00 +2025-10-26,Sweep AI,all,0,,20260408T193250Z,2026-04-08T20:30:05.336864+00:00 +2025-10-26,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T20:30:05.336864+00:00 +2025-10-27,Aider,all,28,,20260408T193250Z,2026-04-08T20:32:17.613198+00:00 +2025-10-27,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T20:32:17.613198+00:00 +2025-10-27,ChatGPT,all,0,,20260408T193250Z,2026-04-08T20:32:17.613198+00:00 +2025-10-27,Claude Code,all,6796,,20260408T193250Z,2026-04-08T20:32:17.613198+00:00 +2025-10-27,Cline,all,1855,,20260408T193250Z,2026-04-08T20:32:17.613198+00:00 +2025-10-27,Codegen,all,100,,20260408T193250Z,2026-04-08T20:32:17.613198+00:00 +2025-10-27,Coderabbit,all,13,,20260408T193250Z,2026-04-08T20:32:17.613198+00:00 +2025-10-27,Copilot,all,104,,20260408T193250Z,2026-04-08T20:32:17.613198+00:00 +2025-10-27,Copilot SWE Agent,all,7546,,20260408T193250Z,2026-04-08T20:32:17.613198+00:00 +2025-10-27,Crush,all,0,,20260408T193250Z,2026-04-08T20:32:17.613198+00:00 +2025-10-27,Cursor,all,859,,20260408T193250Z,2026-04-08T20:32:17.613198+00:00 +2025-10-27,DeepSource,all,21,,20260408T193250Z,2026-04-08T20:32:17.613198+00:00 +2025-10-27,Devin,all,47,,20260408T193250Z,2026-04-08T20:32:17.613198+00:00 +2025-10-27,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T20:32:17.613198+00:00 +2025-10-27,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T20:32:17.613198+00:00 +2025-10-27,Gru,all,0,,20260408T193250Z,2026-04-08T20:32:17.613198+00:00 +2025-10-27,Jules (Google),all,1680,,20260408T193250Z,2026-04-08T20:32:17.613198+00:00 +2025-10-27,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T20:32:17.613198+00:00 +2025-10-27,Kilo Code,all,26,,20260408T193250Z,2026-04-08T20:32:17.613198+00:00 +2025-10-27,Lovable,all,0,,20260408T193250Z,2026-04-08T20:32:17.613198+00:00 +2025-10-27,OpenAI Codex,all,1,,20260408T193250Z,2026-04-08T20:32:17.613198+00:00 +2025-10-27,OpenCode,all,0,,20260408T193250Z,2026-04-08T20:32:17.613198+00:00 +2025-10-27,OpenHands,all,128,,20260408T193250Z,2026-04-08T20:32:17.613198+00:00 +2025-10-27,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T20:32:17.613198+00:00 +2025-10-27,Roo Code,all,0,,20260408T193250Z,2026-04-08T20:32:17.613198+00:00 +2025-10-27,Sketch,all,0,,20260408T193250Z,2026-04-08T20:32:17.613198+00:00 +2025-10-27,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T20:32:17.613198+00:00 +2025-10-27,Sweep AI,all,0,,20260408T193250Z,2026-04-08T20:32:17.613198+00:00 +2025-10-27,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T20:32:17.613198+00:00 +2025-10-28,Aider,all,21,,20260408T193250Z,2026-04-08T20:34:29.377000+00:00 +2025-10-28,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T20:34:29.377000+00:00 +2025-10-28,ChatGPT,all,0,,20260408T193250Z,2026-04-08T20:34:29.377000+00:00 +2025-10-28,Claude Code,all,6143,,20260408T193250Z,2026-04-08T20:34:29.377000+00:00 +2025-10-28,Cline,all,1641,,20260408T193250Z,2026-04-08T20:34:29.377000+00:00 +2025-10-28,Codegen,all,56,,20260408T193250Z,2026-04-08T20:34:29.377000+00:00 +2025-10-28,Coderabbit,all,13,,20260408T193250Z,2026-04-08T20:34:29.377000+00:00 +2025-10-28,Copilot,all,46,,20260408T193250Z,2026-04-08T20:34:29.377000+00:00 +2025-10-28,Copilot SWE Agent,all,8256,1,20260408T193250Z,2026-04-08T20:34:29.377000+00:00 +2025-10-28,Crush,all,7,,20260408T193250Z,2026-04-08T20:34:29.377000+00:00 +2025-10-28,Cursor,all,997,,20260408T193250Z,2026-04-08T20:34:29.377000+00:00 +2025-10-28,DeepSource,all,23,,20260408T193250Z,2026-04-08T20:34:29.377000+00:00 +2025-10-28,Devin,all,62,,20260408T193250Z,2026-04-08T20:34:29.377000+00:00 +2025-10-28,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T20:34:29.377000+00:00 +2025-10-28,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T20:34:29.377000+00:00 +2025-10-28,Gru,all,0,,20260408T193250Z,2026-04-08T20:34:29.377000+00:00 +2025-10-28,Jules (Google),all,1757,,20260408T193250Z,2026-04-08T20:34:29.377000+00:00 +2025-10-28,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T20:34:29.377000+00:00 +2025-10-28,Kilo Code,all,42,,20260408T193250Z,2026-04-08T20:34:29.377000+00:00 +2025-10-28,Lovable,all,0,,20260408T193250Z,2026-04-08T20:34:29.377000+00:00 +2025-10-28,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T20:34:29.377000+00:00 +2025-10-28,OpenCode,all,0,,20260408T193250Z,2026-04-08T20:34:29.377000+00:00 +2025-10-28,OpenHands,all,173,,20260408T193250Z,2026-04-08T20:34:29.377000+00:00 +2025-10-28,Qwen Coder,all,2,,20260408T193250Z,2026-04-08T20:34:29.377000+00:00 +2025-10-28,Roo Code,all,0,,20260408T193250Z,2026-04-08T20:34:29.377000+00:00 +2025-10-28,Sketch,all,0,,20260408T193250Z,2026-04-08T20:34:29.377000+00:00 +2025-10-28,Sourcery AI,all,2,,20260408T193250Z,2026-04-08T20:34:29.377000+00:00 +2025-10-28,Sweep AI,all,1,,20260408T193250Z,2026-04-08T20:34:29.377000+00:00 +2025-10-28,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T20:34:29.377000+00:00 +2025-10-29,Aider,all,20,,20260408T193250Z,2026-04-08T20:36:42.782610+00:00 +2025-10-29,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T20:36:42.782610+00:00 +2025-10-29,ChatGPT,all,3,,20260408T193250Z,2026-04-08T20:36:42.782610+00:00 +2025-10-29,Claude Code,all,7181,,20260408T193250Z,2026-04-08T20:36:42.782610+00:00 +2025-10-29,Cline,all,1412,,20260408T193250Z,2026-04-08T20:36:42.782610+00:00 +2025-10-29,Codegen,all,72,,20260408T193250Z,2026-04-08T20:36:42.782610+00:00 +2025-10-29,Coderabbit,all,14,,20260408T193250Z,2026-04-08T20:36:42.782610+00:00 +2025-10-29,Copilot,all,107,,20260408T193250Z,2026-04-08T20:36:42.782610+00:00 +2025-10-29,Copilot SWE Agent,all,9772,,20260408T193250Z,2026-04-08T20:36:42.782610+00:00 +2025-10-29,Crush,all,0,,20260408T193250Z,2026-04-08T20:36:42.782610+00:00 +2025-10-29,Cursor,all,956,1,20260408T193250Z,2026-04-08T20:36:42.782610+00:00 +2025-10-29,DeepSource,all,14,,20260408T193250Z,2026-04-08T20:36:42.782610+00:00 +2025-10-29,Devin,all,28,,20260408T193250Z,2026-04-08T20:36:42.782610+00:00 +2025-10-29,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T20:36:42.782610+00:00 +2025-10-29,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T20:36:42.782610+00:00 +2025-10-29,Gru,all,0,,20260408T193250Z,2026-04-08T20:36:42.782610+00:00 +2025-10-29,Jules (Google),all,1700,,20260408T193250Z,2026-04-08T20:36:42.782610+00:00 +2025-10-29,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T20:36:42.782610+00:00 +2025-10-29,Kilo Code,all,49,,20260408T193250Z,2026-04-08T20:36:42.782610+00:00 +2025-10-29,Lovable,all,0,,20260408T193250Z,2026-04-08T20:36:42.782610+00:00 +2025-10-29,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T20:36:42.782610+00:00 +2025-10-29,OpenCode,all,3,,20260408T193250Z,2026-04-08T20:36:42.782610+00:00 +2025-10-29,OpenHands,all,94,,20260408T193250Z,2026-04-08T20:36:42.782610+00:00 +2025-10-29,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T20:36:42.782610+00:00 +2025-10-29,Roo Code,all,0,,20260408T193250Z,2026-04-08T20:36:42.782610+00:00 +2025-10-29,Sketch,all,0,,20260408T193250Z,2026-04-08T20:36:42.782610+00:00 +2025-10-29,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T20:36:42.782610+00:00 +2025-10-29,Sweep AI,all,0,,20260408T193250Z,2026-04-08T20:36:42.782610+00:00 +2025-10-29,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T20:36:42.782610+00:00 +2025-10-30,Aider,all,23,,20260408T193250Z,2026-04-08T20:38:56.738450+00:00 +2025-10-30,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T20:38:56.738450+00:00 +2025-10-30,ChatGPT,all,20,,20260408T193250Z,2026-04-08T20:38:56.738450+00:00 +2025-10-30,Claude Code,all,8147,,20260408T193250Z,2026-04-08T20:38:56.738450+00:00 +2025-10-30,Cline,all,956,,20260408T193250Z,2026-04-08T20:38:56.738450+00:00 +2025-10-30,Codegen,all,61,,20260408T193250Z,2026-04-08T20:38:56.738450+00:00 +2025-10-30,Coderabbit,all,19,,20260408T193250Z,2026-04-08T20:38:56.738450+00:00 +2025-10-30,Copilot,all,37,,20260408T193250Z,2026-04-08T20:38:56.738450+00:00 +2025-10-30,Copilot SWE Agent,all,9910,,20260408T193250Z,2026-04-08T20:38:56.738450+00:00 +2025-10-30,Crush,all,0,,20260408T193250Z,2026-04-08T20:38:56.738450+00:00 +2025-10-30,Cursor,all,958,,20260408T193250Z,2026-04-08T20:38:56.738450+00:00 +2025-10-30,DeepSource,all,3,,20260408T193250Z,2026-04-08T20:38:56.738450+00:00 +2025-10-30,Devin,all,35,,20260408T193250Z,2026-04-08T20:38:56.738450+00:00 +2025-10-30,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T20:38:56.738450+00:00 +2025-10-30,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T20:38:56.738450+00:00 +2025-10-30,Gru,all,0,,20260408T193250Z,2026-04-08T20:38:56.738450+00:00 +2025-10-30,Jules (Google),all,1813,,20260408T193250Z,2026-04-08T20:38:56.738450+00:00 +2025-10-30,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T20:38:56.738450+00:00 +2025-10-30,Kilo Code,all,24,,20260408T193250Z,2026-04-08T20:38:56.738450+00:00 +2025-10-30,Lovable,all,0,,20260408T193250Z,2026-04-08T20:38:56.738450+00:00 +2025-10-30,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T20:38:56.738450+00:00 +2025-10-30,OpenCode,all,0,,20260408T193250Z,2026-04-08T20:38:56.738450+00:00 +2025-10-30,OpenHands,all,152,,20260408T193250Z,2026-04-08T20:38:56.738450+00:00 +2025-10-30,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T20:38:56.738450+00:00 +2025-10-30,Roo Code,all,0,,20260408T193250Z,2026-04-08T20:38:56.738450+00:00 +2025-10-30,Sketch,all,0,,20260408T193250Z,2026-04-08T20:38:56.738450+00:00 +2025-10-30,Sourcery AI,all,2,1,20260408T193250Z,2026-04-08T20:38:56.738450+00:00 +2025-10-30,Sweep AI,all,0,,20260408T193250Z,2026-04-08T20:38:56.738450+00:00 +2025-10-30,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T20:38:56.738450+00:00 +2025-10-31,Aider,all,8,,20260408T193250Z,2026-04-08T20:41:09.723148+00:00 +2025-10-31,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T20:41:09.723148+00:00 +2025-10-31,ChatGPT,all,20,,20260408T193250Z,2026-04-08T20:41:09.723148+00:00 +2025-10-31,Claude Code,all,7097,,20260408T193250Z,2026-04-08T20:41:09.723148+00:00 +2025-10-31,Cline,all,2068,,20260408T193250Z,2026-04-08T20:41:09.723148+00:00 +2025-10-31,Codegen,all,96,,20260408T193250Z,2026-04-08T20:41:09.723148+00:00 +2025-10-31,Coderabbit,all,9,,20260408T193250Z,2026-04-08T20:41:09.723148+00:00 +2025-10-31,Copilot,all,53,,20260408T193250Z,2026-04-08T20:41:09.723148+00:00 +2025-10-31,Copilot SWE Agent,all,9626,,20260408T193250Z,2026-04-08T20:41:09.723148+00:00 +2025-10-31,Crush,all,0,,20260408T193250Z,2026-04-08T20:41:09.723148+00:00 +2025-10-31,Cursor,all,1008,,20260408T193250Z,2026-04-08T20:41:09.723148+00:00 +2025-10-31,DeepSource,all,4,,20260408T193250Z,2026-04-08T20:41:09.723148+00:00 +2025-10-31,Devin,all,34,,20260408T193250Z,2026-04-08T20:41:09.723148+00:00 +2025-10-31,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T20:41:09.723148+00:00 +2025-10-31,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T20:41:09.723148+00:00 +2025-10-31,Gru,all,0,,20260408T193250Z,2026-04-08T20:41:09.723148+00:00 +2025-10-31,Jules (Google),all,1595,,20260408T193250Z,2026-04-08T20:41:09.723148+00:00 +2025-10-31,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T20:41:09.723148+00:00 +2025-10-31,Kilo Code,all,5,,20260408T193250Z,2026-04-08T20:41:09.723148+00:00 +2025-10-31,Lovable,all,0,,20260408T193250Z,2026-04-08T20:41:09.723148+00:00 +2025-10-31,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T20:41:09.723148+00:00 +2025-10-31,OpenCode,all,0,,20260408T193250Z,2026-04-08T20:41:09.723148+00:00 +2025-10-31,OpenHands,all,97,,20260408T193250Z,2026-04-08T20:41:09.723148+00:00 +2025-10-31,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T20:41:09.723148+00:00 +2025-10-31,Roo Code,all,0,,20260408T193250Z,2026-04-08T20:41:09.723148+00:00 +2025-10-31,Sketch,all,0,,20260408T193250Z,2026-04-08T20:41:09.723148+00:00 +2025-10-31,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T20:41:09.723148+00:00 +2025-10-31,Sweep AI,all,0,,20260408T193250Z,2026-04-08T20:41:09.723148+00:00 +2025-10-31,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T20:41:09.723148+00:00 +2025-11-01,Aider,all,11,,20260408T193250Z,2026-04-08T20:43:24.115115+00:00 +2025-11-01,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T20:43:24.115115+00:00 +2025-11-01,ChatGPT,all,1,,20260408T193250Z,2026-04-08T20:43:24.115115+00:00 +2025-11-01,Claude Code,all,6611,,20260408T193250Z,2026-04-08T20:43:24.115115+00:00 +2025-11-01,Cline,all,464,,20260408T193250Z,2026-04-08T20:43:24.115115+00:00 +2025-11-01,Codegen,all,66,,20260408T193250Z,2026-04-08T20:43:24.115115+00:00 +2025-11-01,Coderabbit,all,20,,20260408T193250Z,2026-04-08T20:43:24.115115+00:00 +2025-11-01,Copilot,all,44,,20260408T193250Z,2026-04-08T20:43:24.115115+00:00 +2025-11-01,Copilot SWE Agent,all,9125,1,20260408T193250Z,2026-04-08T20:43:24.115115+00:00 +2025-11-01,Crush,all,0,,20260408T193250Z,2026-04-08T20:43:24.115115+00:00 +2025-11-01,Cursor,all,899,,20260408T193250Z,2026-04-08T20:43:24.115115+00:00 +2025-11-01,DeepSource,all,20,,20260408T193250Z,2026-04-08T20:43:24.115115+00:00 +2025-11-01,Devin,all,16,,20260408T193250Z,2026-04-08T20:43:24.115115+00:00 +2025-11-01,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T20:43:24.115115+00:00 +2025-11-01,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T20:43:24.115115+00:00 +2025-11-01,Gru,all,0,,20260408T193250Z,2026-04-08T20:43:24.115115+00:00 +2025-11-01,Jules (Google),all,1265,,20260408T193250Z,2026-04-08T20:43:24.115115+00:00 +2025-11-01,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T20:43:24.115115+00:00 +2025-11-01,Kilo Code,all,13,,20260408T193250Z,2026-04-08T20:43:24.115115+00:00 +2025-11-01,Lovable,all,0,,20260408T193250Z,2026-04-08T20:43:24.115115+00:00 +2025-11-01,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T20:43:24.115115+00:00 +2025-11-01,OpenCode,all,0,,20260408T193250Z,2026-04-08T20:43:24.115115+00:00 +2025-11-01,OpenHands,all,45,,20260408T193250Z,2026-04-08T20:43:24.115115+00:00 +2025-11-01,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T20:43:24.115115+00:00 +2025-11-01,Roo Code,all,0,,20260408T193250Z,2026-04-08T20:43:24.115115+00:00 +2025-11-01,Sketch,all,0,,20260408T193250Z,2026-04-08T20:43:24.115115+00:00 +2025-11-01,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T20:43:24.115115+00:00 +2025-11-01,Sweep AI,all,0,,20260408T193250Z,2026-04-08T20:43:24.115115+00:00 +2025-11-01,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T20:43:24.115115+00:00 +2025-11-02,Aider,all,12,,20260408T193250Z,2026-04-08T20:45:37.248020+00:00 +2025-11-02,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T20:45:37.248020+00:00 +2025-11-02,ChatGPT,all,4,,20260408T193250Z,2026-04-08T20:45:37.248020+00:00 +2025-11-02,Claude Code,all,7196,,20260408T193250Z,2026-04-08T20:45:37.248020+00:00 +2025-11-02,Cline,all,518,,20260408T193250Z,2026-04-08T20:45:37.248020+00:00 +2025-11-02,Codegen,all,78,,20260408T193250Z,2026-04-08T20:45:37.248020+00:00 +2025-11-02,Coderabbit,all,11,,20260408T193250Z,2026-04-08T20:45:37.248020+00:00 +2025-11-02,Copilot,all,24,,20260408T193250Z,2026-04-08T20:45:37.248020+00:00 +2025-11-02,Copilot SWE Agent,all,10786,,20260408T193250Z,2026-04-08T20:45:37.248020+00:00 +2025-11-02,Crush,all,0,,20260408T193250Z,2026-04-08T20:45:37.248020+00:00 +2025-11-02,Cursor,all,1262,,20260408T193250Z,2026-04-08T20:45:37.248020+00:00 +2025-11-02,DeepSource,all,11,,20260408T193250Z,2026-04-08T20:45:37.248020+00:00 +2025-11-02,Devin,all,16,,20260408T193250Z,2026-04-08T20:45:37.248020+00:00 +2025-11-02,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T20:45:37.248020+00:00 +2025-11-02,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T20:45:37.248020+00:00 +2025-11-02,Gru,all,0,,20260408T193250Z,2026-04-08T20:45:37.248020+00:00 +2025-11-02,Jules (Google),all,1834,,20260408T193250Z,2026-04-08T20:45:37.248020+00:00 +2025-11-02,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T20:45:37.248020+00:00 +2025-11-02,Kilo Code,all,0,,20260408T193250Z,2026-04-08T20:45:37.248020+00:00 +2025-11-02,Lovable,all,0,,20260408T193250Z,2026-04-08T20:45:37.248020+00:00 +2025-11-02,OpenAI Codex,all,1,,20260408T193250Z,2026-04-08T20:45:37.248020+00:00 +2025-11-02,OpenCode,all,0,,20260408T193250Z,2026-04-08T20:45:37.248020+00:00 +2025-11-02,OpenHands,all,103,,20260408T193250Z,2026-04-08T20:45:37.248020+00:00 +2025-11-02,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T20:45:37.248020+00:00 +2025-11-02,Roo Code,all,0,,20260408T193250Z,2026-04-08T20:45:37.248020+00:00 +2025-11-02,Sketch,all,0,,20260408T193250Z,2026-04-08T20:45:37.248020+00:00 +2025-11-02,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T20:45:37.248020+00:00 +2025-11-02,Sweep AI,all,0,,20260408T193250Z,2026-04-08T20:45:37.248020+00:00 +2025-11-02,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T20:45:37.248020+00:00 +2025-11-03,Aider,all,90,,20260408T193250Z,2026-04-08T20:47:49.695312+00:00 +2025-11-03,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T20:47:49.695312+00:00 +2025-11-03,ChatGPT,all,2,,20260408T193250Z,2026-04-08T20:47:49.695312+00:00 +2025-11-03,Claude Code,all,8133,,20260408T193250Z,2026-04-08T20:47:49.695312+00:00 +2025-11-03,Cline,all,709,,20260408T193250Z,2026-04-08T20:47:49.695312+00:00 +2025-11-03,Codegen,all,46,,20260408T193250Z,2026-04-08T20:47:49.695312+00:00 +2025-11-03,Coderabbit,all,10,,20260408T193250Z,2026-04-08T20:47:49.695312+00:00 +2025-11-03,Copilot,all,111,,20260408T193250Z,2026-04-08T20:47:49.695312+00:00 +2025-11-03,Copilot SWE Agent,all,11012,,20260408T193250Z,2026-04-08T20:47:49.695312+00:00 +2025-11-03,Crush,all,0,,20260408T193250Z,2026-04-08T20:47:49.695312+00:00 +2025-11-03,Cursor,all,911,,20260408T193250Z,2026-04-08T20:47:49.695312+00:00 +2025-11-03,DeepSource,all,9,,20260408T193250Z,2026-04-08T20:47:49.695312+00:00 +2025-11-03,Devin,all,45,,20260408T193250Z,2026-04-08T20:47:49.695312+00:00 +2025-11-03,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T20:47:49.695312+00:00 +2025-11-03,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T20:47:49.695312+00:00 +2025-11-03,Gru,all,0,,20260408T193250Z,2026-04-08T20:47:49.695312+00:00 +2025-11-03,Jules (Google),all,1863,,20260408T193250Z,2026-04-08T20:47:49.695312+00:00 +2025-11-03,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T20:47:49.695312+00:00 +2025-11-03,Kilo Code,all,10,,20260408T193250Z,2026-04-08T20:47:49.695312+00:00 +2025-11-03,Lovable,all,0,,20260408T193250Z,2026-04-08T20:47:49.695312+00:00 +2025-11-03,OpenAI Codex,all,2,,20260408T193250Z,2026-04-08T20:47:49.695312+00:00 +2025-11-03,OpenCode,all,0,,20260408T193250Z,2026-04-08T20:47:49.695312+00:00 +2025-11-03,OpenHands,all,121,,20260408T193250Z,2026-04-08T20:47:49.695312+00:00 +2025-11-03,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T20:47:49.695312+00:00 +2025-11-03,Roo Code,all,0,,20260408T193250Z,2026-04-08T20:47:49.695312+00:00 +2025-11-03,Sketch,all,0,,20260408T193250Z,2026-04-08T20:47:49.695312+00:00 +2025-11-03,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T20:47:49.695312+00:00 +2025-11-03,Sweep AI,all,2,,20260408T193250Z,2026-04-08T20:47:49.695312+00:00 +2025-11-03,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T20:47:49.695312+00:00 +2025-11-04,Aider,all,53,,20260408T193250Z,2026-04-08T20:50:01.539374+00:00 +2025-11-04,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T20:50:01.539374+00:00 +2025-11-04,ChatGPT,all,6,,20260408T193250Z,2026-04-08T20:50:01.539374+00:00 +2025-11-04,Claude Code,all,11081,,20260408T193250Z,2026-04-08T20:50:01.539374+00:00 +2025-11-04,Cline,all,1828,,20260408T193250Z,2026-04-08T20:50:01.539374+00:00 +2025-11-04,Codegen,all,45,,20260408T193250Z,2026-04-08T20:50:01.539374+00:00 +2025-11-04,Coderabbit,all,17,,20260408T193250Z,2026-04-08T20:50:01.539374+00:00 +2025-11-04,Copilot,all,74,,20260408T193250Z,2026-04-08T20:50:01.539374+00:00 +2025-11-04,Copilot SWE Agent,all,12689,,20260408T193250Z,2026-04-08T20:50:01.539374+00:00 +2025-11-04,Crush,all,0,,20260408T193250Z,2026-04-08T20:50:01.539374+00:00 +2025-11-04,Cursor,all,1165,,20260408T193250Z,2026-04-08T20:50:01.539374+00:00 +2025-11-04,DeepSource,all,11,,20260408T193250Z,2026-04-08T20:50:01.539374+00:00 +2025-11-04,Devin,all,61,,20260408T193250Z,2026-04-08T20:50:01.539374+00:00 +2025-11-04,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T20:50:01.539374+00:00 +2025-11-04,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T20:50:01.539374+00:00 +2025-11-04,Gru,all,0,,20260408T193250Z,2026-04-08T20:50:01.539374+00:00 +2025-11-04,Jules (Google),all,2074,,20260408T193250Z,2026-04-08T20:50:01.539374+00:00 +2025-11-04,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T20:50:01.539374+00:00 +2025-11-04,Kilo Code,all,31,,20260408T193250Z,2026-04-08T20:50:01.539374+00:00 +2025-11-04,Lovable,all,0,,20260408T193250Z,2026-04-08T20:50:01.539374+00:00 +2025-11-04,OpenAI Codex,all,2,,20260408T193250Z,2026-04-08T20:50:01.539374+00:00 +2025-11-04,OpenCode,all,0,,20260408T193250Z,2026-04-08T20:50:01.539374+00:00 +2025-11-04,OpenHands,all,64,,20260408T193250Z,2026-04-08T20:50:01.539374+00:00 +2025-11-04,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T20:50:01.539374+00:00 +2025-11-04,Roo Code,all,0,,20260408T193250Z,2026-04-08T20:50:01.539374+00:00 +2025-11-04,Sketch,all,0,,20260408T193250Z,2026-04-08T20:50:01.539374+00:00 +2025-11-04,Sourcery AI,all,0,1,20260408T193250Z,2026-04-08T20:50:01.539374+00:00 +2025-11-04,Sweep AI,all,0,,20260408T193250Z,2026-04-08T20:50:01.539374+00:00 +2025-11-04,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T20:50:01.539374+00:00 +2025-11-05,Aider,all,19,,20260408T193250Z,2026-04-08T20:52:15.251882+00:00 +2025-11-05,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T20:52:15.251882+00:00 +2025-11-05,ChatGPT,all,0,,20260408T193250Z,2026-04-08T20:52:15.251882+00:00 +2025-11-05,Claude Code,all,24769,,20260408T193250Z,2026-04-08T20:52:15.251882+00:00 +2025-11-05,Cline,all,1830,,20260408T193250Z,2026-04-08T20:52:15.251882+00:00 +2025-11-05,Codegen,all,44,,20260408T193250Z,2026-04-08T20:52:15.251882+00:00 +2025-11-05,Coderabbit,all,24,,20260408T193250Z,2026-04-08T20:52:15.251882+00:00 +2025-11-05,Copilot,all,54,,20260408T193250Z,2026-04-08T20:52:15.251882+00:00 +2025-11-05,Copilot SWE Agent,all,12850,,20260408T193250Z,2026-04-08T20:52:15.251882+00:00 +2025-11-05,Crush,all,0,,20260408T193250Z,2026-04-08T20:52:15.251882+00:00 +2025-11-05,Cursor,all,1387,,20260408T193250Z,2026-04-08T20:52:15.251882+00:00 +2025-11-05,DeepSource,all,6,,20260408T193250Z,2026-04-08T20:52:15.251882+00:00 +2025-11-05,Devin,all,58,1,20260408T193250Z,2026-04-08T20:52:15.251882+00:00 +2025-11-05,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T20:52:15.251882+00:00 +2025-11-05,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T20:52:15.251882+00:00 +2025-11-05,Gru,all,0,,20260408T193250Z,2026-04-08T20:52:15.251882+00:00 +2025-11-05,Jules (Google),all,1759,1,20260408T193250Z,2026-04-08T20:52:15.251882+00:00 +2025-11-05,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T20:52:15.251882+00:00 +2025-11-05,Kilo Code,all,42,,20260408T193250Z,2026-04-08T20:52:15.251882+00:00 +2025-11-05,Lovable,all,0,,20260408T193250Z,2026-04-08T20:52:15.251882+00:00 +2025-11-05,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T20:52:15.251882+00:00 +2025-11-05,OpenCode,all,0,,20260408T193250Z,2026-04-08T20:52:15.251882+00:00 +2025-11-05,OpenHands,all,76,,20260408T193250Z,2026-04-08T20:52:15.251882+00:00 +2025-11-05,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T20:52:15.251882+00:00 +2025-11-05,Roo Code,all,0,,20260408T193250Z,2026-04-08T20:52:15.251882+00:00 +2025-11-05,Sketch,all,0,,20260408T193250Z,2026-04-08T20:52:15.251882+00:00 +2025-11-05,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T20:52:15.251882+00:00 +2025-11-05,Sweep AI,all,0,,20260408T193250Z,2026-04-08T20:52:15.251882+00:00 +2025-11-05,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T20:52:15.251882+00:00 +2025-11-06,Aider,all,25,,20260408T193250Z,2026-04-08T20:55:28.405629+00:00 +2025-11-06,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T20:55:28.405629+00:00 +2025-11-06,ChatGPT,all,0,,20260408T193250Z,2026-04-08T20:55:28.405629+00:00 +2025-11-06,Claude Code,all,27416,,20260408T193250Z,2026-04-08T20:55:28.405629+00:00 +2025-11-06,Cline,all,896,,20260408T193250Z,2026-04-08T20:55:28.405629+00:00 +2025-11-06,Codegen,all,67,,20260408T193250Z,2026-04-08T20:55:28.405629+00:00 +2025-11-06,Coderabbit,all,32,,20260408T193250Z,2026-04-08T20:55:28.405629+00:00 +2025-11-06,Copilot,all,23,,20260408T193250Z,2026-04-08T20:55:28.405629+00:00 +2025-11-06,Copilot SWE Agent,all,12003,,20260408T193250Z,2026-04-08T20:55:28.405629+00:00 +2025-11-06,Crush,all,0,,20260408T193250Z,2026-04-08T20:55:28.405629+00:00 +2025-11-06,Cursor,all,1183,,20260408T193250Z,2026-04-08T20:55:28.405629+00:00 +2025-11-06,DeepSource,all,8,,20260408T193250Z,2026-04-08T20:55:28.405629+00:00 +2025-11-06,Devin,all,25,,20260408T193250Z,2026-04-08T20:55:28.405629+00:00 +2025-11-06,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T20:55:28.405629+00:00 +2025-11-06,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T20:55:28.405629+00:00 +2025-11-06,Gru,all,0,,20260408T193250Z,2026-04-08T20:55:28.405629+00:00 +2025-11-06,Jules (Google),all,1719,,20260408T193250Z,2026-04-08T20:55:28.405629+00:00 +2025-11-06,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T20:55:28.405629+00:00 +2025-11-06,Kilo Code,all,58,,20260408T193250Z,2026-04-08T20:55:28.405629+00:00 +2025-11-06,Lovable,all,0,,20260408T193250Z,2026-04-08T20:55:28.405629+00:00 +2025-11-06,OpenAI Codex,all,1,,20260408T193250Z,2026-04-08T20:55:28.405629+00:00 +2025-11-06,OpenCode,all,0,,20260408T193250Z,2026-04-08T20:55:28.405629+00:00 +2025-11-06,OpenHands,all,171,,20260408T193250Z,2026-04-08T20:55:28.405629+00:00 +2025-11-06,Qwen Coder,all,2,,20260408T193250Z,2026-04-08T20:55:28.405629+00:00 +2025-11-06,Roo Code,all,0,,20260408T193250Z,2026-04-08T20:55:28.405629+00:00 +2025-11-06,Sketch,all,0,,20260408T193250Z,2026-04-08T20:55:28.405629+00:00 +2025-11-06,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T20:55:28.405629+00:00 +2025-11-06,Sweep AI,all,0,,20260408T193250Z,2026-04-08T20:55:28.405629+00:00 +2025-11-06,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T20:55:28.405629+00:00 +2025-11-07,Aider,all,15,,20260408T193250Z,2026-04-08T20:57:39.678846+00:00 +2025-11-07,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T20:57:39.678846+00:00 +2025-11-07,ChatGPT,all,1,,20260408T193250Z,2026-04-08T20:57:39.678846+00:00 +2025-11-07,Claude Code,all,25540,,20260408T193250Z,2026-04-08T20:57:39.678846+00:00 +2025-11-07,Cline,all,2241,,20260408T193250Z,2026-04-08T20:57:39.678846+00:00 +2025-11-07,Codegen,all,43,,20260408T193250Z,2026-04-08T20:57:39.678846+00:00 +2025-11-07,Coderabbit,all,27,,20260408T193250Z,2026-04-08T20:57:39.678846+00:00 +2025-11-07,Copilot,all,40,,20260408T193250Z,2026-04-08T20:57:39.678846+00:00 +2025-11-07,Copilot SWE Agent,all,11380,,20260408T193250Z,2026-04-08T20:57:39.678846+00:00 +2025-11-07,Crush,all,0,,20260408T193250Z,2026-04-08T20:57:39.678846+00:00 +2025-11-07,Cursor,all,1120,,20260408T193250Z,2026-04-08T20:57:39.678846+00:00 +2025-11-07,DeepSource,all,9,,20260408T193250Z,2026-04-08T20:57:39.678846+00:00 +2025-11-07,Devin,all,51,,20260408T193250Z,2026-04-08T20:57:39.678846+00:00 +2025-11-07,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T20:57:39.678846+00:00 +2025-11-07,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T20:57:39.678846+00:00 +2025-11-07,Gru,all,0,,20260408T193250Z,2026-04-08T20:57:39.678846+00:00 +2025-11-07,Jules (Google),all,1506,,20260408T193250Z,2026-04-08T20:57:39.678846+00:00 +2025-11-07,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T20:57:39.678846+00:00 +2025-11-07,Kilo Code,all,65,,20260408T193250Z,2026-04-08T20:57:39.678846+00:00 +2025-11-07,Lovable,all,0,,20260408T193250Z,2026-04-08T20:57:39.678846+00:00 +2025-11-07,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T20:57:39.678846+00:00 +2025-11-07,OpenCode,all,0,,20260408T193250Z,2026-04-08T20:57:39.678846+00:00 +2025-11-07,OpenHands,all,137,,20260408T193250Z,2026-04-08T20:57:39.678846+00:00 +2025-11-07,Qwen Coder,all,1,,20260408T193250Z,2026-04-08T20:57:39.678846+00:00 +2025-11-07,Roo Code,all,0,,20260408T193250Z,2026-04-08T20:57:39.678846+00:00 +2025-11-07,Sketch,all,0,,20260408T193250Z,2026-04-08T20:57:39.678846+00:00 +2025-11-07,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T20:57:39.678846+00:00 +2025-11-07,Sweep AI,all,0,,20260408T193250Z,2026-04-08T20:57:39.678846+00:00 +2025-11-07,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T20:57:39.678846+00:00 +2025-11-08,Aider,all,17,,20260408T193250Z,2026-04-08T20:59:52.190141+00:00 +2025-11-08,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T20:59:52.190141+00:00 +2025-11-08,ChatGPT,all,0,,20260408T193250Z,2026-04-08T20:59:52.190141+00:00 +2025-11-08,Claude Code,all,26072,,20260408T193250Z,2026-04-08T20:59:52.190141+00:00 +2025-11-08,Cline,all,281,,20260408T193250Z,2026-04-08T20:59:52.190141+00:00 +2025-11-08,Codegen,all,36,,20260408T193250Z,2026-04-08T20:59:52.190141+00:00 +2025-11-08,Coderabbit,all,24,,20260408T193250Z,2026-04-08T20:59:52.190141+00:00 +2025-11-08,Copilot,all,20,,20260408T193250Z,2026-04-08T20:59:52.190141+00:00 +2025-11-08,Copilot SWE Agent,all,9238,,20260408T193250Z,2026-04-08T20:59:52.190141+00:00 +2025-11-08,Crush,all,0,,20260408T193250Z,2026-04-08T20:59:52.190141+00:00 +2025-11-08,Cursor,all,1179,,20260408T193250Z,2026-04-08T20:59:52.190141+00:00 +2025-11-08,DeepSource,all,10,,20260408T193250Z,2026-04-08T20:59:52.190141+00:00 +2025-11-08,Devin,all,16,,20260408T193250Z,2026-04-08T20:59:52.190141+00:00 +2025-11-08,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T20:59:52.190141+00:00 +2025-11-08,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T20:59:52.190141+00:00 +2025-11-08,Gru,all,0,,20260408T193250Z,2026-04-08T20:59:52.190141+00:00 +2025-11-08,Jules (Google),all,1513,,20260408T193250Z,2026-04-08T20:59:52.190141+00:00 +2025-11-08,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T20:59:52.190141+00:00 +2025-11-08,Kilo Code,all,12,,20260408T193250Z,2026-04-08T20:59:52.190141+00:00 +2025-11-08,Lovable,all,0,,20260408T193250Z,2026-04-08T20:59:52.190141+00:00 +2025-11-08,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T20:59:52.190141+00:00 +2025-11-08,OpenCode,all,0,,20260408T193250Z,2026-04-08T20:59:52.190141+00:00 +2025-11-08,OpenHands,all,43,,20260408T193250Z,2026-04-08T20:59:52.190141+00:00 +2025-11-08,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T20:59:52.190141+00:00 +2025-11-08,Roo Code,all,0,,20260408T193250Z,2026-04-08T20:59:52.190141+00:00 +2025-11-08,Sketch,all,0,,20260408T193250Z,2026-04-08T20:59:52.190141+00:00 +2025-11-08,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T20:59:52.190141+00:00 +2025-11-08,Sweep AI,all,4,,20260408T193250Z,2026-04-08T20:59:52.190141+00:00 +2025-11-08,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T20:59:52.190141+00:00 +2025-11-09,Aider,all,50,,20260408T193250Z,2026-04-08T21:02:04.319379+00:00 +2025-11-09,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T21:02:04.319379+00:00 +2025-11-09,ChatGPT,all,2,,20260408T193250Z,2026-04-08T21:02:04.319379+00:00 +2025-11-09,Claude Code,all,27091,,20260408T193250Z,2026-04-08T21:02:04.319379+00:00 +2025-11-09,Cline,all,3573,,20260408T193250Z,2026-04-08T21:02:04.319379+00:00 +2025-11-09,Codegen,all,25,,20260408T193250Z,2026-04-08T21:02:04.319379+00:00 +2025-11-09,Coderabbit,all,5,,20260408T193250Z,2026-04-08T21:02:04.319379+00:00 +2025-11-09,Copilot,all,36,,20260408T193250Z,2026-04-08T21:02:04.319379+00:00 +2025-11-09,Copilot SWE Agent,all,10026,,20260408T193250Z,2026-04-08T21:02:04.319379+00:00 +2025-11-09,Crush,all,0,,20260408T193250Z,2026-04-08T21:02:04.319379+00:00 +2025-11-09,Cursor,all,1213,,20260408T193250Z,2026-04-08T21:02:04.319379+00:00 +2025-11-09,DeepSource,all,5,,20260408T193250Z,2026-04-08T21:02:04.319379+00:00 +2025-11-09,Devin,all,23,,20260408T193250Z,2026-04-08T21:02:04.319379+00:00 +2025-11-09,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T21:02:04.319379+00:00 +2025-11-09,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T21:02:04.319379+00:00 +2025-11-09,Gru,all,0,,20260408T193250Z,2026-04-08T21:02:04.319379+00:00 +2025-11-09,Jules (Google),all,1431,,20260408T193250Z,2026-04-08T21:02:04.319379+00:00 +2025-11-09,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T21:02:04.319379+00:00 +2025-11-09,Kilo Code,all,6,,20260408T193250Z,2026-04-08T21:02:04.319379+00:00 +2025-11-09,Lovable,all,0,,20260408T193250Z,2026-04-08T21:02:04.319379+00:00 +2025-11-09,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T21:02:04.319379+00:00 +2025-11-09,OpenCode,all,0,,20260408T193250Z,2026-04-08T21:02:04.319379+00:00 +2025-11-09,OpenHands,all,118,,20260408T193250Z,2026-04-08T21:02:04.319379+00:00 +2025-11-09,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T21:02:04.319379+00:00 +2025-11-09,Roo Code,all,0,,20260408T193250Z,2026-04-08T21:02:04.319379+00:00 +2025-11-09,Sketch,all,0,,20260408T193250Z,2026-04-08T21:02:04.319379+00:00 +2025-11-09,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T21:02:04.319379+00:00 +2025-11-09,Sweep AI,all,0,,20260408T193250Z,2026-04-08T21:02:04.319379+00:00 +2025-11-09,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T21:02:04.319379+00:00 +2025-11-10,Aider,all,8,,20260408T193250Z,2026-04-08T21:04:16.487760+00:00 +2025-11-10,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T21:04:16.487760+00:00 +2025-11-10,ChatGPT,all,0,,20260408T193250Z,2026-04-08T21:04:16.487760+00:00 +2025-11-10,Claude Code,all,26836,,20260408T193250Z,2026-04-08T21:04:16.487760+00:00 +2025-11-10,Cline,all,694,,20260408T193250Z,2026-04-08T21:04:16.487760+00:00 +2025-11-10,Codegen,all,20,,20260408T193250Z,2026-04-08T21:04:16.487760+00:00 +2025-11-10,Coderabbit,all,13,,20260408T193250Z,2026-04-08T21:04:16.487760+00:00 +2025-11-10,Copilot,all,39,,20260408T193250Z,2026-04-08T21:04:16.487760+00:00 +2025-11-10,Copilot SWE Agent,all,11020,,20260408T193250Z,2026-04-08T21:04:16.487760+00:00 +2025-11-10,Crush,all,0,,20260408T193250Z,2026-04-08T21:04:16.487760+00:00 +2025-11-10,Cursor,all,1206,,20260408T193250Z,2026-04-08T21:04:16.487760+00:00 +2025-11-10,DeepSource,all,4,,20260408T193250Z,2026-04-08T21:04:16.487760+00:00 +2025-11-10,Devin,all,43,,20260408T193250Z,2026-04-08T21:04:16.487760+00:00 +2025-11-10,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T21:04:16.487760+00:00 +2025-11-10,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T21:04:16.487760+00:00 +2025-11-10,Gru,all,0,,20260408T193250Z,2026-04-08T21:04:16.487760+00:00 +2025-11-10,Jules (Google),all,1672,,20260408T193250Z,2026-04-08T21:04:16.487760+00:00 +2025-11-10,Junie (JetBrains),all,3,,20260408T193250Z,2026-04-08T21:04:16.487760+00:00 +2025-11-10,Kilo Code,all,52,,20260408T193250Z,2026-04-08T21:04:16.487760+00:00 +2025-11-10,Lovable,all,7,,20260408T193250Z,2026-04-08T21:04:16.487760+00:00 +2025-11-10,OpenAI Codex,all,2,,20260408T193250Z,2026-04-08T21:04:16.487760+00:00 +2025-11-10,OpenCode,all,0,,20260408T193250Z,2026-04-08T21:04:16.487760+00:00 +2025-11-10,OpenHands,all,95,,20260408T193250Z,2026-04-08T21:04:16.487760+00:00 +2025-11-10,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T21:04:16.487760+00:00 +2025-11-10,Roo Code,all,0,1,20260408T193250Z,2026-04-08T21:04:16.487760+00:00 +2025-11-10,Sketch,all,0,,20260408T193250Z,2026-04-08T21:04:16.487760+00:00 +2025-11-10,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T21:04:16.487760+00:00 +2025-11-10,Sweep AI,all,0,,20260408T193250Z,2026-04-08T21:04:16.487760+00:00 +2025-11-10,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T21:04:16.487760+00:00 +2025-11-11,Aider,all,16,,20260408T193250Z,2026-04-08T21:06:28.481927+00:00 +2025-11-11,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T21:06:28.481927+00:00 +2025-11-11,ChatGPT,all,3,,20260408T193250Z,2026-04-08T21:06:28.481927+00:00 +2025-11-11,Claude Code,all,25395,,20260408T193250Z,2026-04-08T21:06:28.481927+00:00 +2025-11-11,Cline,all,1808,,20260408T193250Z,2026-04-08T21:06:28.481927+00:00 +2025-11-11,Codegen,all,26,,20260408T193250Z,2026-04-08T21:06:28.481927+00:00 +2025-11-11,Coderabbit,all,23,,20260408T193250Z,2026-04-08T21:06:28.481927+00:00 +2025-11-11,Copilot,all,31,,20260408T193250Z,2026-04-08T21:06:28.481927+00:00 +2025-11-11,Copilot SWE Agent,all,10085,,20260408T193250Z,2026-04-08T21:06:28.481927+00:00 +2025-11-11,Crush,all,0,,20260408T193250Z,2026-04-08T21:06:28.481927+00:00 +2025-11-11,Cursor,all,1216,,20260408T193250Z,2026-04-08T21:06:28.481927+00:00 +2025-11-11,DeepSource,all,8,,20260408T193250Z,2026-04-08T21:06:28.481927+00:00 +2025-11-11,Devin,all,27,,20260408T193250Z,2026-04-08T21:06:28.481927+00:00 +2025-11-11,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T21:06:28.481927+00:00 +2025-11-11,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T21:06:28.481927+00:00 +2025-11-11,Gru,all,0,,20260408T193250Z,2026-04-08T21:06:28.481927+00:00 +2025-11-11,Jules (Google),all,1749,,20260408T193250Z,2026-04-08T21:06:28.481927+00:00 +2025-11-11,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T21:06:28.481927+00:00 +2025-11-11,Kilo Code,all,39,,20260408T193250Z,2026-04-08T21:06:28.481927+00:00 +2025-11-11,Lovable,all,0,,20260408T193250Z,2026-04-08T21:06:28.481927+00:00 +2025-11-11,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T21:06:28.481927+00:00 +2025-11-11,OpenCode,all,0,,20260408T193250Z,2026-04-08T21:06:28.481927+00:00 +2025-11-11,OpenHands,all,129,,20260408T193250Z,2026-04-08T21:06:28.481927+00:00 +2025-11-11,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T21:06:28.481927+00:00 +2025-11-11,Roo Code,all,1,,20260408T193250Z,2026-04-08T21:06:28.481927+00:00 +2025-11-11,Sketch,all,0,,20260408T193250Z,2026-04-08T21:06:28.481927+00:00 +2025-11-11,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T21:06:28.481927+00:00 +2025-11-11,Sweep AI,all,0,,20260408T193250Z,2026-04-08T21:06:28.481927+00:00 +2025-11-11,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T21:06:28.481927+00:00 +2025-11-12,Aider,all,9,,20260408T193250Z,2026-04-08T21:08:41.369168+00:00 +2025-11-12,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T21:08:41.369168+00:00 +2025-11-12,ChatGPT,all,0,,20260408T193250Z,2026-04-08T21:08:41.369168+00:00 +2025-11-12,Claude Code,all,27182,1,20260408T193250Z,2026-04-08T21:08:41.369168+00:00 +2025-11-12,Cline,all,1641,,20260408T193250Z,2026-04-08T21:08:41.369168+00:00 +2025-11-12,Codegen,all,88,,20260408T193250Z,2026-04-08T21:08:41.369168+00:00 +2025-11-12,Coderabbit,all,12,,20260408T193250Z,2026-04-08T21:08:41.369168+00:00 +2025-11-12,Copilot,all,138,,20260408T193250Z,2026-04-08T21:08:41.369168+00:00 +2025-11-12,Copilot SWE Agent,all,11481,,20260408T193250Z,2026-04-08T21:08:41.369168+00:00 +2025-11-12,Crush,all,0,,20260408T193250Z,2026-04-08T21:08:41.369168+00:00 +2025-11-12,Cursor,all,866,1,20260408T193250Z,2026-04-08T21:08:41.369168+00:00 +2025-11-12,DeepSource,all,14,,20260408T193250Z,2026-04-08T21:08:41.369168+00:00 +2025-11-12,Devin,all,36,,20260408T193250Z,2026-04-08T21:08:41.369168+00:00 +2025-11-12,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T21:08:41.369168+00:00 +2025-11-12,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T21:08:41.369168+00:00 +2025-11-12,Gru,all,0,,20260408T193250Z,2026-04-08T21:08:41.369168+00:00 +2025-11-12,Jules (Google),all,1785,,20260408T193250Z,2026-04-08T21:08:41.369168+00:00 +2025-11-12,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T21:08:41.369168+00:00 +2025-11-12,Kilo Code,all,45,,20260408T193250Z,2026-04-08T21:08:41.369168+00:00 +2025-11-12,Lovable,all,0,,20260408T193250Z,2026-04-08T21:08:41.369168+00:00 +2025-11-12,OpenAI Codex,all,4,,20260408T193250Z,2026-04-08T21:08:41.369168+00:00 +2025-11-12,OpenCode,all,0,,20260408T193250Z,2026-04-08T21:08:41.369168+00:00 +2025-11-12,OpenHands,all,69,,20260408T193250Z,2026-04-08T21:08:41.369168+00:00 +2025-11-12,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T21:08:41.369168+00:00 +2025-11-12,Roo Code,all,0,,20260408T193250Z,2026-04-08T21:08:41.369168+00:00 +2025-11-12,Sketch,all,0,,20260408T193250Z,2026-04-08T21:08:41.369168+00:00 +2025-11-12,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T21:08:41.369168+00:00 +2025-11-12,Sweep AI,all,0,,20260408T193250Z,2026-04-08T21:08:41.369168+00:00 +2025-11-12,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T21:08:41.369168+00:00 +2025-11-13,Aider,all,60,,20260408T193250Z,2026-04-08T21:11:53.421797+00:00 +2025-11-13,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T21:11:53.421797+00:00 +2025-11-13,ChatGPT,all,0,,20260408T193250Z,2026-04-08T21:11:53.421797+00:00 +2025-11-13,Claude Code,all,32738,,20260408T193250Z,2026-04-08T21:11:53.421797+00:00 +2025-11-13,Cline,all,1618,,20260408T193250Z,2026-04-08T21:11:53.421797+00:00 +2025-11-13,Codegen,all,33,,20260408T193250Z,2026-04-08T21:11:53.421797+00:00 +2025-11-13,Coderabbit,all,14,,20260408T193250Z,2026-04-08T21:11:53.421797+00:00 +2025-11-13,Copilot,all,62,,20260408T193250Z,2026-04-08T21:11:53.421797+00:00 +2025-11-13,Copilot SWE Agent,all,10663,,20260408T193250Z,2026-04-08T21:11:53.421797+00:00 +2025-11-13,Crush,all,0,,20260408T193250Z,2026-04-08T21:11:53.421797+00:00 +2025-11-13,Cursor,all,888,,20260408T193250Z,2026-04-08T21:11:53.421797+00:00 +2025-11-13,DeepSource,all,69,,20260408T193250Z,2026-04-08T21:11:53.421797+00:00 +2025-11-13,Devin,all,49,,20260408T193250Z,2026-04-08T21:11:53.421797+00:00 +2025-11-13,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T21:11:53.421797+00:00 +2025-11-13,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T21:11:53.421797+00:00 +2025-11-13,Gru,all,0,,20260408T193250Z,2026-04-08T21:11:53.421797+00:00 +2025-11-13,Jules (Google),all,1574,,20260408T193250Z,2026-04-08T21:11:53.421797+00:00 +2025-11-13,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T21:11:53.421797+00:00 +2025-11-13,Kilo Code,all,5,,20260408T193250Z,2026-04-08T21:11:53.421797+00:00 +2025-11-13,Lovable,all,0,,20260408T193250Z,2026-04-08T21:11:53.421797+00:00 +2025-11-13,OpenAI Codex,all,46,,20260408T193250Z,2026-04-08T21:11:53.421797+00:00 +2025-11-13,OpenCode,all,0,,20260408T193250Z,2026-04-08T21:11:53.421797+00:00 +2025-11-13,OpenHands,all,39,,20260408T193250Z,2026-04-08T21:11:53.421797+00:00 +2025-11-13,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T21:11:53.421797+00:00 +2025-11-13,Roo Code,all,4,,20260408T193250Z,2026-04-08T21:11:53.421797+00:00 +2025-11-13,Sketch,all,0,,20260408T193250Z,2026-04-08T21:11:53.421797+00:00 +2025-11-13,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T21:11:53.421797+00:00 +2025-11-13,Sweep AI,all,0,,20260408T193250Z,2026-04-08T21:11:53.421797+00:00 +2025-11-13,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T21:11:53.421797+00:00 +2025-11-14,Aider,all,18,,20260408T193250Z,2026-04-08T21:14:06.252429+00:00 +2025-11-14,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T21:14:06.252429+00:00 +2025-11-14,ChatGPT,all,6,,20260408T193250Z,2026-04-08T21:14:06.252429+00:00 +2025-11-14,Claude Code,all,34303,,20260408T193250Z,2026-04-08T21:14:06.252429+00:00 +2025-11-14,Cline,all,706,,20260408T193250Z,2026-04-08T21:14:06.252429+00:00 +2025-11-14,Codegen,all,33,,20260408T193250Z,2026-04-08T21:14:06.252429+00:00 +2025-11-14,Coderabbit,all,18,,20260408T193250Z,2026-04-08T21:14:06.252429+00:00 +2025-11-14,Copilot,all,100,,20260408T193250Z,2026-04-08T21:14:06.252429+00:00 +2025-11-14,Copilot SWE Agent,all,10717,,20260408T193250Z,2026-04-08T21:14:06.252429+00:00 +2025-11-14,Crush,all,0,,20260408T193250Z,2026-04-08T21:14:06.252429+00:00 +2025-11-14,Cursor,all,979,,20260408T193250Z,2026-04-08T21:14:06.252429+00:00 +2025-11-14,DeepSource,all,26,,20260408T193250Z,2026-04-08T21:14:06.252429+00:00 +2025-11-14,Devin,all,17,,20260408T193250Z,2026-04-08T21:14:06.252429+00:00 +2025-11-14,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T21:14:06.252429+00:00 +2025-11-14,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T21:14:06.252429+00:00 +2025-11-14,Gru,all,0,,20260408T193250Z,2026-04-08T21:14:06.252429+00:00 +2025-11-14,Jules (Google),all,1501,,20260408T193250Z,2026-04-08T21:14:06.252429+00:00 +2025-11-14,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T21:14:06.252429+00:00 +2025-11-14,Kilo Code,all,21,,20260408T193250Z,2026-04-08T21:14:06.252429+00:00 +2025-11-14,Lovable,all,0,,20260408T193250Z,2026-04-08T21:14:06.252429+00:00 +2025-11-14,OpenAI Codex,all,5,,20260408T193250Z,2026-04-08T21:14:06.252429+00:00 +2025-11-14,OpenCode,all,0,,20260408T193250Z,2026-04-08T21:14:06.252429+00:00 +2025-11-14,OpenHands,all,28,,20260408T193250Z,2026-04-08T21:14:06.252429+00:00 +2025-11-14,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T21:14:06.252429+00:00 +2025-11-14,Roo Code,all,0,,20260408T193250Z,2026-04-08T21:14:06.252429+00:00 +2025-11-14,Sketch,all,0,,20260408T193250Z,2026-04-08T21:14:06.252429+00:00 +2025-11-14,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T21:14:06.252429+00:00 +2025-11-14,Sweep AI,all,0,,20260408T193250Z,2026-04-08T21:14:06.252429+00:00 +2025-11-14,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T21:14:06.252429+00:00 +2025-11-15,Aider,all,16,,20260408T193250Z,2026-04-08T21:16:18.850536+00:00 +2025-11-15,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T21:16:18.850536+00:00 +2025-11-15,ChatGPT,all,0,,20260408T193250Z,2026-04-08T21:16:18.850536+00:00 +2025-11-15,Claude Code,all,33446,,20260408T193250Z,2026-04-08T21:16:18.850536+00:00 +2025-11-15,Cline,all,464,,20260408T193250Z,2026-04-08T21:16:18.850536+00:00 +2025-11-15,Codegen,all,14,,20260408T193250Z,2026-04-08T21:16:18.850536+00:00 +2025-11-15,Coderabbit,all,14,,20260408T193250Z,2026-04-08T21:16:18.850536+00:00 +2025-11-15,Copilot,all,28,,20260408T193250Z,2026-04-08T21:16:18.850536+00:00 +2025-11-15,Copilot SWE Agent,all,9978,,20260408T193250Z,2026-04-08T21:16:18.850536+00:00 +2025-11-15,Crush,all,0,,20260408T193250Z,2026-04-08T21:16:18.850536+00:00 +2025-11-15,Cursor,all,766,,20260408T193250Z,2026-04-08T21:16:18.850536+00:00 +2025-11-15,DeepSource,all,36,,20260408T193250Z,2026-04-08T21:16:18.850536+00:00 +2025-11-15,Devin,all,11,,20260408T193250Z,2026-04-08T21:16:18.850536+00:00 +2025-11-15,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T21:16:18.850536+00:00 +2025-11-15,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T21:16:18.850536+00:00 +2025-11-15,Gru,all,0,,20260408T193250Z,2026-04-08T21:16:18.850536+00:00 +2025-11-15,Jules (Google),all,1484,,20260408T193250Z,2026-04-08T21:16:18.850536+00:00 +2025-11-15,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T21:16:18.850536+00:00 +2025-11-15,Kilo Code,all,25,,20260408T193250Z,2026-04-08T21:16:18.850536+00:00 +2025-11-15,Lovable,all,0,,20260408T193250Z,2026-04-08T21:16:18.850536+00:00 +2025-11-15,OpenAI Codex,all,8,,20260408T193250Z,2026-04-08T21:16:18.850536+00:00 +2025-11-15,OpenCode,all,0,,20260408T193250Z,2026-04-08T21:16:18.850536+00:00 +2025-11-15,OpenHands,all,17,,20260408T193250Z,2026-04-08T21:16:18.850536+00:00 +2025-11-15,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T21:16:18.850536+00:00 +2025-11-15,Roo Code,all,0,,20260408T193250Z,2026-04-08T21:16:18.850536+00:00 +2025-11-15,Sketch,all,0,,20260408T193250Z,2026-04-08T21:16:18.850536+00:00 +2025-11-15,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T21:16:18.850536+00:00 +2025-11-15,Sweep AI,all,0,,20260408T193250Z,2026-04-08T21:16:18.850536+00:00 +2025-11-15,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T21:16:18.850536+00:00 +2025-11-16,Aider,all,48,,20260408T193250Z,2026-04-08T21:18:31.250582+00:00 +2025-11-16,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T21:18:31.250582+00:00 +2025-11-16,ChatGPT,all,0,,20260408T193250Z,2026-04-08T21:18:31.250582+00:00 +2025-11-16,Claude Code,all,39830,,20260408T193250Z,2026-04-08T21:18:31.250582+00:00 +2025-11-16,Cline,all,1820,,20260408T193250Z,2026-04-08T21:18:31.250582+00:00 +2025-11-16,Codegen,all,44,,20260408T193250Z,2026-04-08T21:18:31.250582+00:00 +2025-11-16,Coderabbit,all,15,,20260408T193250Z,2026-04-08T21:18:31.250582+00:00 +2025-11-16,Copilot,all,172,,20260408T193250Z,2026-04-08T21:18:31.250582+00:00 +2025-11-16,Copilot SWE Agent,all,10710,,20260408T193250Z,2026-04-08T21:18:31.250582+00:00 +2025-11-16,Crush,all,0,,20260408T193250Z,2026-04-08T21:18:31.250582+00:00 +2025-11-16,Cursor,all,658,,20260408T193250Z,2026-04-08T21:18:31.250582+00:00 +2025-11-16,DeepSource,all,10,1,20260408T193250Z,2026-04-08T21:18:31.250582+00:00 +2025-11-16,Devin,all,7,,20260408T193250Z,2026-04-08T21:18:31.250582+00:00 +2025-11-16,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T21:18:31.250582+00:00 +2025-11-16,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T21:18:31.250582+00:00 +2025-11-16,Gru,all,0,,20260408T193250Z,2026-04-08T21:18:31.250582+00:00 +2025-11-16,Jules (Google),all,1390,,20260408T193250Z,2026-04-08T21:18:31.250582+00:00 +2025-11-16,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T21:18:31.250582+00:00 +2025-11-16,Kilo Code,all,13,,20260408T193250Z,2026-04-08T21:18:31.250582+00:00 +2025-11-16,Lovable,all,3,,20260408T193250Z,2026-04-08T21:18:31.250582+00:00 +2025-11-16,OpenAI Codex,all,7,,20260408T193250Z,2026-04-08T21:18:31.250582+00:00 +2025-11-16,OpenCode,all,0,,20260408T193250Z,2026-04-08T21:18:31.250582+00:00 +2025-11-16,OpenHands,all,76,,20260408T193250Z,2026-04-08T21:18:31.250582+00:00 +2025-11-16,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T21:18:31.250582+00:00 +2025-11-16,Roo Code,all,2,,20260408T193250Z,2026-04-08T21:18:31.250582+00:00 +2025-11-16,Sketch,all,0,,20260408T193250Z,2026-04-08T21:18:31.250582+00:00 +2025-11-16,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T21:18:31.250582+00:00 +2025-11-16,Sweep AI,all,0,,20260408T193250Z,2026-04-08T21:18:31.250582+00:00 +2025-11-16,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T21:18:31.250582+00:00 +2025-11-17,Aider,all,6,,20260408T193250Z,2026-04-08T21:20:45.043852+00:00 +2025-11-17,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T21:20:45.043852+00:00 +2025-11-17,ChatGPT,all,2,,20260408T193250Z,2026-04-08T21:20:45.043852+00:00 +2025-11-17,Claude Code,all,44662,,20260408T193250Z,2026-04-08T21:20:45.043852+00:00 +2025-11-17,Cline,all,2062,,20260408T193250Z,2026-04-08T21:20:45.043852+00:00 +2025-11-17,Codegen,all,26,,20260408T193250Z,2026-04-08T21:20:45.043852+00:00 +2025-11-17,Coderabbit,all,13,,20260408T193250Z,2026-04-08T21:20:45.043852+00:00 +2025-11-17,Copilot,all,207,,20260408T193250Z,2026-04-08T21:20:45.043852+00:00 +2025-11-17,Copilot SWE Agent,all,11508,,20260408T193250Z,2026-04-08T21:20:45.043852+00:00 +2025-11-17,Crush,all,0,,20260408T193250Z,2026-04-08T21:20:45.043852+00:00 +2025-11-17,Cursor,all,919,,20260408T193250Z,2026-04-08T21:20:45.043852+00:00 +2025-11-17,DeepSource,all,24,,20260408T193250Z,2026-04-08T21:20:45.043852+00:00 +2025-11-17,Devin,all,31,,20260408T193250Z,2026-04-08T21:20:45.043852+00:00 +2025-11-17,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T21:20:45.043852+00:00 +2025-11-17,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T21:20:45.043852+00:00 +2025-11-17,Gru,all,0,,20260408T193250Z,2026-04-08T21:20:45.043852+00:00 +2025-11-17,Jules (Google),all,1413,,20260408T193250Z,2026-04-08T21:20:45.043852+00:00 +2025-11-17,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T21:20:45.043852+00:00 +2025-11-17,Kilo Code,all,25,,20260408T193250Z,2026-04-08T21:20:45.043852+00:00 +2025-11-17,Lovable,all,3,,20260408T193250Z,2026-04-08T21:20:45.043852+00:00 +2025-11-17,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T21:20:45.043852+00:00 +2025-11-17,OpenCode,all,0,,20260408T193250Z,2026-04-08T21:20:45.043852+00:00 +2025-11-17,OpenHands,all,38,,20260408T193250Z,2026-04-08T21:20:45.043852+00:00 +2025-11-17,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T21:20:45.043852+00:00 +2025-11-17,Roo Code,all,18,,20260408T193250Z,2026-04-08T21:20:45.043852+00:00 +2025-11-17,Sketch,all,0,,20260408T193250Z,2026-04-08T21:20:45.043852+00:00 +2025-11-17,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T21:20:45.043852+00:00 +2025-11-17,Sweep AI,all,0,,20260408T193250Z,2026-04-08T21:20:45.043852+00:00 +2025-11-17,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T21:20:45.043852+00:00 +2025-11-18,Aider,all,1,,20260408T193250Z,2026-04-08T21:22:58.430013+00:00 +2025-11-18,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T21:22:58.430013+00:00 +2025-11-18,ChatGPT,all,3,,20260408T193250Z,2026-04-08T21:22:58.430013+00:00 +2025-11-18,Claude Code,all,48638,,20260408T193250Z,2026-04-08T21:22:58.430013+00:00 +2025-11-18,Cline,all,2257,,20260408T193250Z,2026-04-08T21:22:58.430013+00:00 +2025-11-18,Codegen,all,55,,20260408T193250Z,2026-04-08T21:22:58.430013+00:00 +2025-11-18,Coderabbit,all,11,,20260408T193250Z,2026-04-08T21:22:58.430013+00:00 +2025-11-18,Copilot,all,118,,20260408T193250Z,2026-04-08T21:22:58.430013+00:00 +2025-11-18,Copilot SWE Agent,all,10478,,20260408T193250Z,2026-04-08T21:22:58.430013+00:00 +2025-11-18,Crush,all,0,,20260408T193250Z,2026-04-08T21:22:58.430013+00:00 +2025-11-18,Cursor,all,700,,20260408T193250Z,2026-04-08T21:22:58.430013+00:00 +2025-11-18,DeepSource,all,70,,20260408T193250Z,2026-04-08T21:22:58.430013+00:00 +2025-11-18,Devin,all,23,,20260408T193250Z,2026-04-08T21:22:58.430013+00:00 +2025-11-18,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T21:22:58.430013+00:00 +2025-11-18,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T21:22:58.430013+00:00 +2025-11-18,Gru,all,0,,20260408T193250Z,2026-04-08T21:22:58.430013+00:00 +2025-11-18,Jules (Google),all,1482,,20260408T193250Z,2026-04-08T21:22:58.430013+00:00 +2025-11-18,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T21:22:58.430013+00:00 +2025-11-18,Kilo Code,all,5,,20260408T193250Z,2026-04-08T21:22:58.430013+00:00 +2025-11-18,Lovable,all,12,,20260408T193250Z,2026-04-08T21:22:58.430013+00:00 +2025-11-18,OpenAI Codex,all,3,,20260408T193250Z,2026-04-08T21:22:58.430013+00:00 +2025-11-18,OpenCode,all,0,,20260408T193250Z,2026-04-08T21:22:58.430013+00:00 +2025-11-18,OpenHands,all,45,,20260408T193250Z,2026-04-08T21:22:58.430013+00:00 +2025-11-18,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T21:22:58.430013+00:00 +2025-11-18,Roo Code,all,5,,20260408T193250Z,2026-04-08T21:22:58.430013+00:00 +2025-11-18,Sketch,all,0,,20260408T193250Z,2026-04-08T21:22:58.430013+00:00 +2025-11-18,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T21:22:58.430013+00:00 +2025-11-18,Sweep AI,all,0,,20260408T193250Z,2026-04-08T21:22:58.430013+00:00 +2025-11-18,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T21:22:58.430013+00:00 +2025-11-19,Aider,all,7,,20260408T193250Z,2026-04-08T21:25:12.881306+00:00 +2025-11-19,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T21:25:12.881306+00:00 +2025-11-19,ChatGPT,all,9,,20260408T193250Z,2026-04-08T21:25:12.881306+00:00 +2025-11-19,Claude Code,all,36415,,20260408T193250Z,2026-04-08T21:25:12.881306+00:00 +2025-11-19,Cline,all,2949,,20260408T193250Z,2026-04-08T21:25:12.881306+00:00 +2025-11-19,Codegen,all,80,,20260408T193250Z,2026-04-08T21:25:12.881306+00:00 +2025-11-19,Coderabbit,all,15,,20260408T193250Z,2026-04-08T21:25:12.881306+00:00 +2025-11-19,Copilot,all,133,1,20260408T193250Z,2026-04-08T21:25:12.881306+00:00 +2025-11-19,Copilot SWE Agent,all,10431,,20260408T193250Z,2026-04-08T21:25:12.881306+00:00 +2025-11-19,Crush,all,3,,20260408T193250Z,2026-04-08T21:25:12.881306+00:00 +2025-11-19,Cursor,all,767,,20260408T193250Z,2026-04-08T21:25:12.881306+00:00 +2025-11-19,DeepSource,all,61,,20260408T193250Z,2026-04-08T21:25:12.881306+00:00 +2025-11-19,Devin,all,46,,20260408T193250Z,2026-04-08T21:25:12.881306+00:00 +2025-11-19,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T21:25:12.881306+00:00 +2025-11-19,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T21:25:12.881306+00:00 +2025-11-19,Gru,all,0,,20260408T193250Z,2026-04-08T21:25:12.881306+00:00 +2025-11-19,Jules (Google),all,1492,,20260408T193250Z,2026-04-08T21:25:12.881306+00:00 +2025-11-19,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T21:25:12.881306+00:00 +2025-11-19,Kilo Code,all,21,,20260408T193250Z,2026-04-08T21:25:12.881306+00:00 +2025-11-19,Lovable,all,2,,20260408T193250Z,2026-04-08T21:25:12.881306+00:00 +2025-11-19,OpenAI Codex,all,10,,20260408T193250Z,2026-04-08T21:25:12.881306+00:00 +2025-11-19,OpenCode,all,0,,20260408T193250Z,2026-04-08T21:25:12.881306+00:00 +2025-11-19,OpenHands,all,42,,20260408T193250Z,2026-04-08T21:25:12.881306+00:00 +2025-11-19,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T21:25:12.881306+00:00 +2025-11-19,Roo Code,all,14,,20260408T193250Z,2026-04-08T21:25:12.881306+00:00 +2025-11-19,Sketch,all,0,,20260408T193250Z,2026-04-08T21:25:12.881306+00:00 +2025-11-19,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T21:25:12.881306+00:00 +2025-11-19,Sweep AI,all,2,,20260408T193250Z,2026-04-08T21:25:12.881306+00:00 +2025-11-19,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T21:25:12.881306+00:00 +2025-11-20,Aider,all,47,,20260408T193250Z,2026-04-08T21:27:25.297634+00:00 +2025-11-20,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T21:27:25.297634+00:00 +2025-11-20,ChatGPT,all,2,,20260408T193250Z,2026-04-08T21:27:25.297634+00:00 +2025-11-20,Claude Code,all,28379,,20260408T193250Z,2026-04-08T21:27:25.297634+00:00 +2025-11-20,Cline,all,3386,,20260408T193250Z,2026-04-08T21:27:25.297634+00:00 +2025-11-20,Codegen,all,37,,20260408T193250Z,2026-04-08T21:27:25.297634+00:00 +2025-11-20,Coderabbit,all,12,,20260408T193250Z,2026-04-08T21:27:25.297634+00:00 +2025-11-20,Copilot,all,337,,20260408T193250Z,2026-04-08T21:27:25.297634+00:00 +2025-11-20,Copilot SWE Agent,all,11076,,20260408T193250Z,2026-04-08T21:27:25.297634+00:00 +2025-11-20,Crush,all,0,,20260408T193250Z,2026-04-08T21:27:25.297634+00:00 +2025-11-20,Cursor,all,876,,20260408T193250Z,2026-04-08T21:27:25.297634+00:00 +2025-11-20,DeepSource,all,68,,20260408T193250Z,2026-04-08T21:27:25.297634+00:00 +2025-11-20,Devin,all,54,,20260408T193250Z,2026-04-08T21:27:25.297634+00:00 +2025-11-20,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T21:27:25.297634+00:00 +2025-11-20,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T21:27:25.297634+00:00 +2025-11-20,Gru,all,0,1,20260408T193250Z,2026-04-08T21:27:25.297634+00:00 +2025-11-20,Jules (Google),all,2007,,20260408T193250Z,2026-04-08T21:27:25.297634+00:00 +2025-11-20,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T21:27:25.297634+00:00 +2025-11-20,Kilo Code,all,14,,20260408T193250Z,2026-04-08T21:27:25.297634+00:00 +2025-11-20,Lovable,all,1,,20260408T193250Z,2026-04-08T21:27:25.297634+00:00 +2025-11-20,OpenAI Codex,all,12,,20260408T193250Z,2026-04-08T21:27:25.297634+00:00 +2025-11-20,OpenCode,all,0,,20260408T193250Z,2026-04-08T21:27:25.297634+00:00 +2025-11-20,OpenHands,all,42,,20260408T193250Z,2026-04-08T21:27:25.297634+00:00 +2025-11-20,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T21:27:25.297634+00:00 +2025-11-20,Roo Code,all,3,,20260408T193250Z,2026-04-08T21:27:25.297634+00:00 +2025-11-20,Sketch,all,0,,20260408T193250Z,2026-04-08T21:27:25.297634+00:00 +2025-11-20,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T21:27:25.297634+00:00 +2025-11-20,Sweep AI,all,3,,20260408T193250Z,2026-04-08T21:27:25.297634+00:00 +2025-11-20,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T21:27:25.297634+00:00 +2025-11-21,Aider,all,7,,20260408T193250Z,2026-04-08T21:29:37.587036+00:00 +2025-11-21,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T21:29:37.587036+00:00 +2025-11-21,ChatGPT,all,1,,20260408T193250Z,2026-04-08T21:29:37.587036+00:00 +2025-11-21,Claude Code,all,27535,,20260408T193250Z,2026-04-08T21:29:37.587036+00:00 +2025-11-21,Cline,all,1630,,20260408T193250Z,2026-04-08T21:29:37.587036+00:00 +2025-11-21,Codegen,all,26,,20260408T193250Z,2026-04-08T21:29:37.587036+00:00 +2025-11-21,Coderabbit,all,13,,20260408T193250Z,2026-04-08T21:29:37.587036+00:00 +2025-11-21,Copilot,all,152,1,20260408T193250Z,2026-04-08T21:29:37.587036+00:00 +2025-11-21,Copilot SWE Agent,all,13055,,20260408T193250Z,2026-04-08T21:29:37.587036+00:00 +2025-11-21,Crush,all,0,,20260408T193250Z,2026-04-08T21:29:37.587036+00:00 +2025-11-21,Cursor,all,557,,20260408T193250Z,2026-04-08T21:29:37.587036+00:00 +2025-11-21,DeepSource,all,43,,20260408T193250Z,2026-04-08T21:29:37.587036+00:00 +2025-11-21,Devin,all,80,,20260408T193250Z,2026-04-08T21:29:37.587036+00:00 +2025-11-21,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T21:29:37.587036+00:00 +2025-11-21,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T21:29:37.587036+00:00 +2025-11-21,Gru,all,0,,20260408T193250Z,2026-04-08T21:29:37.587036+00:00 +2025-11-21,Jules (Google),all,2148,,20260408T193250Z,2026-04-08T21:29:37.587036+00:00 +2025-11-21,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T21:29:37.587036+00:00 +2025-11-21,Kilo Code,all,20,,20260408T193250Z,2026-04-08T21:29:37.587036+00:00 +2025-11-21,Lovable,all,5,,20260408T193250Z,2026-04-08T21:29:37.587036+00:00 +2025-11-21,OpenAI Codex,all,9,,20260408T193250Z,2026-04-08T21:29:37.587036+00:00 +2025-11-21,OpenCode,all,0,,20260408T193250Z,2026-04-08T21:29:37.587036+00:00 +2025-11-21,OpenHands,all,82,,20260408T193250Z,2026-04-08T21:29:37.587036+00:00 +2025-11-21,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T21:29:37.587036+00:00 +2025-11-21,Roo Code,all,2,,20260408T193250Z,2026-04-08T21:29:37.587036+00:00 +2025-11-21,Sketch,all,0,,20260408T193250Z,2026-04-08T21:29:37.587036+00:00 +2025-11-21,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T21:29:37.587036+00:00 +2025-11-21,Sweep AI,all,4,,20260408T193250Z,2026-04-08T21:29:37.587036+00:00 +2025-11-21,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T21:29:37.587036+00:00 +2025-11-22,Aider,all,28,,20260408T193250Z,2026-04-08T21:32:52.563196+00:00 +2025-11-22,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T21:32:52.563196+00:00 +2025-11-22,ChatGPT,all,1,,20260408T193250Z,2026-04-08T21:32:52.563196+00:00 +2025-11-22,Claude Code,all,27815,,20260408T193250Z,2026-04-08T21:32:52.563196+00:00 +2025-11-22,Cline,all,116,,20260408T193250Z,2026-04-08T21:32:52.563196+00:00 +2025-11-22,Codegen,all,5,,20260408T193250Z,2026-04-08T21:32:52.563196+00:00 +2025-11-22,Coderabbit,all,9,,20260408T193250Z,2026-04-08T21:32:52.563196+00:00 +2025-11-22,Copilot,all,182,1,20260408T193250Z,2026-04-08T21:32:52.563196+00:00 +2025-11-22,Copilot SWE Agent,all,11777,,20260408T193250Z,2026-04-08T21:32:52.563196+00:00 +2025-11-22,Crush,all,0,,20260408T193250Z,2026-04-08T21:32:52.563196+00:00 +2025-11-22,Cursor,all,983,,20260408T193250Z,2026-04-08T21:32:52.563196+00:00 +2025-11-22,DeepSource,all,15,,20260408T193250Z,2026-04-08T21:32:52.563196+00:00 +2025-11-22,Devin,all,61,,20260408T193250Z,2026-04-08T21:32:52.563196+00:00 +2025-11-22,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T21:32:52.563196+00:00 +2025-11-22,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T21:32:52.563196+00:00 +2025-11-22,Gru,all,0,,20260408T193250Z,2026-04-08T21:32:52.563196+00:00 +2025-11-22,Jules (Google),all,1993,,20260408T193250Z,2026-04-08T21:32:52.563196+00:00 +2025-11-22,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T21:32:52.563196+00:00 +2025-11-22,Kilo Code,all,24,,20260408T193250Z,2026-04-08T21:32:52.563196+00:00 +2025-11-22,Lovable,all,1,,20260408T193250Z,2026-04-08T21:32:52.563196+00:00 +2025-11-22,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T21:32:52.563196+00:00 +2025-11-22,OpenCode,all,0,,20260408T193250Z,2026-04-08T21:32:52.563196+00:00 +2025-11-22,OpenHands,all,23,,20260408T193250Z,2026-04-08T21:32:52.563196+00:00 +2025-11-22,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T21:32:52.563196+00:00 +2025-11-22,Roo Code,all,0,,20260408T193250Z,2026-04-08T21:32:52.563196+00:00 +2025-11-22,Sketch,all,0,,20260408T193250Z,2026-04-08T21:32:52.563196+00:00 +2025-11-22,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T21:32:52.563196+00:00 +2025-11-22,Sweep AI,all,2,,20260408T193250Z,2026-04-08T21:32:52.563196+00:00 +2025-11-22,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T21:32:52.563196+00:00 +2025-11-23,Aider,all,30,,20260408T193250Z,2026-04-08T21:35:05.073235+00:00 +2025-11-23,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T21:35:05.073235+00:00 +2025-11-23,ChatGPT,all,0,,20260408T193250Z,2026-04-08T21:35:05.073235+00:00 +2025-11-23,Claude Code,all,24777,,20260408T193250Z,2026-04-08T21:35:05.073235+00:00 +2025-11-23,Cline,all,1183,,20260408T193250Z,2026-04-08T21:35:05.073235+00:00 +2025-11-23,Codegen,all,0,,20260408T193250Z,2026-04-08T21:35:05.073235+00:00 +2025-11-23,Coderabbit,all,19,,20260408T193250Z,2026-04-08T21:35:05.073235+00:00 +2025-11-23,Copilot,all,131,1,20260408T193250Z,2026-04-08T21:35:05.073235+00:00 +2025-11-23,Copilot SWE Agent,all,11937,,20260408T193250Z,2026-04-08T21:35:05.073235+00:00 +2025-11-23,Crush,all,0,,20260408T193250Z,2026-04-08T21:35:05.073235+00:00 +2025-11-23,Cursor,all,927,,20260408T193250Z,2026-04-08T21:35:05.073235+00:00 +2025-11-23,DeepSource,all,26,,20260408T193250Z,2026-04-08T21:35:05.073235+00:00 +2025-11-23,Devin,all,103,,20260408T193250Z,2026-04-08T21:35:05.073235+00:00 +2025-11-23,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T21:35:05.073235+00:00 +2025-11-23,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T21:35:05.073235+00:00 +2025-11-23,Gru,all,0,,20260408T193250Z,2026-04-08T21:35:05.073235+00:00 +2025-11-23,Jules (Google),all,2336,,20260408T193250Z,2026-04-08T21:35:05.073235+00:00 +2025-11-23,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T21:35:05.073235+00:00 +2025-11-23,Kilo Code,all,21,,20260408T193250Z,2026-04-08T21:35:05.073235+00:00 +2025-11-23,Lovable,all,0,,20260408T193250Z,2026-04-08T21:35:05.073235+00:00 +2025-11-23,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T21:35:05.073235+00:00 +2025-11-23,OpenCode,all,0,,20260408T193250Z,2026-04-08T21:35:05.073235+00:00 +2025-11-23,OpenHands,all,55,,20260408T193250Z,2026-04-08T21:35:05.073235+00:00 +2025-11-23,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T21:35:05.073235+00:00 +2025-11-23,Roo Code,all,1,,20260408T193250Z,2026-04-08T21:35:05.073235+00:00 +2025-11-23,Sketch,all,0,,20260408T193250Z,2026-04-08T21:35:05.073235+00:00 +2025-11-23,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T21:35:05.073235+00:00 +2025-11-23,Sweep AI,all,0,,20260408T193250Z,2026-04-08T21:35:05.073235+00:00 +2025-11-23,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T21:35:05.073235+00:00 +2025-11-24,Aider,all,2,,20260408T193250Z,2026-04-08T21:37:18.803881+00:00 +2025-11-24,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T21:37:18.803881+00:00 +2025-11-24,ChatGPT,all,1,,20260408T193250Z,2026-04-08T21:37:18.803881+00:00 +2025-11-24,Claude Code,all,20537,,20260408T193250Z,2026-04-08T21:37:18.803881+00:00 +2025-11-24,Cline,all,1872,,20260408T193250Z,2026-04-08T21:37:18.803881+00:00 +2025-11-24,Codegen,all,12,,20260408T193250Z,2026-04-08T21:37:18.803881+00:00 +2025-11-24,Coderabbit,all,9,,20260408T193250Z,2026-04-08T21:37:18.803881+00:00 +2025-11-24,Copilot,all,168,1,20260408T193250Z,2026-04-08T21:37:18.803881+00:00 +2025-11-24,Copilot SWE Agent,all,12379,,20260408T193250Z,2026-04-08T21:37:18.803881+00:00 +2025-11-24,Crush,all,2,,20260408T193250Z,2026-04-08T21:37:18.803881+00:00 +2025-11-24,Cursor,all,922,,20260408T193250Z,2026-04-08T21:37:18.803881+00:00 +2025-11-24,DeepSource,all,4,,20260408T193250Z,2026-04-08T21:37:18.803881+00:00 +2025-11-24,Devin,all,156,,20260408T193250Z,2026-04-08T21:37:18.803881+00:00 +2025-11-24,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T21:37:18.803881+00:00 +2025-11-24,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T21:37:18.803881+00:00 +2025-11-24,Gru,all,0,,20260408T193250Z,2026-04-08T21:37:18.803881+00:00 +2025-11-24,Jules (Google),all,2366,,20260408T193250Z,2026-04-08T21:37:18.803881+00:00 +2025-11-24,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T21:37:18.803881+00:00 +2025-11-24,Kilo Code,all,20,,20260408T193250Z,2026-04-08T21:37:18.803881+00:00 +2025-11-24,Lovable,all,0,,20260408T193250Z,2026-04-08T21:37:18.803881+00:00 +2025-11-24,OpenAI Codex,all,14,,20260408T193250Z,2026-04-08T21:37:18.803881+00:00 +2025-11-24,OpenCode,all,0,,20260408T193250Z,2026-04-08T21:37:18.803881+00:00 +2025-11-24,OpenHands,all,222,,20260408T193250Z,2026-04-08T21:37:18.803881+00:00 +2025-11-24,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T21:37:18.803881+00:00 +2025-11-24,Roo Code,all,1,,20260408T193250Z,2026-04-08T21:37:18.803881+00:00 +2025-11-24,Sketch,all,0,,20260408T193250Z,2026-04-08T21:37:18.803881+00:00 +2025-11-24,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T21:37:18.803881+00:00 +2025-11-24,Sweep AI,all,0,,20260408T193250Z,2026-04-08T21:37:18.803881+00:00 +2025-11-24,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T21:37:18.803881+00:00 +2025-11-25,Aider,all,0,,20260408T193250Z,2026-04-08T21:39:31.800933+00:00 +2025-11-25,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T21:39:31.800933+00:00 +2025-11-25,ChatGPT,all,0,,20260408T193250Z,2026-04-08T21:39:31.800933+00:00 +2025-11-25,Claude Code,all,15498,,20260408T193250Z,2026-04-08T21:39:31.800933+00:00 +2025-11-25,Cline,all,2669,,20260408T193250Z,2026-04-08T21:39:31.800933+00:00 +2025-11-25,Codegen,all,35,,20260408T193250Z,2026-04-08T21:39:31.800933+00:00 +2025-11-25,Coderabbit,all,11,,20260408T193250Z,2026-04-08T21:39:31.800933+00:00 +2025-11-25,Copilot,all,183,,20260408T193250Z,2026-04-08T21:39:31.800933+00:00 +2025-11-25,Copilot SWE Agent,all,10197,,20260408T193250Z,2026-04-08T21:39:31.800933+00:00 +2025-11-25,Crush,all,0,,20260408T193250Z,2026-04-08T21:39:31.800933+00:00 +2025-11-25,Cursor,all,680,,20260408T193250Z,2026-04-08T21:39:31.800933+00:00 +2025-11-25,DeepSource,all,9,,20260408T193250Z,2026-04-08T21:39:31.800933+00:00 +2025-11-25,Devin,all,175,,20260408T193250Z,2026-04-08T21:39:31.800933+00:00 +2025-11-25,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T21:39:31.800933+00:00 +2025-11-25,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T21:39:31.800933+00:00 +2025-11-25,Gru,all,1,,20260408T193250Z,2026-04-08T21:39:31.800933+00:00 +2025-11-25,Jules (Google),all,1935,,20260408T193250Z,2026-04-08T21:39:31.800933+00:00 +2025-11-25,Junie (JetBrains),all,14,,20260408T193250Z,2026-04-08T21:39:31.800933+00:00 +2025-11-25,Kilo Code,all,23,,20260408T193250Z,2026-04-08T21:39:31.800933+00:00 +2025-11-25,Lovable,all,0,,20260408T193250Z,2026-04-08T21:39:31.800933+00:00 +2025-11-25,OpenAI Codex,all,1,,20260408T193250Z,2026-04-08T21:39:31.800933+00:00 +2025-11-25,OpenCode,all,0,,20260408T193250Z,2026-04-08T21:39:31.800933+00:00 +2025-11-25,OpenHands,all,85,,20260408T193250Z,2026-04-08T21:39:31.800933+00:00 +2025-11-25,Qwen Coder,all,1,,20260408T193250Z,2026-04-08T21:39:31.800933+00:00 +2025-11-25,Roo Code,all,9,,20260408T193250Z,2026-04-08T21:39:31.800933+00:00 +2025-11-25,Sketch,all,0,,20260408T193250Z,2026-04-08T21:39:31.800933+00:00 +2025-11-25,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T21:39:31.800933+00:00 +2025-11-25,Sweep AI,all,0,,20260408T193250Z,2026-04-08T21:39:31.800933+00:00 +2025-11-25,Warp (Oz Agent),all,1,,20260408T193250Z,2026-04-08T21:39:31.800933+00:00 +2025-11-26,Aider,all,33,,20260408T193250Z,2026-04-08T21:41:47.111830+00:00 +2025-11-26,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T21:41:47.111830+00:00 +2025-11-26,ChatGPT,all,0,,20260408T193250Z,2026-04-08T21:41:47.111830+00:00 +2025-11-26,Claude Code,all,15183,,20260408T193250Z,2026-04-08T21:41:47.111830+00:00 +2025-11-26,Cline,all,2031,,20260408T193250Z,2026-04-08T21:41:47.111830+00:00 +2025-11-26,Codegen,all,43,,20260408T193250Z,2026-04-08T21:41:47.111830+00:00 +2025-11-26,Coderabbit,all,15,,20260408T193250Z,2026-04-08T21:41:47.111830+00:00 +2025-11-26,Copilot,all,98,1,20260408T193250Z,2026-04-08T21:41:47.111830+00:00 +2025-11-26,Copilot SWE Agent,all,11258,,20260408T193250Z,2026-04-08T21:41:47.111830+00:00 +2025-11-26,Crush,all,0,,20260408T193250Z,2026-04-08T21:41:47.111830+00:00 +2025-11-26,Cursor,all,900,,20260408T193250Z,2026-04-08T21:41:47.111830+00:00 +2025-11-26,DeepSource,all,22,,20260408T193250Z,2026-04-08T21:41:47.111830+00:00 +2025-11-26,Devin,all,98,,20260408T193250Z,2026-04-08T21:41:47.111830+00:00 +2025-11-26,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T21:41:47.111830+00:00 +2025-11-26,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T21:41:47.111830+00:00 +2025-11-26,Gru,all,0,,20260408T193250Z,2026-04-08T21:41:47.111830+00:00 +2025-11-26,Jules (Google),all,1704,,20260408T193250Z,2026-04-08T21:41:47.111830+00:00 +2025-11-26,Junie (JetBrains),all,10,,20260408T193250Z,2026-04-08T21:41:47.111830+00:00 +2025-11-26,Kilo Code,all,10,,20260408T193250Z,2026-04-08T21:41:47.111830+00:00 +2025-11-26,Lovable,all,2,,20260408T193250Z,2026-04-08T21:41:47.111830+00:00 +2025-11-26,OpenAI Codex,all,4,,20260408T193250Z,2026-04-08T21:41:47.111830+00:00 +2025-11-26,OpenCode,all,0,,20260408T193250Z,2026-04-08T21:41:47.111830+00:00 +2025-11-26,OpenHands,all,96,,20260408T193250Z,2026-04-08T21:41:47.111830+00:00 +2025-11-26,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T21:41:47.111830+00:00 +2025-11-26,Roo Code,all,1,,20260408T193250Z,2026-04-08T21:41:47.111830+00:00 +2025-11-26,Sketch,all,0,,20260408T193250Z,2026-04-08T21:41:47.111830+00:00 +2025-11-26,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T21:41:47.111830+00:00 +2025-11-26,Sweep AI,all,1,,20260408T193250Z,2026-04-08T21:41:47.111830+00:00 +2025-11-26,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T21:41:47.111830+00:00 +2025-11-27,Aider,all,1,,20260408T193250Z,2026-04-08T21:43:59.751341+00:00 +2025-11-27,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T21:43:59.751341+00:00 +2025-11-27,ChatGPT,all,6,,20260408T193250Z,2026-04-08T21:43:59.751341+00:00 +2025-11-27,Claude Code,all,13871,,20260408T193250Z,2026-04-08T21:43:59.751341+00:00 +2025-11-27,Cline,all,53,,20260408T193250Z,2026-04-08T21:43:59.751341+00:00 +2025-11-27,Codegen,all,16,,20260408T193250Z,2026-04-08T21:43:59.751341+00:00 +2025-11-27,Coderabbit,all,5,,20260408T193250Z,2026-04-08T21:43:59.751341+00:00 +2025-11-27,Copilot,all,89,,20260408T193250Z,2026-04-08T21:43:59.751341+00:00 +2025-11-27,Copilot SWE Agent,all,12492,,20260408T193250Z,2026-04-08T21:43:59.751341+00:00 +2025-11-27,Crush,all,0,,20260408T193250Z,2026-04-08T21:43:59.751341+00:00 +2025-11-27,Cursor,all,1055,,20260408T193250Z,2026-04-08T21:43:59.751341+00:00 +2025-11-27,DeepSource,all,19,,20260408T193250Z,2026-04-08T21:43:59.751341+00:00 +2025-11-27,Devin,all,34,1,20260408T193250Z,2026-04-08T21:43:59.751341+00:00 +2025-11-27,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T21:43:59.751341+00:00 +2025-11-27,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T21:43:59.751341+00:00 +2025-11-27,Gru,all,0,,20260408T193250Z,2026-04-08T21:43:59.751341+00:00 +2025-11-27,Jules (Google),all,1860,,20260408T193250Z,2026-04-08T21:43:59.751341+00:00 +2025-11-27,Junie (JetBrains),all,22,,20260408T193250Z,2026-04-08T21:43:59.751341+00:00 +2025-11-27,Kilo Code,all,5,,20260408T193250Z,2026-04-08T21:43:59.751341+00:00 +2025-11-27,Lovable,all,0,,20260408T193250Z,2026-04-08T21:43:59.751341+00:00 +2025-11-27,OpenAI Codex,all,3,,20260408T193250Z,2026-04-08T21:43:59.751341+00:00 +2025-11-27,OpenCode,all,0,,20260408T193250Z,2026-04-08T21:43:59.751341+00:00 +2025-11-27,OpenHands,all,35,,20260408T193250Z,2026-04-08T21:43:59.751341+00:00 +2025-11-27,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T21:43:59.751341+00:00 +2025-11-27,Roo Code,all,0,,20260408T193250Z,2026-04-08T21:43:59.751341+00:00 +2025-11-27,Sketch,all,0,,20260408T193250Z,2026-04-08T21:43:59.751341+00:00 +2025-11-27,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T21:43:59.751341+00:00 +2025-11-27,Sweep AI,all,0,,20260408T193250Z,2026-04-08T21:43:59.751341+00:00 +2025-11-27,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T21:43:59.751341+00:00 +2025-11-28,Aider,all,7,,20260408T193250Z,2026-04-08T21:46:12.800813+00:00 +2025-11-28,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T21:46:12.800813+00:00 +2025-11-28,ChatGPT,all,4,,20260408T193250Z,2026-04-08T21:46:12.800813+00:00 +2025-11-28,Claude Code,all,12551,,20260408T193250Z,2026-04-08T21:46:12.800813+00:00 +2025-11-28,Cline,all,1349,,20260408T193250Z,2026-04-08T21:46:12.800813+00:00 +2025-11-28,Codegen,all,27,,20260408T193250Z,2026-04-08T21:46:12.800813+00:00 +2025-11-28,Coderabbit,all,9,,20260408T193250Z,2026-04-08T21:46:12.800813+00:00 +2025-11-28,Copilot,all,222,1,20260408T193250Z,2026-04-08T21:46:12.800813+00:00 +2025-11-28,Copilot SWE Agent,all,10367,,20260408T193250Z,2026-04-08T21:46:12.800813+00:00 +2025-11-28,Crush,all,0,,20260408T193250Z,2026-04-08T21:46:12.800813+00:00 +2025-11-28,Cursor,all,941,,20260408T193250Z,2026-04-08T21:46:12.800813+00:00 +2025-11-28,DeepSource,all,19,,20260408T193250Z,2026-04-08T21:46:12.800813+00:00 +2025-11-28,Devin,all,32,,20260408T193250Z,2026-04-08T21:46:12.800813+00:00 +2025-11-28,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T21:46:12.800813+00:00 +2025-11-28,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T21:46:12.800813+00:00 +2025-11-28,Gru,all,0,,20260408T193250Z,2026-04-08T21:46:12.800813+00:00 +2025-11-28,Jules (Google),all,1958,,20260408T193250Z,2026-04-08T21:46:12.800813+00:00 +2025-11-28,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T21:46:12.800813+00:00 +2025-11-28,Kilo Code,all,20,,20260408T193250Z,2026-04-08T21:46:12.800813+00:00 +2025-11-28,Lovable,all,0,,20260408T193250Z,2026-04-08T21:46:12.800813+00:00 +2025-11-28,OpenAI Codex,all,17,,20260408T193250Z,2026-04-08T21:46:12.800813+00:00 +2025-11-28,OpenCode,all,0,,20260408T193250Z,2026-04-08T21:46:12.800813+00:00 +2025-11-28,OpenHands,all,61,,20260408T193250Z,2026-04-08T21:46:12.800813+00:00 +2025-11-28,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T21:46:12.800813+00:00 +2025-11-28,Roo Code,all,0,,20260408T193250Z,2026-04-08T21:46:12.800813+00:00 +2025-11-28,Sketch,all,0,,20260408T193250Z,2026-04-08T21:46:12.800813+00:00 +2025-11-28,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T21:46:12.800813+00:00 +2025-11-28,Sweep AI,all,0,,20260408T193250Z,2026-04-08T21:46:12.800813+00:00 +2025-11-28,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T21:46:12.800813+00:00 +2025-11-29,Aider,all,6,,20260408T193250Z,2026-04-08T21:48:26.090473+00:00 +2025-11-29,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T21:48:26.090473+00:00 +2025-11-29,ChatGPT,all,17,,20260408T193250Z,2026-04-08T21:48:26.090473+00:00 +2025-11-29,Claude Code,all,11964,,20260408T193250Z,2026-04-08T21:48:26.090473+00:00 +2025-11-29,Cline,all,84,,20260408T193250Z,2026-04-08T21:48:26.090473+00:00 +2025-11-29,Codegen,all,7,,20260408T193250Z,2026-04-08T21:48:26.090473+00:00 +2025-11-29,Coderabbit,all,9,,20260408T193250Z,2026-04-08T21:48:26.090473+00:00 +2025-11-29,Copilot,all,75,,20260408T193250Z,2026-04-08T21:48:26.090473+00:00 +2025-11-29,Copilot SWE Agent,all,10946,,20260408T193250Z,2026-04-08T21:48:26.090473+00:00 +2025-11-29,Crush,all,0,,20260408T193250Z,2026-04-08T21:48:26.090473+00:00 +2025-11-29,Cursor,all,792,,20260408T193250Z,2026-04-08T21:48:26.090473+00:00 +2025-11-29,DeepSource,all,19,,20260408T193250Z,2026-04-08T21:48:26.090473+00:00 +2025-11-29,Devin,all,26,,20260408T193250Z,2026-04-08T21:48:26.090473+00:00 +2025-11-29,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T21:48:26.090473+00:00 +2025-11-29,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T21:48:26.090473+00:00 +2025-11-29,Gru,all,0,,20260408T193250Z,2026-04-08T21:48:26.090473+00:00 +2025-11-29,Jules (Google),all,1989,,20260408T193250Z,2026-04-08T21:48:26.090473+00:00 +2025-11-29,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T21:48:26.090473+00:00 +2025-11-29,Kilo Code,all,7,,20260408T193250Z,2026-04-08T21:48:26.090473+00:00 +2025-11-29,Lovable,all,0,,20260408T193250Z,2026-04-08T21:48:26.090473+00:00 +2025-11-29,OpenAI Codex,all,7,,20260408T193250Z,2026-04-08T21:48:26.090473+00:00 +2025-11-29,OpenCode,all,0,,20260408T193250Z,2026-04-08T21:48:26.090473+00:00 +2025-11-29,OpenHands,all,120,,20260408T193250Z,2026-04-08T21:48:26.090473+00:00 +2025-11-29,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T21:48:26.090473+00:00 +2025-11-29,Roo Code,all,4,,20260408T193250Z,2026-04-08T21:48:26.090473+00:00 +2025-11-29,Sketch,all,0,,20260408T193250Z,2026-04-08T21:48:26.090473+00:00 +2025-11-29,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T21:48:26.090473+00:00 +2025-11-29,Sweep AI,all,0,,20260408T193250Z,2026-04-08T21:48:26.090473+00:00 +2025-11-29,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T21:48:26.090473+00:00 +2025-11-30,Aider,all,21,,20260408T193250Z,2026-04-08T21:50:38.837903+00:00 +2025-11-30,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T21:50:38.837903+00:00 +2025-11-30,ChatGPT,all,15,,20260408T193250Z,2026-04-08T21:50:38.837903+00:00 +2025-11-30,Claude Code,all,11651,,20260408T193250Z,2026-04-08T21:50:38.837903+00:00 +2025-11-30,Cline,all,746,,20260408T193250Z,2026-04-08T21:50:38.837903+00:00 +2025-11-30,Codegen,all,6,,20260408T193250Z,2026-04-08T21:50:38.837903+00:00 +2025-11-30,Coderabbit,all,9,,20260408T193250Z,2026-04-08T21:50:38.837903+00:00 +2025-11-30,Copilot,all,157,,20260408T193250Z,2026-04-08T21:50:38.837903+00:00 +2025-11-30,Copilot SWE Agent,all,10295,,20260408T193250Z,2026-04-08T21:50:38.837903+00:00 +2025-11-30,Crush,all,0,,20260408T193250Z,2026-04-08T21:50:38.837903+00:00 +2025-11-30,Cursor,all,865,,20260408T193250Z,2026-04-08T21:50:38.837903+00:00 +2025-11-30,DeepSource,all,12,,20260408T193250Z,2026-04-08T21:50:38.837903+00:00 +2025-11-30,Devin,all,12,,20260408T193250Z,2026-04-08T21:50:38.837903+00:00 +2025-11-30,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T21:50:38.837903+00:00 +2025-11-30,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T21:50:38.837903+00:00 +2025-11-30,Gru,all,0,,20260408T193250Z,2026-04-08T21:50:38.837903+00:00 +2025-11-30,Jules (Google),all,2159,,20260408T193250Z,2026-04-08T21:50:38.837903+00:00 +2025-11-30,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T21:50:38.837903+00:00 +2025-11-30,Kilo Code,all,24,,20260408T193250Z,2026-04-08T21:50:38.837903+00:00 +2025-11-30,Lovable,all,1,,20260408T193250Z,2026-04-08T21:50:38.837903+00:00 +2025-11-30,OpenAI Codex,all,12,,20260408T193250Z,2026-04-08T21:50:38.837903+00:00 +2025-11-30,OpenCode,all,0,,20260408T193250Z,2026-04-08T21:50:38.837903+00:00 +2025-11-30,OpenHands,all,30,,20260408T193250Z,2026-04-08T21:50:38.837903+00:00 +2025-11-30,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T21:50:38.837903+00:00 +2025-11-30,Roo Code,all,9,,20260408T193250Z,2026-04-08T21:50:38.837903+00:00 +2025-11-30,Sketch,all,0,,20260408T193250Z,2026-04-08T21:50:38.837903+00:00 +2025-11-30,Sourcery AI,all,0,1,20260408T193250Z,2026-04-08T21:50:38.837903+00:00 +2025-11-30,Sweep AI,all,0,,20260408T193250Z,2026-04-08T21:50:38.837903+00:00 +2025-11-30,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T21:50:38.837903+00:00 +2025-12-01,Aider,all,8,,20260408T193250Z,2026-04-08T21:52:51.361725+00:00 +2025-12-01,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T21:52:51.361725+00:00 +2025-12-01,ChatGPT,all,0,,20260408T193250Z,2026-04-08T21:52:51.361725+00:00 +2025-12-01,Claude Code,all,12885,,20260408T193250Z,2026-04-08T21:52:51.361725+00:00 +2025-12-01,Cline,all,1734,,20260408T193250Z,2026-04-08T21:52:51.361725+00:00 +2025-12-01,Codegen,all,44,,20260408T193250Z,2026-04-08T21:52:51.361725+00:00 +2025-12-01,Coderabbit,all,5,,20260408T193250Z,2026-04-08T21:52:51.361725+00:00 +2025-12-01,Copilot,all,117,1,20260408T193250Z,2026-04-08T21:52:51.361725+00:00 +2025-12-01,Copilot SWE Agent,all,12564,,20260408T193250Z,2026-04-08T21:52:51.361725+00:00 +2025-12-01,Crush,all,0,,20260408T193250Z,2026-04-08T21:52:51.361725+00:00 +2025-12-01,Cursor,all,722,,20260408T193250Z,2026-04-08T21:52:51.361725+00:00 +2025-12-01,DeepSource,all,9,,20260408T193250Z,2026-04-08T21:52:51.361725+00:00 +2025-12-01,Devin,all,24,,20260408T193250Z,2026-04-08T21:52:51.361725+00:00 +2025-12-01,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T21:52:51.361725+00:00 +2025-12-01,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T21:52:51.361725+00:00 +2025-12-01,Gru,all,0,,20260408T193250Z,2026-04-08T21:52:51.361725+00:00 +2025-12-01,Jules (Google),all,2316,,20260408T193250Z,2026-04-08T21:52:51.361725+00:00 +2025-12-01,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T21:52:51.361725+00:00 +2025-12-01,Kilo Code,all,61,,20260408T193250Z,2026-04-08T21:52:51.361725+00:00 +2025-12-01,Lovable,all,0,,20260408T193250Z,2026-04-08T21:52:51.361725+00:00 +2025-12-01,OpenAI Codex,all,4,,20260408T193250Z,2026-04-08T21:52:51.361725+00:00 +2025-12-01,OpenCode,all,0,,20260408T193250Z,2026-04-08T21:52:51.361725+00:00 +2025-12-01,OpenHands,all,71,,20260408T193250Z,2026-04-08T21:52:51.361725+00:00 +2025-12-01,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T21:52:51.361725+00:00 +2025-12-01,Roo Code,all,5,,20260408T193250Z,2026-04-08T21:52:51.361725+00:00 +2025-12-01,Sketch,all,0,,20260408T193250Z,2026-04-08T21:52:51.361725+00:00 +2025-12-01,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T21:52:51.361725+00:00 +2025-12-01,Sweep AI,all,0,,20260408T193250Z,2026-04-08T21:52:51.361725+00:00 +2025-12-01,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T21:52:51.361725+00:00 +2025-12-02,Aider,all,10,,20260408T193250Z,2026-04-08T21:55:05.173069+00:00 +2025-12-02,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T21:55:05.173069+00:00 +2025-12-02,ChatGPT,all,9,,20260408T193250Z,2026-04-08T21:55:05.173069+00:00 +2025-12-02,Claude Code,all,13637,,20260408T193250Z,2026-04-08T21:55:05.173069+00:00 +2025-12-02,Cline,all,1599,,20260408T193250Z,2026-04-08T21:55:05.173069+00:00 +2025-12-02,Codegen,all,21,,20260408T193250Z,2026-04-08T21:55:05.173069+00:00 +2025-12-02,Coderabbit,all,27,,20260408T193250Z,2026-04-08T21:55:05.173069+00:00 +2025-12-02,Copilot,all,294,,20260408T193250Z,2026-04-08T21:55:05.173069+00:00 +2025-12-02,Copilot SWE Agent,all,13032,,20260408T193250Z,2026-04-08T21:55:05.173069+00:00 +2025-12-02,Crush,all,0,,20260408T193250Z,2026-04-08T21:55:05.173069+00:00 +2025-12-02,Cursor,all,860,,20260408T193250Z,2026-04-08T21:55:05.173069+00:00 +2025-12-02,DeepSource,all,5,,20260408T193250Z,2026-04-08T21:55:05.173069+00:00 +2025-12-02,Devin,all,36,,20260408T193250Z,2026-04-08T21:55:05.173069+00:00 +2025-12-02,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T21:55:05.173069+00:00 +2025-12-02,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T21:55:05.173069+00:00 +2025-12-02,Gru,all,0,,20260408T193250Z,2026-04-08T21:55:05.173069+00:00 +2025-12-02,Jules (Google),all,2137,,20260408T193250Z,2026-04-08T21:55:05.173069+00:00 +2025-12-02,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T21:55:05.173069+00:00 +2025-12-02,Kilo Code,all,39,,20260408T193250Z,2026-04-08T21:55:05.173069+00:00 +2025-12-02,Lovable,all,0,,20260408T193250Z,2026-04-08T21:55:05.173069+00:00 +2025-12-02,OpenAI Codex,all,5,,20260408T193250Z,2026-04-08T21:55:05.173069+00:00 +2025-12-02,OpenCode,all,0,,20260408T193250Z,2026-04-08T21:55:05.173069+00:00 +2025-12-02,OpenHands,all,71,,20260408T193250Z,2026-04-08T21:55:05.173069+00:00 +2025-12-02,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T21:55:05.173069+00:00 +2025-12-02,Roo Code,all,8,,20260408T193250Z,2026-04-08T21:55:05.173069+00:00 +2025-12-02,Sketch,all,0,,20260408T193250Z,2026-04-08T21:55:05.173069+00:00 +2025-12-02,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T21:55:05.173069+00:00 +2025-12-02,Sweep AI,all,0,,20260408T193250Z,2026-04-08T21:55:05.173069+00:00 +2025-12-02,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T21:55:05.173069+00:00 +2025-12-03,Aider,all,1,,20260408T193250Z,2026-04-08T21:57:19.214375+00:00 +2025-12-03,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T21:57:19.214375+00:00 +2025-12-03,ChatGPT,all,1,,20260408T193250Z,2026-04-08T21:57:19.214375+00:00 +2025-12-03,Claude Code,all,14057,,20260408T193250Z,2026-04-08T21:57:19.214375+00:00 +2025-12-03,Cline,all,2030,,20260408T193250Z,2026-04-08T21:57:19.214375+00:00 +2025-12-03,Codegen,all,13,,20260408T193250Z,2026-04-08T21:57:19.214375+00:00 +2025-12-03,Coderabbit,all,21,,20260408T193250Z,2026-04-08T21:57:19.214375+00:00 +2025-12-03,Copilot,all,244,,20260408T193250Z,2026-04-08T21:57:19.214375+00:00 +2025-12-03,Copilot SWE Agent,all,13987,,20260408T193250Z,2026-04-08T21:57:19.214375+00:00 +2025-12-03,Crush,all,0,,20260408T193250Z,2026-04-08T21:57:19.214375+00:00 +2025-12-03,Cursor,all,952,,20260408T193250Z,2026-04-08T21:57:19.214375+00:00 +2025-12-03,DeepSource,all,8,,20260408T193250Z,2026-04-08T21:57:19.214375+00:00 +2025-12-03,Devin,all,45,,20260408T193250Z,2026-04-08T21:57:19.214375+00:00 +2025-12-03,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T21:57:19.214375+00:00 +2025-12-03,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T21:57:19.214375+00:00 +2025-12-03,Gru,all,0,,20260408T193250Z,2026-04-08T21:57:19.214375+00:00 +2025-12-03,Jules (Google),all,2122,,20260408T193250Z,2026-04-08T21:57:19.214375+00:00 +2025-12-03,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T21:57:19.214375+00:00 +2025-12-03,Kilo Code,all,31,,20260408T193250Z,2026-04-08T21:57:19.214375+00:00 +2025-12-03,Lovable,all,0,,20260408T193250Z,2026-04-08T21:57:19.214375+00:00 +2025-12-03,OpenAI Codex,all,3,,20260408T193250Z,2026-04-08T21:57:19.214375+00:00 +2025-12-03,OpenCode,all,0,,20260408T193250Z,2026-04-08T21:57:19.214375+00:00 +2025-12-03,OpenHands,all,60,,20260408T193250Z,2026-04-08T21:57:19.214375+00:00 +2025-12-03,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T21:57:19.214375+00:00 +2025-12-03,Roo Code,all,7,,20260408T193250Z,2026-04-08T21:57:19.214375+00:00 +2025-12-03,Sketch,all,0,,20260408T193250Z,2026-04-08T21:57:19.214375+00:00 +2025-12-03,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T21:57:19.214375+00:00 +2025-12-03,Sweep AI,all,0,,20260408T193250Z,2026-04-08T21:57:19.214375+00:00 +2025-12-03,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T21:57:19.214375+00:00 +2025-12-04,Aider,all,52,,20260408T193250Z,2026-04-08T21:59:32.039903+00:00 +2025-12-04,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T21:59:32.039903+00:00 +2025-12-04,ChatGPT,all,3,,20260408T193250Z,2026-04-08T21:59:32.039903+00:00 +2025-12-04,Claude Code,all,14432,,20260408T193250Z,2026-04-08T21:59:32.039903+00:00 +2025-12-04,Cline,all,2929,,20260408T193250Z,2026-04-08T21:59:32.039903+00:00 +2025-12-04,Codegen,all,9,,20260408T193250Z,2026-04-08T21:59:32.039903+00:00 +2025-12-04,Coderabbit,all,16,,20260408T193250Z,2026-04-08T21:59:32.039903+00:00 +2025-12-04,Copilot,all,182,,20260408T193250Z,2026-04-08T21:59:32.039903+00:00 +2025-12-04,Copilot SWE Agent,all,13586,,20260408T193250Z,2026-04-08T21:59:32.039903+00:00 +2025-12-04,Crush,all,0,,20260408T193250Z,2026-04-08T21:59:32.039903+00:00 +2025-12-04,Cursor,all,779,,20260408T193250Z,2026-04-08T21:59:32.039903+00:00 +2025-12-04,DeepSource,all,11,,20260408T193250Z,2026-04-08T21:59:32.039903+00:00 +2025-12-04,Devin,all,71,,20260408T193250Z,2026-04-08T21:59:32.039903+00:00 +2025-12-04,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T21:59:32.039903+00:00 +2025-12-04,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T21:59:32.039903+00:00 +2025-12-04,Gru,all,0,,20260408T193250Z,2026-04-08T21:59:32.039903+00:00 +2025-12-04,Jules (Google),all,2050,,20260408T193250Z,2026-04-08T21:59:32.039903+00:00 +2025-12-04,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T21:59:32.039903+00:00 +2025-12-04,Kilo Code,all,29,,20260408T193250Z,2026-04-08T21:59:32.039903+00:00 +2025-12-04,Lovable,all,1,,20260408T193250Z,2026-04-08T21:59:32.039903+00:00 +2025-12-04,OpenAI Codex,all,1,,20260408T193250Z,2026-04-08T21:59:32.039903+00:00 +2025-12-04,OpenCode,all,0,,20260408T193250Z,2026-04-08T21:59:32.039903+00:00 +2025-12-04,OpenHands,all,129,,20260408T193250Z,2026-04-08T21:59:32.039903+00:00 +2025-12-04,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T21:59:32.039903+00:00 +2025-12-04,Roo Code,all,4,,20260408T193250Z,2026-04-08T21:59:32.039903+00:00 +2025-12-04,Sketch,all,0,,20260408T193250Z,2026-04-08T21:59:32.039903+00:00 +2025-12-04,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T21:59:32.039903+00:00 +2025-12-04,Sweep AI,all,0,,20260408T193250Z,2026-04-08T21:59:32.039903+00:00 +2025-12-04,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T21:59:32.039903+00:00 +2025-12-05,Aider,all,169,,20260408T193250Z,2026-04-08T22:01:45.263386+00:00 +2025-12-05,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T22:01:45.263386+00:00 +2025-12-05,ChatGPT,all,12,,20260408T193250Z,2026-04-08T22:01:45.263386+00:00 +2025-12-05,Claude Code,all,12047,,20260408T193250Z,2026-04-08T22:01:45.263386+00:00 +2025-12-05,Cline,all,2047,,20260408T193250Z,2026-04-08T22:01:45.263386+00:00 +2025-12-05,Codegen,all,3,,20260408T193250Z,2026-04-08T22:01:45.263386+00:00 +2025-12-05,Coderabbit,all,39,,20260408T193250Z,2026-04-08T22:01:45.263386+00:00 +2025-12-05,Copilot,all,176,,20260408T193250Z,2026-04-08T22:01:45.263386+00:00 +2025-12-05,Copilot SWE Agent,all,12615,,20260408T193250Z,2026-04-08T22:01:45.263386+00:00 +2025-12-05,Crush,all,0,,20260408T193250Z,2026-04-08T22:01:45.263386+00:00 +2025-12-05,Cursor,all,846,,20260408T193250Z,2026-04-08T22:01:45.263386+00:00 +2025-12-05,DeepSource,all,30,,20260408T193250Z,2026-04-08T22:01:45.263386+00:00 +2025-12-05,Devin,all,40,,20260408T193250Z,2026-04-08T22:01:45.263386+00:00 +2025-12-05,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T22:01:45.263386+00:00 +2025-12-05,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T22:01:45.263386+00:00 +2025-12-05,Gru,all,0,1,20260408T193250Z,2026-04-08T22:01:45.263386+00:00 +2025-12-05,Jules (Google),all,2109,,20260408T193250Z,2026-04-08T22:01:45.263386+00:00 +2025-12-05,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T22:01:45.263386+00:00 +2025-12-05,Kilo Code,all,18,,20260408T193250Z,2026-04-08T22:01:45.263386+00:00 +2025-12-05,Lovable,all,0,,20260408T193250Z,2026-04-08T22:01:45.263386+00:00 +2025-12-05,OpenAI Codex,all,4,,20260408T193250Z,2026-04-08T22:01:45.263386+00:00 +2025-12-05,OpenCode,all,0,,20260408T193250Z,2026-04-08T22:01:45.263386+00:00 +2025-12-05,OpenHands,all,75,,20260408T193250Z,2026-04-08T22:01:45.263386+00:00 +2025-12-05,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T22:01:45.263386+00:00 +2025-12-05,Roo Code,all,1,,20260408T193250Z,2026-04-08T22:01:45.263386+00:00 +2025-12-05,Sketch,all,0,,20260408T193250Z,2026-04-08T22:01:45.263386+00:00 +2025-12-05,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T22:01:45.263386+00:00 +2025-12-05,Sweep AI,all,0,,20260408T193250Z,2026-04-08T22:01:45.263386+00:00 +2025-12-05,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T22:01:45.263386+00:00 +2025-12-06,Aider,all,71,,20260408T193250Z,2026-04-08T22:03:57.148085+00:00 +2025-12-06,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T22:03:57.148085+00:00 +2025-12-06,ChatGPT,all,19,,20260408T193250Z,2026-04-08T22:03:57.148085+00:00 +2025-12-06,Claude Code,all,11483,,20260408T193250Z,2026-04-08T22:03:57.148085+00:00 +2025-12-06,Cline,all,689,,20260408T193250Z,2026-04-08T22:03:57.148085+00:00 +2025-12-06,Codegen,all,4,,20260408T193250Z,2026-04-08T22:03:57.148085+00:00 +2025-12-06,Coderabbit,all,34,,20260408T193250Z,2026-04-08T22:03:57.148085+00:00 +2025-12-06,Copilot,all,94,,20260408T193250Z,2026-04-08T22:03:57.148085+00:00 +2025-12-06,Copilot SWE Agent,all,13098,,20260408T193250Z,2026-04-08T22:03:57.148085+00:00 +2025-12-06,Crush,all,0,,20260408T193250Z,2026-04-08T22:03:57.148085+00:00 +2025-12-06,Cursor,all,825,,20260408T193250Z,2026-04-08T22:03:57.148085+00:00 +2025-12-06,DeepSource,all,12,,20260408T193250Z,2026-04-08T22:03:57.148085+00:00 +2025-12-06,Devin,all,10,,20260408T193250Z,2026-04-08T22:03:57.148085+00:00 +2025-12-06,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T22:03:57.148085+00:00 +2025-12-06,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T22:03:57.148085+00:00 +2025-12-06,Gru,all,0,,20260408T193250Z,2026-04-08T22:03:57.148085+00:00 +2025-12-06,Jules (Google),all,1802,,20260408T193250Z,2026-04-08T22:03:57.148085+00:00 +2025-12-06,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T22:03:57.148085+00:00 +2025-12-06,Kilo Code,all,26,,20260408T193250Z,2026-04-08T22:03:57.148085+00:00 +2025-12-06,Lovable,all,0,,20260408T193250Z,2026-04-08T22:03:57.148085+00:00 +2025-12-06,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T22:03:57.148085+00:00 +2025-12-06,OpenCode,all,0,,20260408T193250Z,2026-04-08T22:03:57.148085+00:00 +2025-12-06,OpenHands,all,85,,20260408T193250Z,2026-04-08T22:03:57.148085+00:00 +2025-12-06,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T22:03:57.148085+00:00 +2025-12-06,Roo Code,all,10,,20260408T193250Z,2026-04-08T22:03:57.148085+00:00 +2025-12-06,Sketch,all,0,,20260408T193250Z,2026-04-08T22:03:57.148085+00:00 +2025-12-06,Sourcery AI,all,0,1,20260408T193250Z,2026-04-08T22:03:57.148085+00:00 +2025-12-06,Sweep AI,all,0,,20260408T193250Z,2026-04-08T22:03:57.148085+00:00 +2025-12-06,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T22:03:57.148085+00:00 +2025-12-07,Aider,all,12,,20260408T193250Z,2026-04-08T22:06:09.797057+00:00 +2025-12-07,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T22:06:09.797057+00:00 +2025-12-07,ChatGPT,all,10,,20260408T193250Z,2026-04-08T22:06:09.797057+00:00 +2025-12-07,Claude Code,all,11618,,20260408T193250Z,2026-04-08T22:06:09.797057+00:00 +2025-12-07,Cline,all,1127,,20260408T193250Z,2026-04-08T22:06:09.797057+00:00 +2025-12-07,Codegen,all,6,,20260408T193250Z,2026-04-08T22:06:09.797057+00:00 +2025-12-07,Coderabbit,all,14,,20260408T193250Z,2026-04-08T22:06:09.797057+00:00 +2025-12-07,Copilot,all,283,,20260408T193250Z,2026-04-08T22:06:09.797057+00:00 +2025-12-07,Copilot SWE Agent,all,13569,,20260408T193250Z,2026-04-08T22:06:09.797057+00:00 +2025-12-07,Crush,all,0,,20260408T193250Z,2026-04-08T22:06:09.797057+00:00 +2025-12-07,Cursor,all,934,,20260408T193250Z,2026-04-08T22:06:09.797057+00:00 +2025-12-07,DeepSource,all,27,,20260408T193250Z,2026-04-08T22:06:09.797057+00:00 +2025-12-07,Devin,all,37,,20260408T193250Z,2026-04-08T22:06:09.797057+00:00 +2025-12-07,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T22:06:09.797057+00:00 +2025-12-07,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T22:06:09.797057+00:00 +2025-12-07,Gru,all,0,,20260408T193250Z,2026-04-08T22:06:09.797057+00:00 +2025-12-07,Jules (Google),all,1694,,20260408T193250Z,2026-04-08T22:06:09.797057+00:00 +2025-12-07,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T22:06:09.797057+00:00 +2025-12-07,Kilo Code,all,22,,20260408T193250Z,2026-04-08T22:06:09.797057+00:00 +2025-12-07,Lovable,all,1,,20260408T193250Z,2026-04-08T22:06:09.797057+00:00 +2025-12-07,OpenAI Codex,all,13,,20260408T193250Z,2026-04-08T22:06:09.797057+00:00 +2025-12-07,OpenCode,all,0,,20260408T193250Z,2026-04-08T22:06:09.797057+00:00 +2025-12-07,OpenHands,all,44,,20260408T193250Z,2026-04-08T22:06:09.797057+00:00 +2025-12-07,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T22:06:09.797057+00:00 +2025-12-07,Roo Code,all,8,,20260408T193250Z,2026-04-08T22:06:09.797057+00:00 +2025-12-07,Sketch,all,0,,20260408T193250Z,2026-04-08T22:06:09.797057+00:00 +2025-12-07,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T22:06:09.797057+00:00 +2025-12-07,Sweep AI,all,0,,20260408T193250Z,2026-04-08T22:06:09.797057+00:00 +2025-12-07,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T22:06:09.797057+00:00 +2025-12-08,Aider,all,14,,20260408T193250Z,2026-04-08T22:08:21.141453+00:00 +2025-12-08,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T22:08:21.141453+00:00 +2025-12-08,ChatGPT,all,30,,20260408T193250Z,2026-04-08T22:08:21.141453+00:00 +2025-12-08,Claude Code,all,12526,,20260408T193250Z,2026-04-08T22:08:21.141453+00:00 +2025-12-08,Cline,all,2230,,20260408T193250Z,2026-04-08T22:08:21.141453+00:00 +2025-12-08,Codegen,all,9,,20260408T193250Z,2026-04-08T22:08:21.141453+00:00 +2025-12-08,Coderabbit,all,6,,20260408T193250Z,2026-04-08T22:08:21.141453+00:00 +2025-12-08,Copilot,all,161,,20260408T193250Z,2026-04-08T22:08:21.141453+00:00 +2025-12-08,Copilot SWE Agent,all,14469,,20260408T193250Z,2026-04-08T22:08:21.141453+00:00 +2025-12-08,Crush,all,0,,20260408T193250Z,2026-04-08T22:08:21.141453+00:00 +2025-12-08,Cursor,all,943,,20260408T193250Z,2026-04-08T22:08:21.141453+00:00 +2025-12-08,DeepSource,all,14,,20260408T193250Z,2026-04-08T22:08:21.141453+00:00 +2025-12-08,Devin,all,50,,20260408T193250Z,2026-04-08T22:08:21.141453+00:00 +2025-12-08,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T22:08:21.141453+00:00 +2025-12-08,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T22:08:21.141453+00:00 +2025-12-08,Gru,all,0,,20260408T193250Z,2026-04-08T22:08:21.141453+00:00 +2025-12-08,Jules (Google),all,1925,,20260408T193250Z,2026-04-08T22:08:21.141453+00:00 +2025-12-08,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T22:08:21.141453+00:00 +2025-12-08,Kilo Code,all,33,,20260408T193250Z,2026-04-08T22:08:21.141453+00:00 +2025-12-08,Lovable,all,8,,20260408T193250Z,2026-04-08T22:08:21.141453+00:00 +2025-12-08,OpenAI Codex,all,3,,20260408T193250Z,2026-04-08T22:08:21.141453+00:00 +2025-12-08,OpenCode,all,0,,20260408T193250Z,2026-04-08T22:08:21.141453+00:00 +2025-12-08,OpenHands,all,47,,20260408T193250Z,2026-04-08T22:08:21.141453+00:00 +2025-12-08,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T22:08:21.141453+00:00 +2025-12-08,Roo Code,all,2,,20260408T193250Z,2026-04-08T22:08:21.141453+00:00 +2025-12-08,Sketch,all,0,,20260408T193250Z,2026-04-08T22:08:21.141453+00:00 +2025-12-08,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T22:08:21.141453+00:00 +2025-12-08,Sweep AI,all,0,,20260408T193250Z,2026-04-08T22:08:21.141453+00:00 +2025-12-08,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T22:08:21.141453+00:00 +2025-12-09,Aider,all,39,,20260408T193250Z,2026-04-08T22:10:33.217244+00:00 +2025-12-09,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T22:10:33.217244+00:00 +2025-12-09,ChatGPT,all,4,,20260408T193250Z,2026-04-08T22:10:33.217244+00:00 +2025-12-09,Claude Code,all,13666,,20260408T193250Z,2026-04-08T22:10:33.217244+00:00 +2025-12-09,Cline,all,3313,,20260408T193250Z,2026-04-08T22:10:33.217244+00:00 +2025-12-09,Codegen,all,20,,20260408T193250Z,2026-04-08T22:10:33.217244+00:00 +2025-12-09,Coderabbit,all,17,,20260408T193250Z,2026-04-08T22:10:33.217244+00:00 +2025-12-09,Copilot,all,142,,20260408T193250Z,2026-04-08T22:10:33.217244+00:00 +2025-12-09,Copilot SWE Agent,all,14219,,20260408T193250Z,2026-04-08T22:10:33.217244+00:00 +2025-12-09,Crush,all,0,,20260408T193250Z,2026-04-08T22:10:33.217244+00:00 +2025-12-09,Cursor,all,924,,20260408T193250Z,2026-04-08T22:10:33.217244+00:00 +2025-12-09,DeepSource,all,7,,20260408T193250Z,2026-04-08T22:10:33.217244+00:00 +2025-12-09,Devin,all,142,,20260408T193250Z,2026-04-08T22:10:33.217244+00:00 +2025-12-09,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T22:10:33.217244+00:00 +2025-12-09,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T22:10:33.217244+00:00 +2025-12-09,Gru,all,0,,20260408T193250Z,2026-04-08T22:10:33.217244+00:00 +2025-12-09,Jules (Google),all,2612,,20260408T193250Z,2026-04-08T22:10:33.217244+00:00 +2025-12-09,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T22:10:33.217244+00:00 +2025-12-09,Kilo Code,all,77,,20260408T193250Z,2026-04-08T22:10:33.217244+00:00 +2025-12-09,Lovable,all,2,,20260408T193250Z,2026-04-08T22:10:33.217244+00:00 +2025-12-09,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T22:10:33.217244+00:00 +2025-12-09,OpenCode,all,0,,20260408T193250Z,2026-04-08T22:10:33.217244+00:00 +2025-12-09,OpenHands,all,95,,20260408T193250Z,2026-04-08T22:10:33.217244+00:00 +2025-12-09,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T22:10:33.217244+00:00 +2025-12-09,Roo Code,all,4,,20260408T193250Z,2026-04-08T22:10:33.217244+00:00 +2025-12-09,Sketch,all,0,,20260408T193250Z,2026-04-08T22:10:33.217244+00:00 +2025-12-09,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T22:10:33.217244+00:00 +2025-12-09,Sweep AI,all,0,,20260408T193250Z,2026-04-08T22:10:33.217244+00:00 +2025-12-09,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T22:10:33.217244+00:00 +2025-12-10,Aider,all,42,,20260408T193250Z,2026-04-08T22:12:44.257242+00:00 +2025-12-10,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T22:12:44.257242+00:00 +2025-12-10,ChatGPT,all,9,,20260408T193250Z,2026-04-08T22:12:44.257242+00:00 +2025-12-10,Claude Code,all,13510,,20260408T193250Z,2026-04-08T22:12:44.257242+00:00 +2025-12-10,Cline,all,2045,,20260408T193250Z,2026-04-08T22:12:44.257242+00:00 +2025-12-10,Codegen,all,12,,20260408T193250Z,2026-04-08T22:12:44.257242+00:00 +2025-12-10,Coderabbit,all,28,,20260408T193250Z,2026-04-08T22:12:44.257242+00:00 +2025-12-10,Copilot,all,184,1,20260408T193250Z,2026-04-08T22:12:44.257242+00:00 +2025-12-10,Copilot SWE Agent,all,13830,,20260408T193250Z,2026-04-08T22:12:44.257242+00:00 +2025-12-10,Crush,all,0,,20260408T193250Z,2026-04-08T22:12:44.257242+00:00 +2025-12-10,Cursor,all,886,,20260408T193250Z,2026-04-08T22:12:44.257242+00:00 +2025-12-10,DeepSource,all,6,,20260408T193250Z,2026-04-08T22:12:44.257242+00:00 +2025-12-10,Devin,all,102,,20260408T193250Z,2026-04-08T22:12:44.257242+00:00 +2025-12-10,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T22:12:44.257242+00:00 +2025-12-10,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T22:12:44.257242+00:00 +2025-12-10,Gru,all,0,,20260408T193250Z,2026-04-08T22:12:44.257242+00:00 +2025-12-10,Jules (Google),all,2182,,20260408T193250Z,2026-04-08T22:12:44.257242+00:00 +2025-12-10,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T22:12:44.257242+00:00 +2025-12-10,Kilo Code,all,98,,20260408T193250Z,2026-04-08T22:12:44.257242+00:00 +2025-12-10,Lovable,all,0,,20260408T193250Z,2026-04-08T22:12:44.257242+00:00 +2025-12-10,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T22:12:44.257242+00:00 +2025-12-10,OpenCode,all,0,,20260408T193250Z,2026-04-08T22:12:44.257242+00:00 +2025-12-10,OpenHands,all,50,,20260408T193250Z,2026-04-08T22:12:44.257242+00:00 +2025-12-10,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T22:12:44.257242+00:00 +2025-12-10,Roo Code,all,5,,20260408T193250Z,2026-04-08T22:12:44.257242+00:00 +2025-12-10,Sketch,all,0,,20260408T193250Z,2026-04-08T22:12:44.257242+00:00 +2025-12-10,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T22:12:44.257242+00:00 +2025-12-10,Sweep AI,all,0,,20260408T193250Z,2026-04-08T22:12:44.257242+00:00 +2025-12-10,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T22:12:44.257242+00:00 +2025-12-11,Aider,all,0,,20260408T193250Z,2026-04-08T22:14:56.274085+00:00 +2025-12-11,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T22:14:56.274085+00:00 +2025-12-11,ChatGPT,all,2,,20260408T193250Z,2026-04-08T22:14:56.274085+00:00 +2025-12-11,Claude Code,all,14109,,20260408T193250Z,2026-04-08T22:14:56.274085+00:00 +2025-12-11,Cline,all,3622,,20260408T193250Z,2026-04-08T22:14:56.274085+00:00 +2025-12-11,Codegen,all,5,,20260408T193250Z,2026-04-08T22:14:56.274085+00:00 +2025-12-11,Coderabbit,all,19,,20260408T193250Z,2026-04-08T22:14:56.274085+00:00 +2025-12-11,Copilot,all,121,,20260408T193250Z,2026-04-08T22:14:56.274085+00:00 +2025-12-11,Copilot SWE Agent,all,12812,,20260408T193250Z,2026-04-08T22:14:56.274085+00:00 +2025-12-11,Crush,all,0,,20260408T193250Z,2026-04-08T22:14:56.274085+00:00 +2025-12-11,Cursor,all,1067,,20260408T193250Z,2026-04-08T22:14:56.274085+00:00 +2025-12-11,DeepSource,all,15,,20260408T193250Z,2026-04-08T22:14:56.274085+00:00 +2025-12-11,Devin,all,106,,20260408T193250Z,2026-04-08T22:14:56.274085+00:00 +2025-12-11,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T22:14:56.274085+00:00 +2025-12-11,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T22:14:56.274085+00:00 +2025-12-11,Gru,all,0,,20260408T193250Z,2026-04-08T22:14:56.274085+00:00 +2025-12-11,Jules (Google),all,2876,,20260408T193250Z,2026-04-08T22:14:56.274085+00:00 +2025-12-11,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T22:14:56.274085+00:00 +2025-12-11,Kilo Code,all,78,,20260408T193250Z,2026-04-08T22:14:56.274085+00:00 +2025-12-11,Lovable,all,0,,20260408T193250Z,2026-04-08T22:14:56.274085+00:00 +2025-12-11,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T22:14:56.274085+00:00 +2025-12-11,OpenCode,all,0,,20260408T193250Z,2026-04-08T22:14:56.274085+00:00 +2025-12-11,OpenHands,all,45,,20260408T193250Z,2026-04-08T22:14:56.274085+00:00 +2025-12-11,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T22:14:56.274085+00:00 +2025-12-11,Roo Code,all,5,,20260408T193250Z,2026-04-08T22:14:56.274085+00:00 +2025-12-11,Sketch,all,0,,20260408T193250Z,2026-04-08T22:14:56.274085+00:00 +2025-12-11,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T22:14:56.274085+00:00 +2025-12-11,Sweep AI,all,0,,20260408T193250Z,2026-04-08T22:14:56.274085+00:00 +2025-12-11,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T22:14:56.274085+00:00 +2025-12-12,Aider,all,5,,20260408T193250Z,2026-04-08T22:17:08.354516+00:00 +2025-12-12,Amp (Sourcegraph),all,1,,20260408T193250Z,2026-04-08T22:17:08.354516+00:00 +2025-12-12,ChatGPT,all,18,,20260408T193250Z,2026-04-08T22:17:08.354516+00:00 +2025-12-12,Claude Code,all,11700,,20260408T193250Z,2026-04-08T22:17:08.354516+00:00 +2025-12-12,Cline,all,990,,20260408T193250Z,2026-04-08T22:17:08.354516+00:00 +2025-12-12,Codegen,all,17,,20260408T193250Z,2026-04-08T22:17:08.354516+00:00 +2025-12-12,Coderabbit,all,9,,20260408T193250Z,2026-04-08T22:17:08.354516+00:00 +2025-12-12,Copilot,all,101,,20260408T193250Z,2026-04-08T22:17:08.354516+00:00 +2025-12-12,Copilot SWE Agent,all,12269,,20260408T193250Z,2026-04-08T22:17:08.354516+00:00 +2025-12-12,Crush,all,0,,20260408T193250Z,2026-04-08T22:17:08.354516+00:00 +2025-12-12,Cursor,all,885,,20260408T193250Z,2026-04-08T22:17:08.354516+00:00 +2025-12-12,DeepSource,all,3,,20260408T193250Z,2026-04-08T22:17:08.354516+00:00 +2025-12-12,Devin,all,161,,20260408T193250Z,2026-04-08T22:17:08.354516+00:00 +2025-12-12,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T22:17:08.354516+00:00 +2025-12-12,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T22:17:08.354516+00:00 +2025-12-12,Gru,all,0,,20260408T193250Z,2026-04-08T22:17:08.354516+00:00 +2025-12-12,Jules (Google),all,2600,,20260408T193250Z,2026-04-08T22:17:08.354516+00:00 +2025-12-12,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T22:17:08.354516+00:00 +2025-12-12,Kilo Code,all,43,,20260408T193250Z,2026-04-08T22:17:08.354516+00:00 +2025-12-12,Lovable,all,0,,20260408T193250Z,2026-04-08T22:17:08.354516+00:00 +2025-12-12,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T22:17:08.354516+00:00 +2025-12-12,OpenCode,all,0,,20260408T193250Z,2026-04-08T22:17:08.354516+00:00 +2025-12-12,OpenHands,all,67,,20260408T193250Z,2026-04-08T22:17:08.354516+00:00 +2025-12-12,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T22:17:08.354516+00:00 +2025-12-12,Roo Code,all,3,,20260408T193250Z,2026-04-08T22:17:08.354516+00:00 +2025-12-12,Sketch,all,0,,20260408T193250Z,2026-04-08T22:17:08.354516+00:00 +2025-12-12,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T22:17:08.354516+00:00 +2025-12-12,Sweep AI,all,1,,20260408T193250Z,2026-04-08T22:17:08.354516+00:00 +2025-12-12,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T22:17:08.354516+00:00 +2025-12-13,Aider,all,9,,20260408T193250Z,2026-04-08T22:19:20.134276+00:00 +2025-12-13,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T22:19:20.134276+00:00 +2025-12-13,ChatGPT,all,11,,20260408T193250Z,2026-04-08T22:19:20.134276+00:00 +2025-12-13,Claude Code,all,11456,,20260408T193250Z,2026-04-08T22:19:20.134276+00:00 +2025-12-13,Cline,all,304,,20260408T193250Z,2026-04-08T22:19:20.134276+00:00 +2025-12-13,Codegen,all,24,,20260408T193250Z,2026-04-08T22:19:20.134276+00:00 +2025-12-13,Coderabbit,all,16,,20260408T193250Z,2026-04-08T22:19:20.134276+00:00 +2025-12-13,Copilot,all,49,,20260408T193250Z,2026-04-08T22:19:20.134276+00:00 +2025-12-13,Copilot SWE Agent,all,12690,,20260408T193250Z,2026-04-08T22:19:20.134276+00:00 +2025-12-13,Crush,all,0,,20260408T193250Z,2026-04-08T22:19:20.134276+00:00 +2025-12-13,Cursor,all,1014,,20260408T193250Z,2026-04-08T22:19:20.134276+00:00 +2025-12-13,DeepSource,all,34,,20260408T193250Z,2026-04-08T22:19:20.134276+00:00 +2025-12-13,Devin,all,105,,20260408T193250Z,2026-04-08T22:19:20.134276+00:00 +2025-12-13,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T22:19:20.134276+00:00 +2025-12-13,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T22:19:20.134276+00:00 +2025-12-13,Gru,all,0,,20260408T193250Z,2026-04-08T22:19:20.134276+00:00 +2025-12-13,Jules (Google),all,2619,,20260408T193250Z,2026-04-08T22:19:20.134276+00:00 +2025-12-13,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T22:19:20.134276+00:00 +2025-12-13,Kilo Code,all,71,,20260408T193250Z,2026-04-08T22:19:20.134276+00:00 +2025-12-13,Lovable,all,0,,20260408T193250Z,2026-04-08T22:19:20.134276+00:00 +2025-12-13,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T22:19:20.134276+00:00 +2025-12-13,OpenCode,all,0,,20260408T193250Z,2026-04-08T22:19:20.134276+00:00 +2025-12-13,OpenHands,all,36,,20260408T193250Z,2026-04-08T22:19:20.134276+00:00 +2025-12-13,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T22:19:20.134276+00:00 +2025-12-13,Roo Code,all,0,,20260408T193250Z,2026-04-08T22:19:20.134276+00:00 +2025-12-13,Sketch,all,0,,20260408T193250Z,2026-04-08T22:19:20.134276+00:00 +2025-12-13,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T22:19:20.134276+00:00 +2025-12-13,Sweep AI,all,0,,20260408T193250Z,2026-04-08T22:19:20.134276+00:00 +2025-12-13,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T22:19:20.134276+00:00 +2025-12-14,Aider,all,9,,20260408T193250Z,2026-04-08T22:21:31.587624+00:00 +2025-12-14,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T22:21:31.587624+00:00 +2025-12-14,ChatGPT,all,13,,20260408T193250Z,2026-04-08T22:21:31.587624+00:00 +2025-12-14,Claude Code,all,11200,,20260408T193250Z,2026-04-08T22:21:31.587624+00:00 +2025-12-14,Cline,all,1121,,20260408T193250Z,2026-04-08T22:21:31.587624+00:00 +2025-12-14,Codegen,all,49,,20260408T193250Z,2026-04-08T22:21:31.587624+00:00 +2025-12-14,Coderabbit,all,22,,20260408T193250Z,2026-04-08T22:21:31.587624+00:00 +2025-12-14,Copilot,all,22,,20260408T193250Z,2026-04-08T22:21:31.587624+00:00 +2025-12-14,Copilot SWE Agent,all,12270,,20260408T193250Z,2026-04-08T22:21:31.587624+00:00 +2025-12-14,Crush,all,0,,20260408T193250Z,2026-04-08T22:21:31.587624+00:00 +2025-12-14,Cursor,all,848,,20260408T193250Z,2026-04-08T22:21:31.587624+00:00 +2025-12-14,DeepSource,all,29,,20260408T193250Z,2026-04-08T22:21:31.587624+00:00 +2025-12-14,Devin,all,106,,20260408T193250Z,2026-04-08T22:21:31.587624+00:00 +2025-12-14,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T22:21:31.587624+00:00 +2025-12-14,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T22:21:31.587624+00:00 +2025-12-14,Gru,all,0,,20260408T193250Z,2026-04-08T22:21:31.587624+00:00 +2025-12-14,Jules (Google),all,2922,,20260408T193250Z,2026-04-08T22:21:31.587624+00:00 +2025-12-14,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T22:21:31.587624+00:00 +2025-12-14,Kilo Code,all,54,,20260408T193250Z,2026-04-08T22:21:31.587624+00:00 +2025-12-14,Lovable,all,0,,20260408T193250Z,2026-04-08T22:21:31.587624+00:00 +2025-12-14,OpenAI Codex,all,3,,20260408T193250Z,2026-04-08T22:21:31.587624+00:00 +2025-12-14,OpenCode,all,0,,20260408T193250Z,2026-04-08T22:21:31.587624+00:00 +2025-12-14,OpenHands,all,15,,20260408T193250Z,2026-04-08T22:21:31.587624+00:00 +2025-12-14,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T22:21:31.587624+00:00 +2025-12-14,Roo Code,all,1,,20260408T193250Z,2026-04-08T22:21:31.587624+00:00 +2025-12-14,Sketch,all,0,,20260408T193250Z,2026-04-08T22:21:31.587624+00:00 +2025-12-14,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T22:21:31.587624+00:00 +2025-12-14,Sweep AI,all,0,,20260408T193250Z,2026-04-08T22:21:31.587624+00:00 +2025-12-14,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T22:21:31.587624+00:00 +2025-12-15,Aider,all,12,,20260408T193250Z,2026-04-08T22:23:42.536723+00:00 +2025-12-15,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T22:23:42.536723+00:00 +2025-12-15,ChatGPT,all,12,,20260408T193250Z,2026-04-08T22:23:42.536723+00:00 +2025-12-15,Claude Code,all,11499,,20260408T193250Z,2026-04-08T22:23:42.536723+00:00 +2025-12-15,Cline,all,1345,,20260408T193250Z,2026-04-08T22:23:42.536723+00:00 +2025-12-15,Codegen,all,37,,20260408T193250Z,2026-04-08T22:23:42.536723+00:00 +2025-12-15,Coderabbit,all,17,,20260408T193250Z,2026-04-08T22:23:42.536723+00:00 +2025-12-15,Copilot,all,101,,20260408T193250Z,2026-04-08T22:23:42.536723+00:00 +2025-12-15,Copilot SWE Agent,all,12320,,20260408T193250Z,2026-04-08T22:23:42.536723+00:00 +2025-12-15,Crush,all,0,,20260408T193250Z,2026-04-08T22:23:42.536723+00:00 +2025-12-15,Cursor,all,966,,20260408T193250Z,2026-04-08T22:23:42.536723+00:00 +2025-12-15,DeepSource,all,31,,20260408T193250Z,2026-04-08T22:23:42.536723+00:00 +2025-12-15,Devin,all,91,,20260408T193250Z,2026-04-08T22:23:42.536723+00:00 +2025-12-15,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T22:23:42.536723+00:00 +2025-12-15,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T22:23:42.536723+00:00 +2025-12-15,Gru,all,0,,20260408T193250Z,2026-04-08T22:23:42.536723+00:00 +2025-12-15,Jules (Google),all,2955,,20260408T193250Z,2026-04-08T22:23:42.536723+00:00 +2025-12-15,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T22:23:42.536723+00:00 +2025-12-15,Kilo Code,all,54,,20260408T193250Z,2026-04-08T22:23:42.536723+00:00 +2025-12-15,Lovable,all,0,,20260408T193250Z,2026-04-08T22:23:42.536723+00:00 +2025-12-15,OpenAI Codex,all,2,,20260408T193250Z,2026-04-08T22:23:42.536723+00:00 +2025-12-15,OpenCode,all,0,,20260408T193250Z,2026-04-08T22:23:42.536723+00:00 +2025-12-15,OpenHands,all,54,,20260408T193250Z,2026-04-08T22:23:42.536723+00:00 +2025-12-15,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T22:23:42.536723+00:00 +2025-12-15,Roo Code,all,7,,20260408T193250Z,2026-04-08T22:23:42.536723+00:00 +2025-12-15,Sketch,all,0,,20260408T193250Z,2026-04-08T22:23:42.536723+00:00 +2025-12-15,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T22:23:42.536723+00:00 +2025-12-15,Sweep AI,all,0,,20260408T193250Z,2026-04-08T22:23:42.536723+00:00 +2025-12-15,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T22:23:42.536723+00:00 +2025-12-16,Aider,all,15,,20260408T193250Z,2026-04-08T22:25:54.465312+00:00 +2025-12-16,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T22:25:54.465312+00:00 +2025-12-16,ChatGPT,all,0,,20260408T193250Z,2026-04-08T22:25:54.465312+00:00 +2025-12-16,Claude Code,all,13333,,20260408T193250Z,2026-04-08T22:25:54.465312+00:00 +2025-12-16,Cline,all,3257,,20260408T193250Z,2026-04-08T22:25:54.465312+00:00 +2025-12-16,Codegen,all,27,,20260408T193250Z,2026-04-08T22:25:54.465312+00:00 +2025-12-16,Coderabbit,all,16,,20260408T193250Z,2026-04-08T22:25:54.465312+00:00 +2025-12-16,Copilot,all,97,,20260408T193250Z,2026-04-08T22:25:54.465312+00:00 +2025-12-16,Copilot SWE Agent,all,12921,,20260408T193250Z,2026-04-08T22:25:54.465312+00:00 +2025-12-16,Crush,all,2,,20260408T193250Z,2026-04-08T22:25:54.465312+00:00 +2025-12-16,Cursor,all,1051,,20260408T193250Z,2026-04-08T22:25:54.465312+00:00 +2025-12-16,DeepSource,all,31,,20260408T193250Z,2026-04-08T22:25:54.465312+00:00 +2025-12-16,Devin,all,108,,20260408T193250Z,2026-04-08T22:25:54.465312+00:00 +2025-12-16,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T22:25:54.465312+00:00 +2025-12-16,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T22:25:54.465312+00:00 +2025-12-16,Gru,all,0,,20260408T193250Z,2026-04-08T22:25:54.465312+00:00 +2025-12-16,Jules (Google),all,2964,,20260408T193250Z,2026-04-08T22:25:54.465312+00:00 +2025-12-16,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T22:25:54.465312+00:00 +2025-12-16,Kilo Code,all,53,,20260408T193250Z,2026-04-08T22:25:54.465312+00:00 +2025-12-16,Lovable,all,0,,20260408T193250Z,2026-04-08T22:25:54.465312+00:00 +2025-12-16,OpenAI Codex,all,5,,20260408T193250Z,2026-04-08T22:25:54.465312+00:00 +2025-12-16,OpenCode,all,0,,20260408T193250Z,2026-04-08T22:25:54.465312+00:00 +2025-12-16,OpenHands,all,84,,20260408T193250Z,2026-04-08T22:25:54.465312+00:00 +2025-12-16,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T22:25:54.465312+00:00 +2025-12-16,Roo Code,all,8,,20260408T193250Z,2026-04-08T22:25:54.465312+00:00 +2025-12-16,Sketch,all,0,,20260408T193250Z,2026-04-08T22:25:54.465312+00:00 +2025-12-16,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T22:25:54.465312+00:00 +2025-12-16,Sweep AI,all,0,,20260408T193250Z,2026-04-08T22:25:54.465312+00:00 +2025-12-16,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T22:25:54.465312+00:00 +2025-12-17,Aider,all,7,,20260408T193250Z,2026-04-08T22:28:07.331786+00:00 +2025-12-17,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T22:28:07.331786+00:00 +2025-12-17,ChatGPT,all,0,,20260408T193250Z,2026-04-08T22:28:07.331786+00:00 +2025-12-17,Claude Code,all,13543,,20260408T193250Z,2026-04-08T22:28:07.331786+00:00 +2025-12-17,Cline,all,1836,,20260408T193250Z,2026-04-08T22:28:07.331786+00:00 +2025-12-17,Codegen,all,20,,20260408T193250Z,2026-04-08T22:28:07.331786+00:00 +2025-12-17,Coderabbit,all,21,,20260408T193250Z,2026-04-08T22:28:07.331786+00:00 +2025-12-17,Copilot,all,137,,20260408T193250Z,2026-04-08T22:28:07.331786+00:00 +2025-12-17,Copilot SWE Agent,all,13842,,20260408T193250Z,2026-04-08T22:28:07.331786+00:00 +2025-12-17,Crush,all,0,,20260408T193250Z,2026-04-08T22:28:07.331786+00:00 +2025-12-17,Cursor,all,827,,20260408T193250Z,2026-04-08T22:28:07.331786+00:00 +2025-12-17,DeepSource,all,31,,20260408T193250Z,2026-04-08T22:28:07.331786+00:00 +2025-12-17,Devin,all,123,,20260408T193250Z,2026-04-08T22:28:07.331786+00:00 +2025-12-17,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T22:28:07.331786+00:00 +2025-12-17,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T22:28:07.331786+00:00 +2025-12-17,Gru,all,0,,20260408T193250Z,2026-04-08T22:28:07.331786+00:00 +2025-12-17,Jules (Google),all,3240,,20260408T193250Z,2026-04-08T22:28:07.331786+00:00 +2025-12-17,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T22:28:07.331786+00:00 +2025-12-17,Kilo Code,all,15,,20260408T193250Z,2026-04-08T22:28:07.331786+00:00 +2025-12-17,Lovable,all,0,,20260408T193250Z,2026-04-08T22:28:07.331786+00:00 +2025-12-17,OpenAI Codex,all,4,,20260408T193250Z,2026-04-08T22:28:07.331786+00:00 +2025-12-17,OpenCode,all,0,,20260408T193250Z,2026-04-08T22:28:07.331786+00:00 +2025-12-17,OpenHands,all,70,,20260408T193250Z,2026-04-08T22:28:07.331786+00:00 +2025-12-17,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T22:28:07.331786+00:00 +2025-12-17,Roo Code,all,9,,20260408T193250Z,2026-04-08T22:28:07.331786+00:00 +2025-12-17,Sketch,all,0,,20260408T193250Z,2026-04-08T22:28:07.331786+00:00 +2025-12-17,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T22:28:07.331786+00:00 +2025-12-17,Sweep AI,all,0,,20260408T193250Z,2026-04-08T22:28:07.331786+00:00 +2025-12-17,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T22:28:07.331786+00:00 +2025-12-18,Aider,all,4,,20260408T193250Z,2026-04-08T22:30:18.430705+00:00 +2025-12-18,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T22:30:18.430705+00:00 +2025-12-18,ChatGPT,all,3,,20260408T193250Z,2026-04-08T22:30:18.430705+00:00 +2025-12-18,Claude Code,all,13662,,20260408T193250Z,2026-04-08T22:30:18.430705+00:00 +2025-12-18,Cline,all,1792,,20260408T193250Z,2026-04-08T22:30:18.430705+00:00 +2025-12-18,Codegen,all,13,,20260408T193250Z,2026-04-08T22:30:18.430705+00:00 +2025-12-18,Coderabbit,all,24,,20260408T193250Z,2026-04-08T22:30:18.430705+00:00 +2025-12-18,Copilot,all,129,,20260408T193250Z,2026-04-08T22:30:18.430705+00:00 +2025-12-18,Copilot SWE Agent,all,12002,,20260408T193250Z,2026-04-08T22:30:18.430705+00:00 +2025-12-18,Crush,all,0,,20260408T193250Z,2026-04-08T22:30:18.430705+00:00 +2025-12-18,Cursor,all,849,,20260408T193250Z,2026-04-08T22:30:18.430705+00:00 +2025-12-18,DeepSource,all,34,,20260408T193250Z,2026-04-08T22:30:18.430705+00:00 +2025-12-18,Devin,all,205,,20260408T193250Z,2026-04-08T22:30:18.430705+00:00 +2025-12-18,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T22:30:18.430705+00:00 +2025-12-18,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T22:30:18.430705+00:00 +2025-12-18,Gru,all,0,,20260408T193250Z,2026-04-08T22:30:18.430705+00:00 +2025-12-18,Jules (Google),all,3156,,20260408T193250Z,2026-04-08T22:30:18.430705+00:00 +2025-12-18,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T22:30:18.430705+00:00 +2025-12-18,Kilo Code,all,41,,20260408T193250Z,2026-04-08T22:30:18.430705+00:00 +2025-12-18,Lovable,all,0,,20260408T193250Z,2026-04-08T22:30:18.430705+00:00 +2025-12-18,OpenAI Codex,all,37,,20260408T193250Z,2026-04-08T22:30:18.430705+00:00 +2025-12-18,OpenCode,all,0,,20260408T193250Z,2026-04-08T22:30:18.430705+00:00 +2025-12-18,OpenHands,all,66,,20260408T193250Z,2026-04-08T22:30:18.430705+00:00 +2025-12-18,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T22:30:18.430705+00:00 +2025-12-18,Roo Code,all,2,,20260408T193250Z,2026-04-08T22:30:18.430705+00:00 +2025-12-18,Sketch,all,0,,20260408T193250Z,2026-04-08T22:30:18.430705+00:00 +2025-12-18,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T22:30:18.430705+00:00 +2025-12-18,Sweep AI,all,0,,20260408T193250Z,2026-04-08T22:30:18.430705+00:00 +2025-12-18,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T22:30:18.430705+00:00 +2025-12-19,Aider,all,22,,20260408T193250Z,2026-04-08T22:32:29.870012+00:00 +2025-12-19,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T22:32:29.870012+00:00 +2025-12-19,ChatGPT,all,8,,20260408T193250Z,2026-04-08T22:32:29.870012+00:00 +2025-12-19,Claude Code,all,13062,,20260408T193250Z,2026-04-08T22:32:29.870012+00:00 +2025-12-19,Cline,all,3121,,20260408T193250Z,2026-04-08T22:32:29.870012+00:00 +2025-12-19,Codegen,all,2,,20260408T193250Z,2026-04-08T22:32:29.870012+00:00 +2025-12-19,Coderabbit,all,17,,20260408T193250Z,2026-04-08T22:32:29.870012+00:00 +2025-12-19,Copilot,all,92,,20260408T193250Z,2026-04-08T22:32:29.870012+00:00 +2025-12-19,Copilot SWE Agent,all,11372,,20260408T193250Z,2026-04-08T22:32:29.870012+00:00 +2025-12-19,Crush,all,0,,20260408T193250Z,2026-04-08T22:32:29.870012+00:00 +2025-12-19,Cursor,all,703,,20260408T193250Z,2026-04-08T22:32:29.870012+00:00 +2025-12-19,DeepSource,all,21,,20260408T193250Z,2026-04-08T22:32:29.870012+00:00 +2025-12-19,Devin,all,122,,20260408T193250Z,2026-04-08T22:32:29.870012+00:00 +2025-12-19,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T22:32:29.870012+00:00 +2025-12-19,Gemini Code Assist,all,11,,20260408T193250Z,2026-04-08T22:32:29.870012+00:00 +2025-12-19,Gru,all,0,,20260408T193250Z,2026-04-08T22:32:29.870012+00:00 +2025-12-19,Jules (Google),all,2698,,20260408T193250Z,2026-04-08T22:32:29.870012+00:00 +2025-12-19,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T22:32:29.870012+00:00 +2025-12-19,Kilo Code,all,17,,20260408T193250Z,2026-04-08T22:32:29.870012+00:00 +2025-12-19,Lovable,all,0,,20260408T193250Z,2026-04-08T22:32:29.870012+00:00 +2025-12-19,OpenAI Codex,all,9,,20260408T193250Z,2026-04-08T22:32:29.870012+00:00 +2025-12-19,OpenCode,all,0,,20260408T193250Z,2026-04-08T22:32:29.870012+00:00 +2025-12-19,OpenHands,all,74,,20260408T193250Z,2026-04-08T22:32:29.870012+00:00 +2025-12-19,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T22:32:29.870012+00:00 +2025-12-19,Roo Code,all,7,,20260408T193250Z,2026-04-08T22:32:29.870012+00:00 +2025-12-19,Sketch,all,0,,20260408T193250Z,2026-04-08T22:32:29.870012+00:00 +2025-12-19,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T22:32:29.870012+00:00 +2025-12-19,Sweep AI,all,0,,20260408T193250Z,2026-04-08T22:32:29.870012+00:00 +2025-12-19,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T22:32:29.870012+00:00 +2025-12-20,Aider,all,11,,20260408T193250Z,2026-04-08T22:34:40.942372+00:00 +2025-12-20,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T22:34:40.942372+00:00 +2025-12-20,ChatGPT,all,12,,20260408T193250Z,2026-04-08T22:34:40.942372+00:00 +2025-12-20,Claude Code,all,12131,,20260408T193250Z,2026-04-08T22:34:40.942372+00:00 +2025-12-20,Cline,all,1178,,20260408T193250Z,2026-04-08T22:34:40.942372+00:00 +2025-12-20,Codegen,all,14,,20260408T193250Z,2026-04-08T22:34:40.942372+00:00 +2025-12-20,Coderabbit,all,17,,20260408T193250Z,2026-04-08T22:34:40.942372+00:00 +2025-12-20,Copilot,all,121,,20260408T193250Z,2026-04-08T22:34:40.942372+00:00 +2025-12-20,Copilot SWE Agent,all,10054,,20260408T193250Z,2026-04-08T22:34:40.942372+00:00 +2025-12-20,Crush,all,0,,20260408T193250Z,2026-04-08T22:34:40.942372+00:00 +2025-12-20,Cursor,all,776,,20260408T193250Z,2026-04-08T22:34:40.942372+00:00 +2025-12-20,DeepSource,all,31,,20260408T193250Z,2026-04-08T22:34:40.942372+00:00 +2025-12-20,Devin,all,72,,20260408T193250Z,2026-04-08T22:34:40.942372+00:00 +2025-12-20,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T22:34:40.942372+00:00 +2025-12-20,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T22:34:40.942372+00:00 +2025-12-20,Gru,all,0,,20260408T193250Z,2026-04-08T22:34:40.942372+00:00 +2025-12-20,Jules (Google),all,2854,,20260408T193250Z,2026-04-08T22:34:40.942372+00:00 +2025-12-20,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T22:34:40.942372+00:00 +2025-12-20,Kilo Code,all,54,,20260408T193250Z,2026-04-08T22:34:40.942372+00:00 +2025-12-20,Lovable,all,0,,20260408T193250Z,2026-04-08T22:34:40.942372+00:00 +2025-12-20,OpenAI Codex,all,14,,20260408T193250Z,2026-04-08T22:34:40.942372+00:00 +2025-12-20,OpenCode,all,0,,20260408T193250Z,2026-04-08T22:34:40.942372+00:00 +2025-12-20,OpenHands,all,67,,20260408T193250Z,2026-04-08T22:34:40.942372+00:00 +2025-12-20,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T22:34:40.942372+00:00 +2025-12-20,Roo Code,all,4,,20260408T193250Z,2026-04-08T22:34:40.942372+00:00 +2025-12-20,Sketch,all,0,,20260408T193250Z,2026-04-08T22:34:40.942372+00:00 +2025-12-20,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T22:34:40.942372+00:00 +2025-12-20,Sweep AI,all,0,,20260408T193250Z,2026-04-08T22:34:40.942372+00:00 +2025-12-20,Warp (Oz Agent),all,1,,20260408T193250Z,2026-04-08T22:34:40.942372+00:00 +2025-12-21,Aider,all,11,,20260408T193250Z,2026-04-08T22:36:53.038917+00:00 +2025-12-21,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T22:36:53.038917+00:00 +2025-12-21,ChatGPT,all,37,,20260408T193250Z,2026-04-08T22:36:53.038917+00:00 +2025-12-21,Claude Code,all,12279,,20260408T193250Z,2026-04-08T22:36:53.038917+00:00 +2025-12-21,Cline,all,723,,20260408T193250Z,2026-04-08T22:36:53.038917+00:00 +2025-12-21,Codegen,all,27,,20260408T193250Z,2026-04-08T22:36:53.038917+00:00 +2025-12-21,Coderabbit,all,16,,20260408T193250Z,2026-04-08T22:36:53.038917+00:00 +2025-12-21,Copilot,all,108,,20260408T193250Z,2026-04-08T22:36:53.038917+00:00 +2025-12-21,Copilot SWE Agent,all,10865,,20260408T193250Z,2026-04-08T22:36:53.038917+00:00 +2025-12-21,Crush,all,0,,20260408T193250Z,2026-04-08T22:36:53.038917+00:00 +2025-12-21,Cursor,all,1018,,20260408T193250Z,2026-04-08T22:36:53.038917+00:00 +2025-12-21,DeepSource,all,49,,20260408T193250Z,2026-04-08T22:36:53.038917+00:00 +2025-12-21,Devin,all,38,,20260408T193250Z,2026-04-08T22:36:53.038917+00:00 +2025-12-21,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T22:36:53.038917+00:00 +2025-12-21,Gemini Code Assist,all,3,,20260408T193250Z,2026-04-08T22:36:53.038917+00:00 +2025-12-21,Gru,all,0,,20260408T193250Z,2026-04-08T22:36:53.038917+00:00 +2025-12-21,Jules (Google),all,2778,,20260408T193250Z,2026-04-08T22:36:53.038917+00:00 +2025-12-21,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T22:36:53.038917+00:00 +2025-12-21,Kilo Code,all,4,,20260408T193250Z,2026-04-08T22:36:53.038917+00:00 +2025-12-21,Lovable,all,0,,20260408T193250Z,2026-04-08T22:36:53.038917+00:00 +2025-12-21,OpenAI Codex,all,10,,20260408T193250Z,2026-04-08T22:36:53.038917+00:00 +2025-12-21,OpenCode,all,0,,20260408T193250Z,2026-04-08T22:36:53.038917+00:00 +2025-12-21,OpenHands,all,43,,20260408T193250Z,2026-04-08T22:36:53.038917+00:00 +2025-12-21,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T22:36:53.038917+00:00 +2025-12-21,Roo Code,all,3,,20260408T193250Z,2026-04-08T22:36:53.038917+00:00 +2025-12-21,Sketch,all,0,,20260408T193250Z,2026-04-08T22:36:53.038917+00:00 +2025-12-21,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T22:36:53.038917+00:00 +2025-12-21,Sweep AI,all,0,,20260408T193250Z,2026-04-08T22:36:53.038917+00:00 +2025-12-21,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T22:36:53.038917+00:00 +2025-12-22,Aider,all,0,,20260408T193250Z,2026-04-08T22:39:04.931278+00:00 +2025-12-22,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T22:39:04.931278+00:00 +2025-12-22,ChatGPT,all,10,,20260408T193250Z,2026-04-08T22:39:04.931278+00:00 +2025-12-22,Claude Code,all,12139,,20260408T193250Z,2026-04-08T22:39:04.931278+00:00 +2025-12-22,Cline,all,2401,,20260408T193250Z,2026-04-08T22:39:04.931278+00:00 +2025-12-22,Codegen,all,17,,20260408T193250Z,2026-04-08T22:39:04.931278+00:00 +2025-12-22,Coderabbit,all,24,,20260408T193250Z,2026-04-08T22:39:04.931278+00:00 +2025-12-22,Copilot,all,168,,20260408T193250Z,2026-04-08T22:39:04.931278+00:00 +2025-12-22,Copilot SWE Agent,all,11350,,20260408T193250Z,2026-04-08T22:39:04.931278+00:00 +2025-12-22,Crush,all,0,,20260408T193250Z,2026-04-08T22:39:04.931278+00:00 +2025-12-22,Cursor,all,905,,20260408T193250Z,2026-04-08T22:39:04.931278+00:00 +2025-12-22,DeepSource,all,21,,20260408T193250Z,2026-04-08T22:39:04.931278+00:00 +2025-12-22,Devin,all,46,,20260408T193250Z,2026-04-08T22:39:04.931278+00:00 +2025-12-22,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T22:39:04.931278+00:00 +2025-12-22,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T22:39:04.931278+00:00 +2025-12-22,Gru,all,0,,20260408T193250Z,2026-04-08T22:39:04.931278+00:00 +2025-12-22,Jules (Google),all,2712,,20260408T193250Z,2026-04-08T22:39:04.931278+00:00 +2025-12-22,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T22:39:04.931278+00:00 +2025-12-22,Kilo Code,all,43,,20260408T193250Z,2026-04-08T22:39:04.931278+00:00 +2025-12-22,Lovable,all,0,,20260408T193250Z,2026-04-08T22:39:04.931278+00:00 +2025-12-22,OpenAI Codex,all,1,,20260408T193250Z,2026-04-08T22:39:04.931278+00:00 +2025-12-22,OpenCode,all,0,,20260408T193250Z,2026-04-08T22:39:04.931278+00:00 +2025-12-22,OpenHands,all,23,,20260408T193250Z,2026-04-08T22:39:04.931278+00:00 +2025-12-22,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T22:39:04.931278+00:00 +2025-12-22,Roo Code,all,14,,20260408T193250Z,2026-04-08T22:39:04.931278+00:00 +2025-12-22,Sketch,all,0,,20260408T193250Z,2026-04-08T22:39:04.931278+00:00 +2025-12-22,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T22:39:04.931278+00:00 +2025-12-22,Sweep AI,all,0,,20260408T193250Z,2026-04-08T22:39:04.931278+00:00 +2025-12-22,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T22:39:04.931278+00:00 +2025-12-23,Aider,all,2,,20260408T193250Z,2026-04-08T22:41:17.008349+00:00 +2025-12-23,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T22:41:17.008349+00:00 +2025-12-23,ChatGPT,all,0,,20260408T193250Z,2026-04-08T22:41:17.008349+00:00 +2025-12-23,Claude Code,all,12804,,20260408T193250Z,2026-04-08T22:41:17.008349+00:00 +2025-12-23,Cline,all,1144,,20260408T193250Z,2026-04-08T22:41:17.008349+00:00 +2025-12-23,Codegen,all,30,,20260408T193250Z,2026-04-08T22:41:17.008349+00:00 +2025-12-23,Coderabbit,all,19,,20260408T193250Z,2026-04-08T22:41:17.008349+00:00 +2025-12-23,Copilot,all,173,,20260408T193250Z,2026-04-08T22:41:17.008349+00:00 +2025-12-23,Copilot SWE Agent,all,9947,1,20260408T193250Z,2026-04-08T22:41:17.008349+00:00 +2025-12-23,Crush,all,0,,20260408T193250Z,2026-04-08T22:41:17.008349+00:00 +2025-12-23,Cursor,all,716,,20260408T193250Z,2026-04-08T22:41:17.008349+00:00 +2025-12-23,DeepSource,all,15,,20260408T193250Z,2026-04-08T22:41:17.008349+00:00 +2025-12-23,Devin,all,54,,20260408T193250Z,2026-04-08T22:41:17.008349+00:00 +2025-12-23,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T22:41:17.008349+00:00 +2025-12-23,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T22:41:17.008349+00:00 +2025-12-23,Gru,all,0,,20260408T193250Z,2026-04-08T22:41:17.008349+00:00 +2025-12-23,Jules (Google),all,2919,,20260408T193250Z,2026-04-08T22:41:17.008349+00:00 +2025-12-23,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T22:41:17.008349+00:00 +2025-12-23,Kilo Code,all,7,,20260408T193250Z,2026-04-08T22:41:17.008349+00:00 +2025-12-23,Lovable,all,0,,20260408T193250Z,2026-04-08T22:41:17.008349+00:00 +2025-12-23,OpenAI Codex,all,1,,20260408T193250Z,2026-04-08T22:41:17.008349+00:00 +2025-12-23,OpenCode,all,0,,20260408T193250Z,2026-04-08T22:41:17.008349+00:00 +2025-12-23,OpenHands,all,21,,20260408T193250Z,2026-04-08T22:41:17.008349+00:00 +2025-12-23,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T22:41:17.008349+00:00 +2025-12-23,Roo Code,all,4,,20260408T193250Z,2026-04-08T22:41:17.008349+00:00 +2025-12-23,Sketch,all,0,,20260408T193250Z,2026-04-08T22:41:17.008349+00:00 +2025-12-23,Sourcery AI,all,2,,20260408T193250Z,2026-04-08T22:41:17.008349+00:00 +2025-12-23,Sweep AI,all,0,,20260408T193250Z,2026-04-08T22:41:17.008349+00:00 +2025-12-23,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T22:41:17.008349+00:00 +2025-12-24,Aider,all,11,,20260408T193250Z,2026-04-08T22:43:29.086718+00:00 +2025-12-24,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T22:43:29.086718+00:00 +2025-12-24,ChatGPT,all,1,,20260408T193250Z,2026-04-08T22:43:29.086718+00:00 +2025-12-24,Claude Code,all,13072,,20260408T193250Z,2026-04-08T22:43:29.086718+00:00 +2025-12-24,Cline,all,1147,,20260408T193250Z,2026-04-08T22:43:29.086718+00:00 +2025-12-24,Codegen,all,14,,20260408T193250Z,2026-04-08T22:43:29.086718+00:00 +2025-12-24,Coderabbit,all,21,,20260408T193250Z,2026-04-08T22:43:29.086718+00:00 +2025-12-24,Copilot,all,76,,20260408T193250Z,2026-04-08T22:43:29.086718+00:00 +2025-12-24,Copilot SWE Agent,all,9340,,20260408T193250Z,2026-04-08T22:43:29.086718+00:00 +2025-12-24,Crush,all,0,,20260408T193250Z,2026-04-08T22:43:29.086718+00:00 +2025-12-24,Cursor,all,976,,20260408T193250Z,2026-04-08T22:43:29.086718+00:00 +2025-12-24,DeepSource,all,17,,20260408T193250Z,2026-04-08T22:43:29.086718+00:00 +2025-12-24,Devin,all,52,,20260408T193250Z,2026-04-08T22:43:29.086718+00:00 +2025-12-24,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T22:43:29.086718+00:00 +2025-12-24,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T22:43:29.086718+00:00 +2025-12-24,Gru,all,0,,20260408T193250Z,2026-04-08T22:43:29.086718+00:00 +2025-12-24,Jules (Google),all,3010,,20260408T193250Z,2026-04-08T22:43:29.086718+00:00 +2025-12-24,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T22:43:29.086718+00:00 +2025-12-24,Kilo Code,all,42,,20260408T193250Z,2026-04-08T22:43:29.086718+00:00 +2025-12-24,Lovable,all,0,,20260408T193250Z,2026-04-08T22:43:29.086718+00:00 +2025-12-24,OpenAI Codex,all,0,,20260408T193250Z,2026-04-08T22:43:29.086718+00:00 +2025-12-24,OpenCode,all,0,,20260408T193250Z,2026-04-08T22:43:29.086718+00:00 +2025-12-24,OpenHands,all,32,,20260408T193250Z,2026-04-08T22:43:29.086718+00:00 +2025-12-24,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T22:43:29.086718+00:00 +2025-12-24,Roo Code,all,3,,20260408T193250Z,2026-04-08T22:43:29.086718+00:00 +2025-12-24,Sketch,all,0,,20260408T193250Z,2026-04-08T22:43:29.086718+00:00 +2025-12-24,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T22:43:29.086718+00:00 +2025-12-24,Sweep AI,all,0,,20260408T193250Z,2026-04-08T22:43:29.086718+00:00 +2025-12-24,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T22:43:29.086718+00:00 +2025-12-25,Aider,all,2,,20260408T193250Z,2026-04-08T22:45:42.917202+00:00 +2025-12-25,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T22:45:42.917202+00:00 +2025-12-25,ChatGPT,all,0,,20260408T193250Z,2026-04-08T22:45:42.917202+00:00 +2025-12-25,Claude Code,all,13278,,20260408T193250Z,2026-04-08T22:45:42.917202+00:00 +2025-12-25,Cline,all,37,,20260408T193250Z,2026-04-08T22:45:42.917202+00:00 +2025-12-25,Codegen,all,9,,20260408T193250Z,2026-04-08T22:45:42.917202+00:00 +2025-12-25,Coderabbit,all,18,,20260408T193250Z,2026-04-08T22:45:42.917202+00:00 +2025-12-25,Copilot,all,89,,20260408T193250Z,2026-04-08T22:45:42.917202+00:00 +2025-12-25,Copilot SWE Agent,all,8080,,20260408T193250Z,2026-04-08T22:45:42.917202+00:00 +2025-12-25,Crush,all,0,,20260408T193250Z,2026-04-08T22:45:42.917202+00:00 +2025-12-25,Cursor,all,916,,20260408T193250Z,2026-04-08T22:45:42.917202+00:00 +2025-12-25,DeepSource,all,25,,20260408T193250Z,2026-04-08T22:45:42.917202+00:00 +2025-12-25,Devin,all,15,,20260408T193250Z,2026-04-08T22:45:42.917202+00:00 +2025-12-25,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T22:45:42.917202+00:00 +2025-12-25,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T22:45:42.917202+00:00 +2025-12-25,Gru,all,0,,20260408T193250Z,2026-04-08T22:45:42.917202+00:00 +2025-12-25,Jules (Google),all,2808,,20260408T193250Z,2026-04-08T22:45:42.917202+00:00 +2025-12-25,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T22:45:42.917202+00:00 +2025-12-25,Kilo Code,all,7,,20260408T193250Z,2026-04-08T22:45:42.917202+00:00 +2025-12-25,Lovable,all,0,,20260408T193250Z,2026-04-08T22:45:42.917202+00:00 +2025-12-25,OpenAI Codex,all,23,,20260408T193250Z,2026-04-08T22:45:42.917202+00:00 +2025-12-25,OpenCode,all,0,,20260408T193250Z,2026-04-08T22:45:42.917202+00:00 +2025-12-25,OpenHands,all,67,,20260408T193250Z,2026-04-08T22:45:42.917202+00:00 +2025-12-25,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T22:45:42.917202+00:00 +2025-12-25,Roo Code,all,4,,20260408T193250Z,2026-04-08T22:45:42.917202+00:00 +2025-12-25,Sketch,all,0,,20260408T193250Z,2026-04-08T22:45:42.917202+00:00 +2025-12-25,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T22:45:42.917202+00:00 +2025-12-25,Sweep AI,all,0,,20260408T193250Z,2026-04-08T22:45:42.917202+00:00 +2025-12-25,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T22:45:42.917202+00:00 +2025-12-26,Aider,all,1,,20260408T193250Z,2026-04-08T22:47:56.436098+00:00 +2025-12-26,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T22:47:56.436098+00:00 +2025-12-26,ChatGPT,all,1,,20260408T193250Z,2026-04-08T22:47:56.436098+00:00 +2025-12-26,Claude Code,all,15202,,20260408T193250Z,2026-04-08T22:47:56.436098+00:00 +2025-12-26,Cline,all,2602,,20260408T193250Z,2026-04-08T22:47:56.436098+00:00 +2025-12-26,Codegen,all,39,,20260408T193250Z,2026-04-08T22:47:56.436098+00:00 +2025-12-26,Coderabbit,all,9,,20260408T193250Z,2026-04-08T22:47:56.436098+00:00 +2025-12-26,Copilot,all,91,,20260408T193250Z,2026-04-08T22:47:56.436098+00:00 +2025-12-26,Copilot SWE Agent,all,9402,,20260408T193250Z,2026-04-08T22:47:56.436098+00:00 +2025-12-26,Crush,all,0,,20260408T193250Z,2026-04-08T22:47:56.436098+00:00 +2025-12-26,Cursor,all,1110,,20260408T193250Z,2026-04-08T22:47:56.436098+00:00 +2025-12-26,DeepSource,all,33,,20260408T193250Z,2026-04-08T22:47:56.436098+00:00 +2025-12-26,Devin,all,3,,20260408T193250Z,2026-04-08T22:47:56.436098+00:00 +2025-12-26,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T22:47:56.436098+00:00 +2025-12-26,Gemini Code Assist,all,1,,20260408T193250Z,2026-04-08T22:47:56.436098+00:00 +2025-12-26,Gru,all,0,,20260408T193250Z,2026-04-08T22:47:56.436098+00:00 +2025-12-26,Jules (Google),all,2720,,20260408T193250Z,2026-04-08T22:47:56.436098+00:00 +2025-12-26,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T22:47:56.436098+00:00 +2025-12-26,Kilo Code,all,11,,20260408T193250Z,2026-04-08T22:47:56.436098+00:00 +2025-12-26,Lovable,all,0,,20260408T193250Z,2026-04-08T22:47:56.436098+00:00 +2025-12-26,OpenAI Codex,all,43,,20260408T193250Z,2026-04-08T22:47:56.436098+00:00 +2025-12-26,OpenCode,all,0,,20260408T193250Z,2026-04-08T22:47:56.436098+00:00 +2025-12-26,OpenHands,all,38,,20260408T193250Z,2026-04-08T22:47:56.436098+00:00 +2025-12-26,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T22:47:56.436098+00:00 +2025-12-26,Roo Code,all,6,,20260408T193250Z,2026-04-08T22:47:56.436098+00:00 +2025-12-26,Sketch,all,0,,20260408T193250Z,2026-04-08T22:47:56.436098+00:00 +2025-12-26,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T22:47:56.436098+00:00 +2025-12-26,Sweep AI,all,0,,20260408T193250Z,2026-04-08T22:47:56.436098+00:00 +2025-12-26,Warp (Oz Agent),all,28,,20260408T193250Z,2026-04-08T22:47:56.436098+00:00 +2025-12-27,Aider,all,0,,20260408T193250Z,2026-04-08T22:50:08.401907+00:00 +2025-12-27,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T22:50:08.401907+00:00 +2025-12-27,ChatGPT,all,6,,20260408T193250Z,2026-04-08T22:50:08.401907+00:00 +2025-12-27,Claude Code,all,19779,,20260408T193250Z,2026-04-08T22:50:08.401907+00:00 +2025-12-27,Cline,all,291,,20260408T193250Z,2026-04-08T22:50:08.401907+00:00 +2025-12-27,Codegen,all,18,,20260408T193250Z,2026-04-08T22:50:08.401907+00:00 +2025-12-27,Coderabbit,all,10,,20260408T193250Z,2026-04-08T22:50:08.401907+00:00 +2025-12-27,Copilot,all,99,,20260408T193250Z,2026-04-08T22:50:08.401907+00:00 +2025-12-27,Copilot SWE Agent,all,10685,,20260408T193250Z,2026-04-08T22:50:08.401907+00:00 +2025-12-27,Crush,all,0,,20260408T193250Z,2026-04-08T22:50:08.401907+00:00 +2025-12-27,Cursor,all,1056,,20260408T193250Z,2026-04-08T22:50:08.401907+00:00 +2025-12-27,DeepSource,all,11,,20260408T193250Z,2026-04-08T22:50:08.401907+00:00 +2025-12-27,Devin,all,44,,20260408T193250Z,2026-04-08T22:50:08.401907+00:00 +2025-12-27,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T22:50:08.401907+00:00 +2025-12-27,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T22:50:08.401907+00:00 +2025-12-27,Gru,all,0,,20260408T193250Z,2026-04-08T22:50:08.401907+00:00 +2025-12-27,Jules (Google),all,2901,,20260408T193250Z,2026-04-08T22:50:08.401907+00:00 +2025-12-27,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T22:50:08.401907+00:00 +2025-12-27,Kilo Code,all,12,,20260408T193250Z,2026-04-08T22:50:08.401907+00:00 +2025-12-27,Lovable,all,0,,20260408T193250Z,2026-04-08T22:50:08.401907+00:00 +2025-12-27,OpenAI Codex,all,18,,20260408T193250Z,2026-04-08T22:50:08.401907+00:00 +2025-12-27,OpenCode,all,0,,20260408T193250Z,2026-04-08T22:50:08.401907+00:00 +2025-12-27,OpenHands,all,23,,20260408T193250Z,2026-04-08T22:50:08.401907+00:00 +2025-12-27,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T22:50:08.401907+00:00 +2025-12-27,Roo Code,all,27,,20260408T193250Z,2026-04-08T22:50:08.401907+00:00 +2025-12-27,Sketch,all,0,,20260408T193250Z,2026-04-08T22:50:08.401907+00:00 +2025-12-27,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T22:50:08.401907+00:00 +2025-12-27,Sweep AI,all,0,,20260408T193250Z,2026-04-08T22:50:08.401907+00:00 +2025-12-27,Warp (Oz Agent),all,0,,20260408T193250Z,2026-04-08T22:50:08.401907+00:00 +2025-12-28,Aider,all,14,,20260408T193250Z,2026-04-08T22:52:20.442693+00:00 +2025-12-28,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T22:52:20.442693+00:00 +2025-12-28,ChatGPT,all,1,,20260408T193250Z,2026-04-08T22:52:20.442693+00:00 +2025-12-28,Claude Code,all,15243,,20260408T193250Z,2026-04-08T22:52:20.442693+00:00 +2025-12-28,Cline,all,480,,20260408T193250Z,2026-04-08T22:52:20.442693+00:00 +2025-12-28,Codegen,all,16,,20260408T193250Z,2026-04-08T22:52:20.442693+00:00 +2025-12-28,Coderabbit,all,25,,20260408T193250Z,2026-04-08T22:52:20.442693+00:00 +2025-12-28,Copilot,all,191,,20260408T193250Z,2026-04-08T22:52:20.442693+00:00 +2025-12-28,Copilot SWE Agent,all,10507,,20260408T193250Z,2026-04-08T22:52:20.442693+00:00 +2025-12-28,Crush,all,0,,20260408T193250Z,2026-04-08T22:52:20.442693+00:00 +2025-12-28,Cursor,all,1376,,20260408T193250Z,2026-04-08T22:52:20.442693+00:00 +2025-12-28,DeepSource,all,30,,20260408T193250Z,2026-04-08T22:52:20.442693+00:00 +2025-12-28,Devin,all,61,,20260408T193250Z,2026-04-08T22:52:20.442693+00:00 +2025-12-28,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T22:52:20.442693+00:00 +2025-12-28,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T22:52:20.442693+00:00 +2025-12-28,Gru,all,0,,20260408T193250Z,2026-04-08T22:52:20.442693+00:00 +2025-12-28,Jules (Google),all,2991,,20260408T193250Z,2026-04-08T22:52:20.442693+00:00 +2025-12-28,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T22:52:20.442693+00:00 +2025-12-28,Kilo Code,all,0,,20260408T193250Z,2026-04-08T22:52:20.442693+00:00 +2025-12-28,Lovable,all,0,,20260408T193250Z,2026-04-08T22:52:20.442693+00:00 +2025-12-28,OpenAI Codex,all,15,,20260408T193250Z,2026-04-08T22:52:20.442693+00:00 +2025-12-28,OpenCode,all,0,,20260408T193250Z,2026-04-08T22:52:20.442693+00:00 +2025-12-28,OpenHands,all,23,,20260408T193250Z,2026-04-08T22:52:20.442693+00:00 +2025-12-28,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T22:52:20.442693+00:00 +2025-12-28,Roo Code,all,2,,20260408T193250Z,2026-04-08T22:52:20.442693+00:00 +2025-12-28,Sketch,all,0,,20260408T193250Z,2026-04-08T22:52:20.442693+00:00 +2025-12-28,Sourcery AI,all,0,1,20260408T193250Z,2026-04-08T22:52:20.442693+00:00 +2025-12-28,Sweep AI,all,0,,20260408T193250Z,2026-04-08T22:52:20.442693+00:00 +2025-12-28,Warp (Oz Agent),all,3,,20260408T193250Z,2026-04-08T22:52:20.442693+00:00 +2025-12-29,Aider,all,7,,20260408T193250Z,2026-04-08T22:54:32.434229+00:00 +2025-12-29,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T22:54:32.434229+00:00 +2025-12-29,ChatGPT,all,1,,20260408T193250Z,2026-04-08T22:54:32.434229+00:00 +2025-12-29,Claude Code,all,17585,,20260408T193250Z,2026-04-08T22:54:32.434229+00:00 +2025-12-29,Cline,all,1928,,20260408T193250Z,2026-04-08T22:54:32.434229+00:00 +2025-12-29,Codegen,all,12,,20260408T193250Z,2026-04-08T22:54:32.434229+00:00 +2025-12-29,Coderabbit,all,16,,20260408T193250Z,2026-04-08T22:54:32.434229+00:00 +2025-12-29,Copilot,all,126,,20260408T193250Z,2026-04-08T22:54:32.434229+00:00 +2025-12-29,Copilot SWE Agent,all,11249,,20260408T193250Z,2026-04-08T22:54:32.434229+00:00 +2025-12-29,Crush,all,0,,20260408T193250Z,2026-04-08T22:54:32.434229+00:00 +2025-12-29,Cursor,all,1319,,20260408T193250Z,2026-04-08T22:54:32.434229+00:00 +2025-12-29,DeepSource,all,29,,20260408T193250Z,2026-04-08T22:54:32.434229+00:00 +2025-12-29,Devin,all,151,,20260408T193250Z,2026-04-08T22:54:32.434229+00:00 +2025-12-29,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T22:54:32.434229+00:00 +2025-12-29,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T22:54:32.434229+00:00 +2025-12-29,Gru,all,0,,20260408T193250Z,2026-04-08T22:54:32.434229+00:00 +2025-12-29,Jules (Google),all,2951,,20260408T193250Z,2026-04-08T22:54:32.434229+00:00 +2025-12-29,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T22:54:32.434229+00:00 +2025-12-29,Kilo Code,all,5,,20260408T193250Z,2026-04-08T22:54:32.434229+00:00 +2025-12-29,Lovable,all,1,,20260408T193250Z,2026-04-08T22:54:32.434229+00:00 +2025-12-29,OpenAI Codex,all,27,,20260408T193250Z,2026-04-08T22:54:32.434229+00:00 +2025-12-29,OpenCode,all,0,,20260408T193250Z,2026-04-08T22:54:32.434229+00:00 +2025-12-29,OpenHands,all,30,,20260408T193250Z,2026-04-08T22:54:32.434229+00:00 +2025-12-29,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T22:54:32.434229+00:00 +2025-12-29,Roo Code,all,4,,20260408T193250Z,2026-04-08T22:54:32.434229+00:00 +2025-12-29,Sketch,all,0,,20260408T193250Z,2026-04-08T22:54:32.434229+00:00 +2025-12-29,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T22:54:32.434229+00:00 +2025-12-29,Sweep AI,all,0,,20260408T193250Z,2026-04-08T22:54:32.434229+00:00 +2025-12-29,Warp (Oz Agent),all,3,,20260408T193250Z,2026-04-08T22:54:32.434229+00:00 +2025-12-30,Aider,all,3,,20260408T193250Z,2026-04-08T22:56:43.608166+00:00 +2025-12-30,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T22:56:43.608166+00:00 +2025-12-30,ChatGPT,all,1,,20260408T193250Z,2026-04-08T22:56:43.608166+00:00 +2025-12-30,Claude Code,all,17550,,20260408T193250Z,2026-04-08T22:56:43.608166+00:00 +2025-12-30,Cline,all,1515,,20260408T193250Z,2026-04-08T22:56:43.608166+00:00 +2025-12-30,Codegen,all,9,,20260408T193250Z,2026-04-08T22:56:43.608166+00:00 +2025-12-30,Coderabbit,all,21,,20260408T193250Z,2026-04-08T22:56:43.608166+00:00 +2025-12-30,Copilot,all,480,,20260408T193250Z,2026-04-08T22:56:43.608166+00:00 +2025-12-30,Copilot SWE Agent,all,11578,,20260408T193250Z,2026-04-08T22:56:43.608166+00:00 +2025-12-30,Crush,all,0,,20260408T193250Z,2026-04-08T22:56:43.608166+00:00 +2025-12-30,Cursor,all,1354,,20260408T193250Z,2026-04-08T22:56:43.608166+00:00 +2025-12-30,DeepSource,all,11,,20260408T193250Z,2026-04-08T22:56:43.608166+00:00 +2025-12-30,Devin,all,89,,20260408T193250Z,2026-04-08T22:56:43.608166+00:00 +2025-12-30,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T22:56:43.608166+00:00 +2025-12-30,Gemini Code Assist,all,0,,20260408T193250Z,2026-04-08T22:56:43.608166+00:00 +2025-12-30,Gru,all,0,,20260408T193250Z,2026-04-08T22:56:43.608166+00:00 +2025-12-30,Jules (Google),all,3038,,20260408T193250Z,2026-04-08T22:56:43.608166+00:00 +2025-12-30,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T22:56:43.608166+00:00 +2025-12-30,Kilo Code,all,2,,20260408T193250Z,2026-04-08T22:56:43.608166+00:00 +2025-12-30,Lovable,all,0,,20260408T193250Z,2026-04-08T22:56:43.608166+00:00 +2025-12-30,OpenAI Codex,all,97,,20260408T193250Z,2026-04-08T22:56:43.608166+00:00 +2025-12-30,OpenCode,all,0,,20260408T193250Z,2026-04-08T22:56:43.608166+00:00 +2025-12-30,OpenHands,all,45,,20260408T193250Z,2026-04-08T22:56:43.608166+00:00 +2025-12-30,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T22:56:43.608166+00:00 +2025-12-30,Roo Code,all,0,,20260408T193250Z,2026-04-08T22:56:43.608166+00:00 +2025-12-30,Sketch,all,0,,20260408T193250Z,2026-04-08T22:56:43.608166+00:00 +2025-12-30,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T22:56:43.608166+00:00 +2025-12-30,Sweep AI,all,0,,20260408T193250Z,2026-04-08T22:56:43.608166+00:00 +2025-12-30,Warp (Oz Agent),all,8,,20260408T193250Z,2026-04-08T22:56:43.608166+00:00 +2025-12-31,Aider,all,8,,20260408T193250Z,2026-04-08T22:58:55.159922+00:00 +2025-12-31,Amp (Sourcegraph),all,0,,20260408T193250Z,2026-04-08T22:58:55.159922+00:00 +2025-12-31,ChatGPT,all,3,,20260408T193250Z,2026-04-08T22:58:55.159922+00:00 +2025-12-31,Claude Code,all,15052,,20260408T193250Z,2026-04-08T22:58:55.159922+00:00 +2025-12-31,Cline,all,2499,,20260408T193250Z,2026-04-08T22:58:55.159922+00:00 +2025-12-31,Codegen,all,16,,20260408T193250Z,2026-04-08T22:58:55.159922+00:00 +2025-12-31,Coderabbit,all,15,,20260408T193250Z,2026-04-08T22:58:55.159922+00:00 +2025-12-31,Copilot,all,65,,20260408T193250Z,2026-04-08T22:58:55.159922+00:00 +2025-12-31,Copilot SWE Agent,all,9627,,20260408T193250Z,2026-04-08T22:58:55.159922+00:00 +2025-12-31,Crush,all,0,,20260408T193250Z,2026-04-08T22:58:55.159922+00:00 +2025-12-31,Cursor,all,906,,20260408T193250Z,2026-04-08T22:58:55.159922+00:00 +2025-12-31,DeepSource,all,10,,20260408T193250Z,2026-04-08T22:58:55.159922+00:00 +2025-12-31,Devin,all,65,,20260408T193250Z,2026-04-08T22:58:55.159922+00:00 +2025-12-31,Gemini CLI,all,0,,20260408T193250Z,2026-04-08T22:58:55.159922+00:00 +2025-12-31,Gemini Code Assist,all,4,,20260408T193250Z,2026-04-08T22:58:55.159922+00:00 +2025-12-31,Gru,all,0,,20260408T193250Z,2026-04-08T22:58:55.159922+00:00 +2025-12-31,Jules (Google),all,2772,,20260408T193250Z,2026-04-08T22:58:55.159922+00:00 +2025-12-31,Junie (JetBrains),all,0,,20260408T193250Z,2026-04-08T22:58:55.159922+00:00 +2025-12-31,Kilo Code,all,35,,20260408T193250Z,2026-04-08T22:58:55.159922+00:00 +2025-12-31,Lovable,all,4,,20260408T193250Z,2026-04-08T22:58:55.159922+00:00 +2025-12-31,OpenAI Codex,all,43,,20260408T193250Z,2026-04-08T22:58:55.159922+00:00 +2025-12-31,OpenCode,all,0,,20260408T193250Z,2026-04-08T22:58:55.159922+00:00 +2025-12-31,OpenHands,all,58,,20260408T193250Z,2026-04-08T22:58:55.159922+00:00 +2025-12-31,Qwen Coder,all,0,,20260408T193250Z,2026-04-08T22:58:55.159922+00:00 +2025-12-31,Roo Code,all,3,,20260408T193250Z,2026-04-08T22:58:55.159922+00:00 +2025-12-31,Sketch,all,0,,20260408T193250Z,2026-04-08T22:58:55.159922+00:00 +2025-12-31,Sourcery AI,all,0,,20260408T193250Z,2026-04-08T22:58:55.159922+00:00 +2025-12-31,Sweep AI,all,0,,20260408T193250Z,2026-04-08T22:58:55.159922+00:00 +2025-12-31,Warp (Oz Agent),all,2,,20260408T193250Z,2026-04-08T22:58:55.159922+00:00 +2026-01-01,Aider,all,3,,legacy,2026-03-31T05:04:01.401654Z +2026-01-01,Aider,top-packages,0,,legacy,2026-03-31T05:14:46.808698Z +2026-01-01,Aider,trending,0,,legacy,2026-03-31T05:31:00.867030Z +2026-01-01,Amp (Sourcegraph),all,0,,legacy,2026-03-31T05:04:01.401654Z +2026-01-01,Amp (Sourcegraph),top-packages,0,,legacy,2026-03-31T05:14:46.808698Z +2026-01-01,Amp (Sourcegraph),trending,0,,legacy,2026-03-31T05:31:00.867030Z +2026-01-01,ChatGPT,all,7,,legacy,2026-03-31T05:04:01.401654Z +2026-01-01,ChatGPT,top-packages,0,,legacy,2026-03-31T05:14:46.808698Z +2026-01-01,ChatGPT,trending,0,,legacy,2026-03-31T05:31:00.867030Z +2026-01-01,Claude Code,all,13437,,legacy,2026-03-31T05:04:01.401654Z +2026-01-01,Claude Code,top-packages,0,,legacy,2026-03-31T05:14:46.808698Z +2026-01-01,Claude Code,trending,0,,legacy,2026-03-31T05:31:00.867030Z +2026-01-01,Cline,all,1667,,legacy,2026-03-31T05:04:01.401654Z +2026-01-01,Cline,top-packages,0,,legacy,2026-03-31T05:14:46.808698Z +2026-01-01,Cline,trending,0,,legacy,2026-03-31T05:31:00.867030Z +2026-01-01,Codegen,all,9,,legacy,2026-03-31T05:04:01.401654Z +2026-01-01,Codegen,top-packages,0,,legacy,2026-03-31T05:14:46.808698Z +2026-01-01,Codegen,trending,0,,legacy,2026-03-31T05:31:00.867030Z +2026-01-01,Coderabbit,all,7,,legacy,2026-03-31T05:04:01.401654Z +2026-01-01,Coderabbit,top-packages,0,,legacy,2026-03-31T05:14:46.808698Z +2026-01-01,Coderabbit,trending,0,,legacy,2026-03-31T05:31:00.867030Z +2026-01-01,Copilot,all,93,,legacy,2026-03-31T05:04:01.401654Z +2026-01-01,Copilot,top-packages,0,,legacy,2026-03-31T05:14:46.808698Z +2026-01-01,Copilot,trending,0,,legacy,2026-03-31T05:31:00.867030Z +2026-01-01,Copilot SWE Agent,all,11395,,legacy,2026-03-31T05:04:01.401654Z +2026-01-01,Copilot SWE Agent,top-packages,0,,legacy,2026-03-31T05:14:46.808698Z +2026-01-01,Copilot SWE Agent,trending,0,,legacy,2026-03-31T05:31:00.867030Z +2026-01-01,Crush,all,0,,legacy,2026-03-31T05:04:01.401654Z +2026-01-01,Crush,top-packages,0,,legacy,2026-03-31T05:14:46.808698Z +2026-01-01,Crush,trending,0,,legacy,2026-03-31T05:31:00.867030Z +2026-01-01,Cursor,all,1015,,legacy,2026-03-31T05:04:01.401654Z +2026-01-01,Cursor,top-packages,0,,legacy,2026-03-31T05:14:46.808698Z +2026-01-01,Cursor,trending,0,,legacy,2026-03-31T05:31:00.867030Z +2026-01-01,DeepSource,all,8,,legacy,2026-03-31T05:04:01.401654Z +2026-01-01,DeepSource,top-packages,0,,legacy,2026-03-31T05:14:46.808698Z +2026-01-01,DeepSource,trending,0,,legacy,2026-03-31T05:31:00.867030Z +2026-01-01,Devin,all,64,,legacy,2026-03-31T05:04:01.401654Z +2026-01-01,Devin,top-packages,0,,legacy,2026-03-31T05:14:46.808698Z +2026-01-01,Devin,trending,0,1,legacy,2026-03-31T05:31:00.867030Z +2026-01-01,Gemini CLI,all,0,,legacy,2026-03-31T05:04:01.401654Z +2026-01-01,Gemini CLI,top-packages,0,,legacy,2026-03-31T05:14:46.808698Z +2026-01-01,Gemini CLI,trending,0,,legacy,2026-03-31T05:31:00.867030Z +2026-01-01,Gemini Code Assist,all,0,,legacy,2026-03-31T05:04:01.401654Z +2026-01-01,Gemini Code Assist,top-packages,0,,legacy,2026-03-31T05:14:46.808698Z +2026-01-01,Gemini Code Assist,trending,0,,legacy,2026-03-31T05:31:00.867030Z +2026-01-01,Gru,all,0,,legacy,2026-03-31T05:04:01.401654Z +2026-01-01,Gru,top-packages,0,,legacy,2026-03-31T05:14:46.808698Z +2026-01-01,Gru,trending,0,,legacy,2026-03-31T05:31:00.867030Z +2026-01-01,Jules (Google),all,3222,1,legacy,2026-03-31T05:04:01.401654Z +2026-01-01,Jules (Google),top-packages,0,,legacy,2026-03-31T05:14:46.808698Z +2026-01-01,Jules (Google),trending,0,,legacy,2026-03-31T05:31:00.867030Z +2026-01-01,Junie (JetBrains),all,0,,legacy,2026-03-31T05:04:01.401654Z +2026-01-01,Junie (JetBrains),top-packages,0,,legacy,2026-03-31T05:14:46.808698Z +2026-01-01,Junie (JetBrains),trending,0,,legacy,2026-03-31T05:31:00.867030Z +2026-01-01,Kilo Code,all,11,,legacy,2026-03-31T05:04:01.401654Z +2026-01-01,Kilo Code,top-packages,0,,legacy,2026-03-31T05:14:46.808698Z +2026-01-01,Kilo Code,trending,0,,legacy,2026-03-31T05:31:00.867030Z +2026-01-01,Lovable,all,2,,legacy,2026-03-31T05:04:01.401654Z +2026-01-01,Lovable,top-packages,0,,legacy,2026-03-31T05:14:46.808698Z +2026-01-01,Lovable,trending,0,,legacy,2026-03-31T05:31:00.867030Z +2026-01-01,OpenAI Codex,all,36,,legacy,2026-03-31T05:04:01.401654Z +2026-01-01,OpenAI Codex,top-packages,0,,legacy,2026-03-31T05:14:46.808698Z +2026-01-01,OpenAI Codex,trending,0,,legacy,2026-03-31T05:31:00.867030Z +2026-01-01,OpenCode,all,0,,legacy,2026-03-31T05:04:01.401654Z +2026-01-01,OpenCode,top-packages,0,,legacy,2026-03-31T05:14:46.808698Z +2026-01-01,OpenCode,trending,0,,legacy,2026-03-31T05:31:00.867030Z +2026-01-01,OpenHands,all,19,,legacy,2026-03-31T05:04:01.401654Z +2026-01-01,OpenHands,top-packages,0,,legacy,2026-03-31T05:14:46.808698Z +2026-01-01,OpenHands,trending,0,,legacy,2026-03-31T05:31:00.867030Z +2026-01-01,Qwen Coder,all,0,,legacy,2026-03-31T05:04:01.401654Z +2026-01-01,Qwen Coder,top-packages,0,,legacy,2026-03-31T05:14:46.808698Z +2026-01-01,Qwen Coder,trending,0,,legacy,2026-03-31T05:31:00.867030Z +2026-01-01,Roo Code,all,7,,legacy,2026-03-31T05:04:01.401654Z +2026-01-01,Roo Code,top-packages,0,,legacy,2026-03-31T05:14:46.808698Z +2026-01-01,Roo Code,trending,0,,legacy,2026-03-31T05:31:00.867030Z +2026-01-01,Sketch,all,0,,legacy,2026-03-31T05:04:01.401654Z +2026-01-01,Sketch,top-packages,0,,legacy,2026-03-31T05:14:46.808698Z +2026-01-01,Sketch,trending,0,,legacy,2026-03-31T05:31:00.867030Z +2026-01-01,Sourcery AI,all,0,,legacy,2026-03-31T05:04:01.401654Z +2026-01-01,Sourcery AI,top-packages,0,,legacy,2026-03-31T05:14:46.808698Z +2026-01-01,Sourcery AI,trending,0,,legacy,2026-03-31T05:31:00.867030Z +2026-01-01,Sweep AI,all,0,,legacy,2026-03-31T05:04:01.401654Z +2026-01-01,Sweep AI,top-packages,0,,legacy,2026-03-31T05:14:46.808698Z +2026-01-01,Sweep AI,trending,0,,legacy,2026-03-31T05:31:00.867030Z +2026-01-01,Warp (Oz Agent),all,0,,legacy,2026-03-31T05:04:01.401654Z +2026-01-01,Warp (Oz Agent),top-packages,0,,legacy,2026-03-31T05:14:46.808698Z +2026-01-01,Warp (Oz Agent),trending,0,,legacy,2026-03-31T05:31:00.867030Z +2026-01-02,Aider,all,1,,20260408T165316Z,2026-04-08T16:53:16.193117+00:00 +2026-01-02,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T16:53:16.193117+00:00 +2026-01-02,ChatGPT,all,13,,20260408T165316Z,2026-04-08T16:53:16.193117+00:00 +2026-01-02,Claude Code,all,14460,,20260408T165316Z,2026-04-08T16:53:16.193117+00:00 +2026-01-02,Cline,all,843,,20260408T165316Z,2026-04-08T16:53:16.193117+00:00 +2026-01-02,Codegen,all,12,,20260408T165316Z,2026-04-08T16:53:16.193117+00:00 +2026-01-02,Coderabbit,all,15,,20260408T165316Z,2026-04-08T16:53:16.193117+00:00 +2026-01-02,Copilot,all,302,,20260408T165316Z,2026-04-08T16:53:16.193117+00:00 +2026-01-02,Copilot SWE Agent,all,13344,1,20260408T165316Z,2026-04-08T16:53:16.193117+00:00 +2026-01-02,Crush,all,0,,20260408T165316Z,2026-04-08T16:53:16.193117+00:00 +2026-01-02,Cursor,all,993,,20260408T165316Z,2026-04-08T16:53:16.193117+00:00 +2026-01-02,DeepSource,all,46,,20260408T165316Z,2026-04-08T16:53:16.193117+00:00 +2026-01-02,Devin,all,52,1,20260408T165316Z,2026-04-08T16:53:16.193117+00:00 +2026-01-02,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T16:53:16.193117+00:00 +2026-01-02,Gemini Code Assist,all,4,,20260408T165316Z,2026-04-08T16:53:16.193117+00:00 +2026-01-02,Gru,all,0,,20260408T165316Z,2026-04-08T16:53:16.193117+00:00 +2026-01-02,Jules (Google),all,3157,,20260408T165316Z,2026-04-08T16:53:16.193117+00:00 +2026-01-02,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T16:53:16.193117+00:00 +2026-01-02,Kilo Code,all,8,,20260408T165316Z,2026-04-08T16:53:16.193117+00:00 +2026-01-02,Lovable,all,0,,20260408T165316Z,2026-04-08T16:53:16.193117+00:00 +2026-01-02,OpenAI Codex,all,15,,20260408T165316Z,2026-04-08T16:53:16.193117+00:00 +2026-01-02,OpenCode,all,0,,20260408T165316Z,2026-04-08T16:53:16.193117+00:00 +2026-01-02,OpenHands,all,69,,20260408T165316Z,2026-04-08T16:53:16.193117+00:00 +2026-01-02,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T16:53:16.193117+00:00 +2026-01-02,Roo Code,all,0,,20260408T165316Z,2026-04-08T16:53:16.193117+00:00 +2026-01-02,Sketch,all,0,,20260408T165316Z,2026-04-08T16:53:16.193117+00:00 +2026-01-02,Sourcery AI,all,0,1,20260408T165316Z,2026-04-08T16:53:16.193117+00:00 +2026-01-02,Sweep AI,all,0,,20260408T165316Z,2026-04-08T16:53:16.193117+00:00 +2026-01-02,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T16:53:16.193117+00:00 +2026-01-03,Aider,all,0,,20260408T165316Z,2026-04-08T16:56:29.375855+00:00 +2026-01-03,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T16:56:29.375855+00:00 +2026-01-03,ChatGPT,all,23,,20260408T165316Z,2026-04-08T16:56:29.375855+00:00 +2026-01-03,Claude Code,all,16862,,20260408T165316Z,2026-04-08T16:56:29.375855+00:00 +2026-01-03,Cline,all,631,,20260408T165316Z,2026-04-08T16:56:29.375855+00:00 +2026-01-03,Codegen,all,7,,20260408T165316Z,2026-04-08T16:56:29.375855+00:00 +2026-01-03,Coderabbit,all,20,,20260408T165316Z,2026-04-08T16:56:29.375855+00:00 +2026-01-03,Copilot,all,273,,20260408T165316Z,2026-04-08T16:56:29.375855+00:00 +2026-01-03,Copilot SWE Agent,all,13245,,20260408T165316Z,2026-04-08T16:56:29.375855+00:00 +2026-01-03,Crush,all,0,,20260408T165316Z,2026-04-08T16:56:29.375855+00:00 +2026-01-03,Cursor,all,974,,20260408T165316Z,2026-04-08T16:56:29.375855+00:00 +2026-01-03,DeepSource,all,32,,20260408T165316Z,2026-04-08T16:56:29.375855+00:00 +2026-01-03,Devin,all,72,,20260408T165316Z,2026-04-08T16:56:29.375855+00:00 +2026-01-03,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T16:56:29.375855+00:00 +2026-01-03,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T16:56:29.375855+00:00 +2026-01-03,Gru,all,0,,20260408T165316Z,2026-04-08T16:56:29.375855+00:00 +2026-01-03,Jules (Google),all,2937,,20260408T165316Z,2026-04-08T16:56:29.375855+00:00 +2026-01-03,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T16:56:29.375855+00:00 +2026-01-03,Kilo Code,all,5,,20260408T165316Z,2026-04-08T16:56:29.375855+00:00 +2026-01-03,Lovable,all,0,,20260408T165316Z,2026-04-08T16:56:29.375855+00:00 +2026-01-03,OpenAI Codex,all,4,,20260408T165316Z,2026-04-08T16:56:29.375855+00:00 +2026-01-03,OpenCode,all,0,,20260408T165316Z,2026-04-08T16:56:29.375855+00:00 +2026-01-03,OpenHands,all,52,,20260408T165316Z,2026-04-08T16:56:29.375855+00:00 +2026-01-03,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T16:56:29.375855+00:00 +2026-01-03,Roo Code,all,2,,20260408T165316Z,2026-04-08T16:56:29.375855+00:00 +2026-01-03,Sketch,all,0,,20260408T165316Z,2026-04-08T16:56:29.375855+00:00 +2026-01-03,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T16:56:29.375855+00:00 +2026-01-03,Sweep AI,all,0,,20260408T165316Z,2026-04-08T16:56:29.375855+00:00 +2026-01-03,Warp (Oz Agent),all,5,,20260408T165316Z,2026-04-08T16:56:29.375855+00:00 +2026-01-04,Aider,all,24,,20260408T165316Z,2026-04-08T16:58:42.599258+00:00 +2026-01-04,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T16:58:42.599258+00:00 +2026-01-04,ChatGPT,all,0,,20260408T165316Z,2026-04-08T16:58:42.599258+00:00 +2026-01-04,Claude Code,all,14840,,20260408T165316Z,2026-04-08T16:58:42.599258+00:00 +2026-01-04,Cline,all,2420,,20260408T165316Z,2026-04-08T16:58:42.599258+00:00 +2026-01-04,Codegen,all,3,,20260408T165316Z,2026-04-08T16:58:42.599258+00:00 +2026-01-04,Coderabbit,all,12,,20260408T165316Z,2026-04-08T16:58:42.599258+00:00 +2026-01-04,Copilot,all,123,,20260408T165316Z,2026-04-08T16:58:42.599258+00:00 +2026-01-04,Copilot SWE Agent,all,13858,,20260408T165316Z,2026-04-08T16:58:42.599258+00:00 +2026-01-04,Crush,all,0,,20260408T165316Z,2026-04-08T16:58:42.599258+00:00 +2026-01-04,Cursor,all,1085,,20260408T165316Z,2026-04-08T16:58:42.599258+00:00 +2026-01-04,DeepSource,all,19,,20260408T165316Z,2026-04-08T16:58:42.599258+00:00 +2026-01-04,Devin,all,135,,20260408T165316Z,2026-04-08T16:58:42.599258+00:00 +2026-01-04,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T16:58:42.599258+00:00 +2026-01-04,Gemini Code Assist,all,1,,20260408T165316Z,2026-04-08T16:58:42.599258+00:00 +2026-01-04,Gru,all,0,,20260408T165316Z,2026-04-08T16:58:42.599258+00:00 +2026-01-04,Jules (Google),all,2716,,20260408T165316Z,2026-04-08T16:58:42.599258+00:00 +2026-01-04,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T16:58:42.599258+00:00 +2026-01-04,Kilo Code,all,34,,20260408T165316Z,2026-04-08T16:58:42.599258+00:00 +2026-01-04,Lovable,all,2,,20260408T165316Z,2026-04-08T16:58:42.599258+00:00 +2026-01-04,OpenAI Codex,all,14,,20260408T165316Z,2026-04-08T16:58:42.599258+00:00 +2026-01-04,OpenCode,all,0,,20260408T165316Z,2026-04-08T16:58:42.599258+00:00 +2026-01-04,OpenHands,all,56,,20260408T165316Z,2026-04-08T16:58:42.599258+00:00 +2026-01-04,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T16:58:42.599258+00:00 +2026-01-04,Roo Code,all,2,,20260408T165316Z,2026-04-08T16:58:42.599258+00:00 +2026-01-04,Sketch,all,0,,20260408T165316Z,2026-04-08T16:58:42.599258+00:00 +2026-01-04,Sourcery AI,all,0,1,20260408T165316Z,2026-04-08T16:58:42.599258+00:00 +2026-01-04,Sweep AI,all,0,,20260408T165316Z,2026-04-08T16:58:42.599258+00:00 +2026-01-04,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T16:58:42.599258+00:00 +2026-01-05,Aider,all,7,,20260408T165316Z,2026-04-08T17:00:55.166463+00:00 +2026-01-05,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T17:00:55.166463+00:00 +2026-01-05,ChatGPT,all,5,,20260408T165316Z,2026-04-08T17:00:55.166463+00:00 +2026-01-05,Claude Code,all,14643,,20260408T165316Z,2026-04-08T17:00:55.166463+00:00 +2026-01-05,Cline,all,1429,,20260408T165316Z,2026-04-08T17:00:55.166463+00:00 +2026-01-05,Codegen,all,8,,20260408T165316Z,2026-04-08T17:00:55.166463+00:00 +2026-01-05,Coderabbit,all,22,1,20260408T165316Z,2026-04-08T17:00:55.166463+00:00 +2026-01-05,Copilot,all,230,,20260408T165316Z,2026-04-08T17:00:55.166463+00:00 +2026-01-05,Copilot SWE Agent,all,14587,,20260408T165316Z,2026-04-08T17:00:55.166463+00:00 +2026-01-05,Crush,all,0,,20260408T165316Z,2026-04-08T17:00:55.166463+00:00 +2026-01-05,Cursor,all,933,,20260408T165316Z,2026-04-08T17:00:55.166463+00:00 +2026-01-05,DeepSource,all,22,,20260408T165316Z,2026-04-08T17:00:55.166463+00:00 +2026-01-05,Devin,all,76,,20260408T165316Z,2026-04-08T17:00:55.166463+00:00 +2026-01-05,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T17:00:55.166463+00:00 +2026-01-05,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T17:00:55.166463+00:00 +2026-01-05,Gru,all,0,,20260408T165316Z,2026-04-08T17:00:55.166463+00:00 +2026-01-05,Jules (Google),all,2980,,20260408T165316Z,2026-04-08T17:00:55.166463+00:00 +2026-01-05,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T17:00:55.166463+00:00 +2026-01-05,Kilo Code,all,23,,20260408T165316Z,2026-04-08T17:00:55.166463+00:00 +2026-01-05,Lovable,all,0,,20260408T165316Z,2026-04-08T17:00:55.166463+00:00 +2026-01-05,OpenAI Codex,all,18,,20260408T165316Z,2026-04-08T17:00:55.166463+00:00 +2026-01-05,OpenCode,all,0,,20260408T165316Z,2026-04-08T17:00:55.166463+00:00 +2026-01-05,OpenHands,all,60,,20260408T165316Z,2026-04-08T17:00:55.166463+00:00 +2026-01-05,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T17:00:55.166463+00:00 +2026-01-05,Roo Code,all,3,,20260408T165316Z,2026-04-08T17:00:55.166463+00:00 +2026-01-05,Sketch,all,0,,20260408T165316Z,2026-04-08T17:00:55.166463+00:00 +2026-01-05,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T17:00:55.166463+00:00 +2026-01-05,Sweep AI,all,0,,20260408T165316Z,2026-04-08T17:00:55.166463+00:00 +2026-01-05,Warp (Oz Agent),all,1,,20260408T165316Z,2026-04-08T17:00:55.166463+00:00 +2026-01-06,Aider,all,14,,20260408T165316Z,2026-04-08T17:03:07.646062+00:00 +2026-01-06,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T17:03:07.646062+00:00 +2026-01-06,ChatGPT,all,13,,20260408T165316Z,2026-04-08T17:03:07.646062+00:00 +2026-01-06,Claude Code,all,14853,,20260408T165316Z,2026-04-08T17:03:07.646062+00:00 +2026-01-06,Cline,all,1391,,20260408T165316Z,2026-04-08T17:03:07.646062+00:00 +2026-01-06,Codegen,all,38,,20260408T165316Z,2026-04-08T17:03:07.646062+00:00 +2026-01-06,Coderabbit,all,22,,20260408T165316Z,2026-04-08T17:03:07.646062+00:00 +2026-01-06,Copilot,all,226,,20260408T165316Z,2026-04-08T17:03:07.646062+00:00 +2026-01-06,Copilot SWE Agent,all,14335,,20260408T165316Z,2026-04-08T17:03:07.646062+00:00 +2026-01-06,Crush,all,0,,20260408T165316Z,2026-04-08T17:03:07.646062+00:00 +2026-01-06,Cursor,all,803,,20260408T165316Z,2026-04-08T17:03:07.646062+00:00 +2026-01-06,DeepSource,all,20,,20260408T165316Z,2026-04-08T17:03:07.646062+00:00 +2026-01-06,Devin,all,100,,20260408T165316Z,2026-04-08T17:03:07.646062+00:00 +2026-01-06,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T17:03:07.646062+00:00 +2026-01-06,Gemini Code Assist,all,0,1,20260408T165316Z,2026-04-08T17:03:07.646062+00:00 +2026-01-06,Gru,all,0,,20260408T165316Z,2026-04-08T17:03:07.646062+00:00 +2026-01-06,Jules (Google),all,2854,,20260408T165316Z,2026-04-08T17:03:07.646062+00:00 +2026-01-06,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T17:03:07.646062+00:00 +2026-01-06,Kilo Code,all,22,,20260408T165316Z,2026-04-08T17:03:07.646062+00:00 +2026-01-06,Lovable,all,0,,20260408T165316Z,2026-04-08T17:03:07.646062+00:00 +2026-01-06,OpenAI Codex,all,2,,20260408T165316Z,2026-04-08T17:03:07.646062+00:00 +2026-01-06,OpenCode,all,0,,20260408T165316Z,2026-04-08T17:03:07.646062+00:00 +2026-01-06,OpenHands,all,45,,20260408T165316Z,2026-04-08T17:03:07.646062+00:00 +2026-01-06,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T17:03:07.646062+00:00 +2026-01-06,Roo Code,all,1,,20260408T165316Z,2026-04-08T17:03:07.646062+00:00 +2026-01-06,Sketch,all,0,,20260408T165316Z,2026-04-08T17:03:07.646062+00:00 +2026-01-06,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T17:03:07.646062+00:00 +2026-01-06,Sweep AI,all,0,,20260408T165316Z,2026-04-08T17:03:07.646062+00:00 +2026-01-06,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T17:03:07.646062+00:00 +2026-01-07,Aider,all,4,,20260408T165316Z,2026-04-08T17:05:20.336616+00:00 +2026-01-07,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T17:05:20.336616+00:00 +2026-01-07,ChatGPT,all,0,,20260408T165316Z,2026-04-08T17:05:20.336616+00:00 +2026-01-07,Claude Code,all,15249,,20260408T165316Z,2026-04-08T17:05:20.336616+00:00 +2026-01-07,Cline,all,1774,,20260408T165316Z,2026-04-08T17:05:20.336616+00:00 +2026-01-07,Codegen,all,53,,20260408T165316Z,2026-04-08T17:05:20.336616+00:00 +2026-01-07,Coderabbit,all,23,,20260408T165316Z,2026-04-08T17:05:20.336616+00:00 +2026-01-07,Copilot,all,315,,20260408T165316Z,2026-04-08T17:05:20.336616+00:00 +2026-01-07,Copilot SWE Agent,all,14389,,20260408T165316Z,2026-04-08T17:05:20.336616+00:00 +2026-01-07,Crush,all,0,,20260408T165316Z,2026-04-08T17:05:20.336616+00:00 +2026-01-07,Cursor,all,937,,20260408T165316Z,2026-04-08T17:05:20.336616+00:00 +2026-01-07,DeepSource,all,9,,20260408T165316Z,2026-04-08T17:05:20.336616+00:00 +2026-01-07,Devin,all,87,,20260408T165316Z,2026-04-08T17:05:20.336616+00:00 +2026-01-07,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T17:05:20.336616+00:00 +2026-01-07,Gemini Code Assist,all,12,,20260408T165316Z,2026-04-08T17:05:20.336616+00:00 +2026-01-07,Gru,all,0,,20260408T165316Z,2026-04-08T17:05:20.336616+00:00 +2026-01-07,Jules (Google),all,3103,,20260408T165316Z,2026-04-08T17:05:20.336616+00:00 +2026-01-07,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T17:05:20.336616+00:00 +2026-01-07,Kilo Code,all,20,,20260408T165316Z,2026-04-08T17:05:20.336616+00:00 +2026-01-07,Lovable,all,0,,20260408T165316Z,2026-04-08T17:05:20.336616+00:00 +2026-01-07,OpenAI Codex,all,4,,20260408T165316Z,2026-04-08T17:05:20.336616+00:00 +2026-01-07,OpenCode,all,0,,20260408T165316Z,2026-04-08T17:05:20.336616+00:00 +2026-01-07,OpenHands,all,39,,20260408T165316Z,2026-04-08T17:05:20.336616+00:00 +2026-01-07,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T17:05:20.336616+00:00 +2026-01-07,Roo Code,all,1,,20260408T165316Z,2026-04-08T17:05:20.336616+00:00 +2026-01-07,Sketch,all,0,,20260408T165316Z,2026-04-08T17:05:20.336616+00:00 +2026-01-07,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T17:05:20.336616+00:00 +2026-01-07,Sweep AI,all,0,,20260408T165316Z,2026-04-08T17:05:20.336616+00:00 +2026-01-07,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T17:05:20.336616+00:00 +2026-01-08,Aider,all,5,,20260408T165316Z,2026-04-08T17:07:31.508147+00:00 +2026-01-08,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T17:07:31.508147+00:00 +2026-01-08,ChatGPT,all,4,,20260408T165316Z,2026-04-08T17:07:31.508147+00:00 +2026-01-08,Claude Code,all,15482,,20260408T165316Z,2026-04-08T17:07:31.508147+00:00 +2026-01-08,Cline,all,1387,,20260408T165316Z,2026-04-08T17:07:31.508147+00:00 +2026-01-08,Codegen,all,6,,20260408T165316Z,2026-04-08T17:07:31.508147+00:00 +2026-01-08,Coderabbit,all,15,,20260408T165316Z,2026-04-08T17:07:31.508147+00:00 +2026-01-08,Copilot,all,250,,20260408T165316Z,2026-04-08T17:07:31.508147+00:00 +2026-01-08,Copilot SWE Agent,all,14443,,20260408T165316Z,2026-04-08T17:07:31.508147+00:00 +2026-01-08,Crush,all,0,,20260408T165316Z,2026-04-08T17:07:31.508147+00:00 +2026-01-08,Cursor,all,1038,,20260408T165316Z,2026-04-08T17:07:31.508147+00:00 +2026-01-08,DeepSource,all,17,,20260408T165316Z,2026-04-08T17:07:31.508147+00:00 +2026-01-08,Devin,all,68,,20260408T165316Z,2026-04-08T17:07:31.508147+00:00 +2026-01-08,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T17:07:31.508147+00:00 +2026-01-08,Gemini Code Assist,all,10,,20260408T165316Z,2026-04-08T17:07:31.508147+00:00 +2026-01-08,Gru,all,0,1,20260408T165316Z,2026-04-08T17:07:31.508147+00:00 +2026-01-08,Jules (Google),all,3075,,20260408T165316Z,2026-04-08T17:07:31.508147+00:00 +2026-01-08,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T17:07:31.508147+00:00 +2026-01-08,Kilo Code,all,22,,20260408T165316Z,2026-04-08T17:07:31.508147+00:00 +2026-01-08,Lovable,all,0,,20260408T165316Z,2026-04-08T17:07:31.508147+00:00 +2026-01-08,OpenAI Codex,all,18,,20260408T165316Z,2026-04-08T17:07:31.508147+00:00 +2026-01-08,OpenCode,all,0,,20260408T165316Z,2026-04-08T17:07:31.508147+00:00 +2026-01-08,OpenHands,all,69,,20260408T165316Z,2026-04-08T17:07:31.508147+00:00 +2026-01-08,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T17:07:31.508147+00:00 +2026-01-08,Roo Code,all,1,,20260408T165316Z,2026-04-08T17:07:31.508147+00:00 +2026-01-08,Sketch,all,0,,20260408T165316Z,2026-04-08T17:07:31.508147+00:00 +2026-01-08,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T17:07:31.508147+00:00 +2026-01-08,Sweep AI,all,0,,20260408T165316Z,2026-04-08T17:07:31.508147+00:00 +2026-01-08,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T17:07:31.508147+00:00 +2026-01-09,Aider,all,0,,20260408T165316Z,2026-04-08T17:09:43.071049+00:00 +2026-01-09,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T17:09:43.071049+00:00 +2026-01-09,ChatGPT,all,0,,20260408T165316Z,2026-04-08T17:09:43.071049+00:00 +2026-01-09,Claude Code,all,16407,,20260408T165316Z,2026-04-08T17:09:43.071049+00:00 +2026-01-09,Cline,all,1448,,20260408T165316Z,2026-04-08T17:09:43.071049+00:00 +2026-01-09,Codegen,all,13,,20260408T165316Z,2026-04-08T17:09:43.071049+00:00 +2026-01-09,Coderabbit,all,10,,20260408T165316Z,2026-04-08T17:09:43.071049+00:00 +2026-01-09,Copilot,all,213,,20260408T165316Z,2026-04-08T17:09:43.071049+00:00 +2026-01-09,Copilot SWE Agent,all,14431,,20260408T165316Z,2026-04-08T17:09:43.071049+00:00 +2026-01-09,Crush,all,0,,20260408T165316Z,2026-04-08T17:09:43.071049+00:00 +2026-01-09,Cursor,all,940,,20260408T165316Z,2026-04-08T17:09:43.071049+00:00 +2026-01-09,DeepSource,all,26,,20260408T165316Z,2026-04-08T17:09:43.071049+00:00 +2026-01-09,Devin,all,64,,20260408T165316Z,2026-04-08T17:09:43.071049+00:00 +2026-01-09,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T17:09:43.071049+00:00 +2026-01-09,Gemini Code Assist,all,3,,20260408T165316Z,2026-04-08T17:09:43.071049+00:00 +2026-01-09,Gru,all,0,,20260408T165316Z,2026-04-08T17:09:43.071049+00:00 +2026-01-09,Jules (Google),all,2876,,20260408T165316Z,2026-04-08T17:09:43.071049+00:00 +2026-01-09,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T17:09:43.071049+00:00 +2026-01-09,Kilo Code,all,0,,20260408T165316Z,2026-04-08T17:09:43.071049+00:00 +2026-01-09,Lovable,all,0,,20260408T165316Z,2026-04-08T17:09:43.071049+00:00 +2026-01-09,OpenAI Codex,all,4,,20260408T165316Z,2026-04-08T17:09:43.071049+00:00 +2026-01-09,OpenCode,all,0,,20260408T165316Z,2026-04-08T17:09:43.071049+00:00 +2026-01-09,OpenHands,all,32,,20260408T165316Z,2026-04-08T17:09:43.071049+00:00 +2026-01-09,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T17:09:43.071049+00:00 +2026-01-09,Roo Code,all,0,,20260408T165316Z,2026-04-08T17:09:43.071049+00:00 +2026-01-09,Sketch,all,0,,20260408T165316Z,2026-04-08T17:09:43.071049+00:00 +2026-01-09,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T17:09:43.071049+00:00 +2026-01-09,Sweep AI,all,0,,20260408T165316Z,2026-04-08T17:09:43.071049+00:00 +2026-01-09,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T17:09:43.071049+00:00 +2026-01-10,Aider,all,1,,20260408T165316Z,2026-04-08T17:11:54.553570+00:00 +2026-01-10,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T17:11:54.553570+00:00 +2026-01-10,ChatGPT,all,32,,20260408T165316Z,2026-04-08T17:11:54.553570+00:00 +2026-01-10,Claude Code,all,18156,,20260408T165316Z,2026-04-08T17:11:54.553570+00:00 +2026-01-10,Cline,all,972,,20260408T165316Z,2026-04-08T17:11:54.553570+00:00 +2026-01-10,Codegen,all,0,,20260408T165316Z,2026-04-08T17:11:54.553570+00:00 +2026-01-10,Coderabbit,all,13,,20260408T165316Z,2026-04-08T17:11:54.553570+00:00 +2026-01-10,Copilot,all,168,,20260408T165316Z,2026-04-08T17:11:54.553570+00:00 +2026-01-10,Copilot SWE Agent,all,11155,,20260408T165316Z,2026-04-08T17:11:54.553570+00:00 +2026-01-10,Crush,all,0,,20260408T165316Z,2026-04-08T17:11:54.553570+00:00 +2026-01-10,Cursor,all,670,,20260408T165316Z,2026-04-08T17:11:54.553570+00:00 +2026-01-10,DeepSource,all,30,,20260408T165316Z,2026-04-08T17:11:54.553570+00:00 +2026-01-10,Devin,all,68,,20260408T165316Z,2026-04-08T17:11:54.553570+00:00 +2026-01-10,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T17:11:54.553570+00:00 +2026-01-10,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T17:11:54.553570+00:00 +2026-01-10,Gru,all,0,,20260408T165316Z,2026-04-08T17:11:54.553570+00:00 +2026-01-10,Jules (Google),all,2967,,20260408T165316Z,2026-04-08T17:11:54.553570+00:00 +2026-01-10,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T17:11:54.553570+00:00 +2026-01-10,Kilo Code,all,5,,20260408T165316Z,2026-04-08T17:11:54.553570+00:00 +2026-01-10,Lovable,all,0,,20260408T165316Z,2026-04-08T17:11:54.553570+00:00 +2026-01-10,OpenAI Codex,all,15,,20260408T165316Z,2026-04-08T17:11:54.553570+00:00 +2026-01-10,OpenCode,all,0,,20260408T165316Z,2026-04-08T17:11:54.553570+00:00 +2026-01-10,OpenHands,all,116,,20260408T165316Z,2026-04-08T17:11:54.553570+00:00 +2026-01-10,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T17:11:54.553570+00:00 +2026-01-10,Roo Code,all,7,,20260408T165316Z,2026-04-08T17:11:54.553570+00:00 +2026-01-10,Sketch,all,0,,20260408T165316Z,2026-04-08T17:11:54.553570+00:00 +2026-01-10,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T17:11:54.553570+00:00 +2026-01-10,Sweep AI,all,0,,20260408T165316Z,2026-04-08T17:11:54.553570+00:00 +2026-01-10,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T17:11:54.553570+00:00 +2026-01-11,Aider,all,6,,20260408T165316Z,2026-04-08T17:14:05.816529+00:00 +2026-01-11,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T17:14:05.816529+00:00 +2026-01-11,ChatGPT,all,5,,20260408T165316Z,2026-04-08T17:14:05.816529+00:00 +2026-01-11,Claude Code,all,16803,,20260408T165316Z,2026-04-08T17:14:05.816529+00:00 +2026-01-11,Cline,all,633,,20260408T165316Z,2026-04-08T17:14:05.816529+00:00 +2026-01-11,Codegen,all,14,,20260408T165316Z,2026-04-08T17:14:05.816529+00:00 +2026-01-11,Coderabbit,all,13,,20260408T165316Z,2026-04-08T17:14:05.816529+00:00 +2026-01-11,Copilot,all,166,,20260408T165316Z,2026-04-08T17:14:05.816529+00:00 +2026-01-11,Copilot SWE Agent,all,12795,,20260408T165316Z,2026-04-08T17:14:05.816529+00:00 +2026-01-11,Crush,all,0,,20260408T165316Z,2026-04-08T17:14:05.816529+00:00 +2026-01-11,Cursor,all,632,,20260408T165316Z,2026-04-08T17:14:05.816529+00:00 +2026-01-11,DeepSource,all,11,,20260408T165316Z,2026-04-08T17:14:05.816529+00:00 +2026-01-11,Devin,all,83,,20260408T165316Z,2026-04-08T17:14:05.816529+00:00 +2026-01-11,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T17:14:05.816529+00:00 +2026-01-11,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T17:14:05.816529+00:00 +2026-01-11,Gru,all,0,,20260408T165316Z,2026-04-08T17:14:05.816529+00:00 +2026-01-11,Jules (Google),all,2842,,20260408T165316Z,2026-04-08T17:14:05.816529+00:00 +2026-01-11,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T17:14:05.816529+00:00 +2026-01-11,Kilo Code,all,2,,20260408T165316Z,2026-04-08T17:14:05.816529+00:00 +2026-01-11,Lovable,all,0,,20260408T165316Z,2026-04-08T17:14:05.816529+00:00 +2026-01-11,OpenAI Codex,all,32,,20260408T165316Z,2026-04-08T17:14:05.816529+00:00 +2026-01-11,OpenCode,all,0,,20260408T165316Z,2026-04-08T17:14:05.816529+00:00 +2026-01-11,OpenHands,all,99,,20260408T165316Z,2026-04-08T17:14:05.816529+00:00 +2026-01-11,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T17:14:05.816529+00:00 +2026-01-11,Roo Code,all,2,,20260408T165316Z,2026-04-08T17:14:05.816529+00:00 +2026-01-11,Sketch,all,0,,20260408T165316Z,2026-04-08T17:14:05.816529+00:00 +2026-01-11,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T17:14:05.816529+00:00 +2026-01-11,Sweep AI,all,1,,20260408T165316Z,2026-04-08T17:14:05.816529+00:00 +2026-01-11,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T17:14:05.816529+00:00 +2026-01-12,Aider,all,10,,20260408T165316Z,2026-04-08T17:16:17.397924+00:00 +2026-01-12,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T17:16:17.397924+00:00 +2026-01-12,ChatGPT,all,17,,20260408T165316Z,2026-04-08T17:16:17.397924+00:00 +2026-01-12,Claude Code,all,14844,,20260408T165316Z,2026-04-08T17:16:17.397924+00:00 +2026-01-12,Cline,all,2080,,20260408T165316Z,2026-04-08T17:16:17.397924+00:00 +2026-01-12,Codegen,all,29,,20260408T165316Z,2026-04-08T17:16:17.397924+00:00 +2026-01-12,Coderabbit,all,10,,20260408T165316Z,2026-04-08T17:16:17.397924+00:00 +2026-01-12,Copilot,all,127,,20260408T165316Z,2026-04-08T17:16:17.397924+00:00 +2026-01-12,Copilot SWE Agent,all,14332,,20260408T165316Z,2026-04-08T17:16:17.397924+00:00 +2026-01-12,Crush,all,0,,20260408T165316Z,2026-04-08T17:16:17.397924+00:00 +2026-01-12,Cursor,all,741,,20260408T165316Z,2026-04-08T17:16:17.397924+00:00 +2026-01-12,DeepSource,all,13,,20260408T165316Z,2026-04-08T17:16:17.397924+00:00 +2026-01-12,Devin,all,142,,20260408T165316Z,2026-04-08T17:16:17.397924+00:00 +2026-01-12,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T17:16:17.397924+00:00 +2026-01-12,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T17:16:17.397924+00:00 +2026-01-12,Gru,all,0,,20260408T165316Z,2026-04-08T17:16:17.397924+00:00 +2026-01-12,Jules (Google),all,3011,,20260408T165316Z,2026-04-08T17:16:17.397924+00:00 +2026-01-12,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T17:16:17.397924+00:00 +2026-01-12,Kilo Code,all,8,,20260408T165316Z,2026-04-08T17:16:17.397924+00:00 +2026-01-12,Lovable,all,1,,20260408T165316Z,2026-04-08T17:16:17.397924+00:00 +2026-01-12,OpenAI Codex,all,71,,20260408T165316Z,2026-04-08T17:16:17.397924+00:00 +2026-01-12,OpenCode,all,0,,20260408T165316Z,2026-04-08T17:16:17.397924+00:00 +2026-01-12,OpenHands,all,86,,20260408T165316Z,2026-04-08T17:16:17.397924+00:00 +2026-01-12,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T17:16:17.397924+00:00 +2026-01-12,Roo Code,all,11,,20260408T165316Z,2026-04-08T17:16:17.397924+00:00 +2026-01-12,Sketch,all,0,,20260408T165316Z,2026-04-08T17:16:17.397924+00:00 +2026-01-12,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T17:16:17.397924+00:00 +2026-01-12,Sweep AI,all,0,,20260408T165316Z,2026-04-08T17:16:17.397924+00:00 +2026-01-12,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T17:16:17.397924+00:00 +2026-01-13,Aider,all,13,,20260408T165316Z,2026-04-08T17:18:28.833263+00:00 +2026-01-13,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T17:18:28.833263+00:00 +2026-01-13,ChatGPT,all,36,,20260408T165316Z,2026-04-08T17:18:28.833263+00:00 +2026-01-13,Claude Code,all,16037,,20260408T165316Z,2026-04-08T17:18:28.833263+00:00 +2026-01-13,Cline,all,1499,,20260408T165316Z,2026-04-08T17:18:28.833263+00:00 +2026-01-13,Codegen,all,16,,20260408T165316Z,2026-04-08T17:18:28.833263+00:00 +2026-01-13,Coderabbit,all,168,,20260408T165316Z,2026-04-08T17:18:28.833263+00:00 +2026-01-13,Copilot,all,272,,20260408T165316Z,2026-04-08T17:18:28.833263+00:00 +2026-01-13,Copilot SWE Agent,all,12559,,20260408T165316Z,2026-04-08T17:18:28.833263+00:00 +2026-01-13,Crush,all,0,,20260408T165316Z,2026-04-08T17:18:28.833263+00:00 +2026-01-13,Cursor,all,1015,,20260408T165316Z,2026-04-08T17:18:28.833263+00:00 +2026-01-13,DeepSource,all,51,,20260408T165316Z,2026-04-08T17:18:28.833263+00:00 +2026-01-13,Devin,all,112,,20260408T165316Z,2026-04-08T17:18:28.833263+00:00 +2026-01-13,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T17:18:28.833263+00:00 +2026-01-13,Gemini Code Assist,all,1,,20260408T165316Z,2026-04-08T17:18:28.833263+00:00 +2026-01-13,Gru,all,0,,20260408T165316Z,2026-04-08T17:18:28.833263+00:00 +2026-01-13,Jules (Google),all,3233,,20260408T165316Z,2026-04-08T17:18:28.833263+00:00 +2026-01-13,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T17:18:28.833263+00:00 +2026-01-13,Kilo Code,all,10,,20260408T165316Z,2026-04-08T17:18:28.833263+00:00 +2026-01-13,Lovable,all,0,,20260408T165316Z,2026-04-08T17:18:28.833263+00:00 +2026-01-13,OpenAI Codex,all,79,,20260408T165316Z,2026-04-08T17:18:28.833263+00:00 +2026-01-13,OpenCode,all,0,,20260408T165316Z,2026-04-08T17:18:28.833263+00:00 +2026-01-13,OpenHands,all,129,,20260408T165316Z,2026-04-08T17:18:28.833263+00:00 +2026-01-13,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T17:18:28.833263+00:00 +2026-01-13,Roo Code,all,2,,20260408T165316Z,2026-04-08T17:18:28.833263+00:00 +2026-01-13,Sketch,all,0,,20260408T165316Z,2026-04-08T17:18:28.833263+00:00 +2026-01-13,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T17:18:28.833263+00:00 +2026-01-13,Sweep AI,all,0,,20260408T165316Z,2026-04-08T17:18:28.833263+00:00 +2026-01-13,Warp (Oz Agent),all,4,,20260408T165316Z,2026-04-08T17:18:28.833263+00:00 +2026-01-14,Aider,all,33,,20260408T165316Z,2026-04-08T17:20:40.294323+00:00 +2026-01-14,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T17:20:40.294323+00:00 +2026-01-14,ChatGPT,all,0,,20260408T165316Z,2026-04-08T17:20:40.294323+00:00 +2026-01-14,Claude Code,all,14825,,20260408T165316Z,2026-04-08T17:20:40.294323+00:00 +2026-01-14,Cline,all,2461,,20260408T165316Z,2026-04-08T17:20:40.294323+00:00 +2026-01-14,Codegen,all,8,,20260408T165316Z,2026-04-08T17:20:40.294323+00:00 +2026-01-14,Coderabbit,all,10,,20260408T165316Z,2026-04-08T17:20:40.294323+00:00 +2026-01-14,Copilot,all,198,,20260408T165316Z,2026-04-08T17:20:40.294323+00:00 +2026-01-14,Copilot SWE Agent,all,13599,,20260408T165316Z,2026-04-08T17:20:40.294323+00:00 +2026-01-14,Crush,all,0,,20260408T165316Z,2026-04-08T17:20:40.294323+00:00 +2026-01-14,Cursor,all,1056,,20260408T165316Z,2026-04-08T17:20:40.294323+00:00 +2026-01-14,DeepSource,all,17,,20260408T165316Z,2026-04-08T17:20:40.294323+00:00 +2026-01-14,Devin,all,114,,20260408T165316Z,2026-04-08T17:20:40.294323+00:00 +2026-01-14,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T17:20:40.294323+00:00 +2026-01-14,Gemini Code Assist,all,0,1,20260408T165316Z,2026-04-08T17:20:40.294323+00:00 +2026-01-14,Gru,all,0,,20260408T165316Z,2026-04-08T17:20:40.294323+00:00 +2026-01-14,Jules (Google),all,3651,,20260408T165316Z,2026-04-08T17:20:40.294323+00:00 +2026-01-14,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T17:20:40.294323+00:00 +2026-01-14,Kilo Code,all,15,,20260408T165316Z,2026-04-08T17:20:40.294323+00:00 +2026-01-14,Lovable,all,9,,20260408T165316Z,2026-04-08T17:20:40.294323+00:00 +2026-01-14,OpenAI Codex,all,38,,20260408T165316Z,2026-04-08T17:20:40.294323+00:00 +2026-01-14,OpenCode,all,0,,20260408T165316Z,2026-04-08T17:20:40.294323+00:00 +2026-01-14,OpenHands,all,167,,20260408T165316Z,2026-04-08T17:20:40.294323+00:00 +2026-01-14,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T17:20:40.294323+00:00 +2026-01-14,Roo Code,all,8,,20260408T165316Z,2026-04-08T17:20:40.294323+00:00 +2026-01-14,Sketch,all,0,,20260408T165316Z,2026-04-08T17:20:40.294323+00:00 +2026-01-14,Sourcery AI,all,0,1,20260408T165316Z,2026-04-08T17:20:40.294323+00:00 +2026-01-14,Sweep AI,all,0,,20260408T165316Z,2026-04-08T17:20:40.294323+00:00 +2026-01-14,Warp (Oz Agent),all,9,,20260408T165316Z,2026-04-08T17:20:40.294323+00:00 +2026-01-15,Aider,all,33,,20260408T165316Z,2026-04-08T17:23:53.077029+00:00 +2026-01-15,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T17:23:53.077029+00:00 +2026-01-15,ChatGPT,all,14,,20260408T165316Z,2026-04-08T17:23:53.077029+00:00 +2026-01-15,Claude Code,all,15863,,20260408T165316Z,2026-04-08T17:23:53.077029+00:00 +2026-01-15,Cline,all,1131,,20260408T165316Z,2026-04-08T17:23:53.077029+00:00 +2026-01-15,Codegen,all,5,,20260408T165316Z,2026-04-08T17:23:53.077029+00:00 +2026-01-15,Coderabbit,all,40,,20260408T165316Z,2026-04-08T17:23:53.077029+00:00 +2026-01-15,Copilot,all,184,,20260408T165316Z,2026-04-08T17:23:53.077029+00:00 +2026-01-15,Copilot SWE Agent,all,13328,,20260408T165316Z,2026-04-08T17:23:53.077029+00:00 +2026-01-15,Crush,all,0,,20260408T165316Z,2026-04-08T17:23:53.077029+00:00 +2026-01-15,Cursor,all,1093,,20260408T165316Z,2026-04-08T17:23:53.077029+00:00 +2026-01-15,DeepSource,all,12,,20260408T165316Z,2026-04-08T17:23:53.077029+00:00 +2026-01-15,Devin,all,200,,20260408T165316Z,2026-04-08T17:23:53.077029+00:00 +2026-01-15,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T17:23:53.077029+00:00 +2026-01-15,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T17:23:53.077029+00:00 +2026-01-15,Gru,all,0,,20260408T165316Z,2026-04-08T17:23:53.077029+00:00 +2026-01-15,Jules (Google),all,3381,,20260408T165316Z,2026-04-08T17:23:53.077029+00:00 +2026-01-15,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T17:23:53.077029+00:00 +2026-01-15,Kilo Code,all,3,,20260408T165316Z,2026-04-08T17:23:53.077029+00:00 +2026-01-15,Lovable,all,15,,20260408T165316Z,2026-04-08T17:23:53.077029+00:00 +2026-01-15,OpenAI Codex,all,8,,20260408T165316Z,2026-04-08T17:23:53.077029+00:00 +2026-01-15,OpenCode,all,0,,20260408T165316Z,2026-04-08T17:23:53.077029+00:00 +2026-01-15,OpenHands,all,154,,20260408T165316Z,2026-04-08T17:23:53.077029+00:00 +2026-01-15,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T17:23:53.077029+00:00 +2026-01-15,Roo Code,all,6,,20260408T165316Z,2026-04-08T17:23:53.077029+00:00 +2026-01-15,Sketch,all,0,,20260408T165316Z,2026-04-08T17:23:53.077029+00:00 +2026-01-15,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T17:23:53.077029+00:00 +2026-01-15,Sweep AI,all,0,,20260408T165316Z,2026-04-08T17:23:53.077029+00:00 +2026-01-15,Warp (Oz Agent),all,11,,20260408T165316Z,2026-04-08T17:23:53.077029+00:00 +2026-01-16,Aider,all,21,,20260408T165316Z,2026-04-08T17:26:04.746121+00:00 +2026-01-16,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T17:26:04.746121+00:00 +2026-01-16,ChatGPT,all,8,,20260408T165316Z,2026-04-08T17:26:04.746121+00:00 +2026-01-16,Claude Code,all,15611,,20260408T165316Z,2026-04-08T17:26:04.746121+00:00 +2026-01-16,Cline,all,4039,,20260408T165316Z,2026-04-08T17:26:04.746121+00:00 +2026-01-16,Codegen,all,5,,20260408T165316Z,2026-04-08T17:26:04.746121+00:00 +2026-01-16,Coderabbit,all,8,,20260408T165316Z,2026-04-08T17:26:04.746121+00:00 +2026-01-16,Copilot,all,244,,20260408T165316Z,2026-04-08T17:26:04.746121+00:00 +2026-01-16,Copilot SWE Agent,all,13561,,20260408T165316Z,2026-04-08T17:26:04.746121+00:00 +2026-01-16,Crush,all,0,,20260408T165316Z,2026-04-08T17:26:04.746121+00:00 +2026-01-16,Cursor,all,1210,,20260408T165316Z,2026-04-08T17:26:04.746121+00:00 +2026-01-16,DeepSource,all,8,,20260408T165316Z,2026-04-08T17:26:04.746121+00:00 +2026-01-16,Devin,all,101,,20260408T165316Z,2026-04-08T17:26:04.746121+00:00 +2026-01-16,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T17:26:04.746121+00:00 +2026-01-16,Gemini Code Assist,all,1,,20260408T165316Z,2026-04-08T17:26:04.746121+00:00 +2026-01-16,Gru,all,0,,20260408T165316Z,2026-04-08T17:26:04.746121+00:00 +2026-01-16,Jules (Google),all,3938,,20260408T165316Z,2026-04-08T17:26:04.746121+00:00 +2026-01-16,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T17:26:04.746121+00:00 +2026-01-16,Kilo Code,all,8,,20260408T165316Z,2026-04-08T17:26:04.746121+00:00 +2026-01-16,Lovable,all,1,,20260408T165316Z,2026-04-08T17:26:04.746121+00:00 +2026-01-16,OpenAI Codex,all,23,,20260408T165316Z,2026-04-08T17:26:04.746121+00:00 +2026-01-16,OpenCode,all,0,,20260408T165316Z,2026-04-08T17:26:04.746121+00:00 +2026-01-16,OpenHands,all,152,,20260408T165316Z,2026-04-08T17:26:04.746121+00:00 +2026-01-16,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T17:26:04.746121+00:00 +2026-01-16,Roo Code,all,11,,20260408T165316Z,2026-04-08T17:26:04.746121+00:00 +2026-01-16,Sketch,all,0,,20260408T165316Z,2026-04-08T17:26:04.746121+00:00 +2026-01-16,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T17:26:04.746121+00:00 +2026-01-16,Sweep AI,all,0,,20260408T165316Z,2026-04-08T17:26:04.746121+00:00 +2026-01-16,Warp (Oz Agent),all,23,,20260408T165316Z,2026-04-08T17:26:04.746121+00:00 +2026-01-17,Aider,all,32,,20260408T165316Z,2026-04-08T17:28:20.343476+00:00 +2026-01-17,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T17:28:20.343476+00:00 +2026-01-17,ChatGPT,all,10,,20260408T165316Z,2026-04-08T17:28:20.343476+00:00 +2026-01-17,Claude Code,all,14858,,20260408T165316Z,2026-04-08T17:28:20.343476+00:00 +2026-01-17,Cline,all,936,,20260408T165316Z,2026-04-08T17:28:20.343476+00:00 +2026-01-17,Codegen,all,3,,20260408T165316Z,2026-04-08T17:28:20.343476+00:00 +2026-01-17,Coderabbit,all,7,,20260408T165316Z,2026-04-08T17:28:20.343476+00:00 +2026-01-17,Copilot,all,259,,20260408T165316Z,2026-04-08T17:28:20.343476+00:00 +2026-01-17,Copilot SWE Agent,all,12984,,20260408T165316Z,2026-04-08T17:28:20.343476+00:00 +2026-01-17,Crush,all,0,,20260408T165316Z,2026-04-08T17:28:20.343476+00:00 +2026-01-17,Cursor,all,1200,,20260408T165316Z,2026-04-08T17:28:20.343476+00:00 +2026-01-17,DeepSource,all,15,,20260408T165316Z,2026-04-08T17:28:20.343476+00:00 +2026-01-17,Devin,all,24,,20260408T165316Z,2026-04-08T17:28:20.343476+00:00 +2026-01-17,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T17:28:20.343476+00:00 +2026-01-17,Gemini Code Assist,all,1,,20260408T165316Z,2026-04-08T17:28:20.343476+00:00 +2026-01-17,Gru,all,0,,20260408T165316Z,2026-04-08T17:28:20.343476+00:00 +2026-01-17,Jules (Google),all,3521,,20260408T165316Z,2026-04-08T17:28:20.343476+00:00 +2026-01-17,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T17:28:20.343476+00:00 +2026-01-17,Kilo Code,all,10,,20260408T165316Z,2026-04-08T17:28:20.343476+00:00 +2026-01-17,Lovable,all,0,,20260408T165316Z,2026-04-08T17:28:20.343476+00:00 +2026-01-17,OpenAI Codex,all,5,,20260408T165316Z,2026-04-08T17:28:20.343476+00:00 +2026-01-17,OpenCode,all,0,,20260408T165316Z,2026-04-08T17:28:20.343476+00:00 +2026-01-17,OpenHands,all,145,,20260408T165316Z,2026-04-08T17:28:20.343476+00:00 +2026-01-17,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T17:28:20.343476+00:00 +2026-01-17,Roo Code,all,6,,20260408T165316Z,2026-04-08T17:28:20.343476+00:00 +2026-01-17,Sketch,all,0,,20260408T165316Z,2026-04-08T17:28:20.343476+00:00 +2026-01-17,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T17:28:20.343476+00:00 +2026-01-17,Sweep AI,all,0,,20260408T165316Z,2026-04-08T17:28:20.343476+00:00 +2026-01-17,Warp (Oz Agent),all,28,,20260408T165316Z,2026-04-08T17:28:20.343476+00:00 +2026-01-18,Aider,all,0,,20260408T165316Z,2026-04-08T17:30:33.423184+00:00 +2026-01-18,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T17:30:33.423184+00:00 +2026-01-18,ChatGPT,all,2,,20260408T165316Z,2026-04-08T17:30:33.423184+00:00 +2026-01-18,Claude Code,all,16545,,20260408T165316Z,2026-04-08T17:30:33.423184+00:00 +2026-01-18,Cline,all,1102,,20260408T165316Z,2026-04-08T17:30:33.423184+00:00 +2026-01-18,Codegen,all,3,,20260408T165316Z,2026-04-08T17:30:33.423184+00:00 +2026-01-18,Coderabbit,all,13,,20260408T165316Z,2026-04-08T17:30:33.423184+00:00 +2026-01-18,Copilot,all,199,,20260408T165316Z,2026-04-08T17:30:33.423184+00:00 +2026-01-18,Copilot SWE Agent,all,13782,,20260408T165316Z,2026-04-08T17:30:33.423184+00:00 +2026-01-18,Crush,all,0,,20260408T165316Z,2026-04-08T17:30:33.423184+00:00 +2026-01-18,Cursor,all,787,,20260408T165316Z,2026-04-08T17:30:33.423184+00:00 +2026-01-18,DeepSource,all,15,,20260408T165316Z,2026-04-08T17:30:33.423184+00:00 +2026-01-18,Devin,all,57,,20260408T165316Z,2026-04-08T17:30:33.423184+00:00 +2026-01-18,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T17:30:33.423184+00:00 +2026-01-18,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T17:30:33.423184+00:00 +2026-01-18,Gru,all,0,,20260408T165316Z,2026-04-08T17:30:33.423184+00:00 +2026-01-18,Jules (Google),all,3646,,20260408T165316Z,2026-04-08T17:30:33.423184+00:00 +2026-01-18,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T17:30:33.423184+00:00 +2026-01-18,Kilo Code,all,10,,20260408T165316Z,2026-04-08T17:30:33.423184+00:00 +2026-01-18,Lovable,all,2,,20260408T165316Z,2026-04-08T17:30:33.423184+00:00 +2026-01-18,OpenAI Codex,all,26,,20260408T165316Z,2026-04-08T17:30:33.423184+00:00 +2026-01-18,OpenCode,all,0,,20260408T165316Z,2026-04-08T17:30:33.423184+00:00 +2026-01-18,OpenHands,all,57,,20260408T165316Z,2026-04-08T17:30:33.423184+00:00 +2026-01-18,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T17:30:33.423184+00:00 +2026-01-18,Roo Code,all,7,,20260408T165316Z,2026-04-08T17:30:33.423184+00:00 +2026-01-18,Sketch,all,0,,20260408T165316Z,2026-04-08T17:30:33.423184+00:00 +2026-01-18,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T17:30:33.423184+00:00 +2026-01-18,Sweep AI,all,0,,20260408T165316Z,2026-04-08T17:30:33.423184+00:00 +2026-01-18,Warp (Oz Agent),all,44,,20260408T165316Z,2026-04-08T17:30:33.423184+00:00 +2026-01-19,Aider,all,2,,20260408T165316Z,2026-04-08T17:32:44.978772+00:00 +2026-01-19,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T17:32:44.978772+00:00 +2026-01-19,ChatGPT,all,1,,20260408T165316Z,2026-04-08T17:32:44.978772+00:00 +2026-01-19,Claude Code,all,17912,,20260408T165316Z,2026-04-08T17:32:44.978772+00:00 +2026-01-19,Cline,all,1619,,20260408T165316Z,2026-04-08T17:32:44.978772+00:00 +2026-01-19,Codegen,all,9,,20260408T165316Z,2026-04-08T17:32:44.978772+00:00 +2026-01-19,Coderabbit,all,15,,20260408T165316Z,2026-04-08T17:32:44.978772+00:00 +2026-01-19,Copilot,all,282,,20260408T165316Z,2026-04-08T17:32:44.978772+00:00 +2026-01-19,Copilot SWE Agent,all,13679,,20260408T165316Z,2026-04-08T17:32:44.978772+00:00 +2026-01-19,Crush,all,0,,20260408T165316Z,2026-04-08T17:32:44.978772+00:00 +2026-01-19,Cursor,all,783,,20260408T165316Z,2026-04-08T17:32:44.978772+00:00 +2026-01-19,DeepSource,all,18,,20260408T165316Z,2026-04-08T17:32:44.978772+00:00 +2026-01-19,Devin,all,68,,20260408T165316Z,2026-04-08T17:32:44.978772+00:00 +2026-01-19,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T17:32:44.978772+00:00 +2026-01-19,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T17:32:44.978772+00:00 +2026-01-19,Gru,all,0,,20260408T165316Z,2026-04-08T17:32:44.978772+00:00 +2026-01-19,Jules (Google),all,3727,,20260408T165316Z,2026-04-08T17:32:44.978772+00:00 +2026-01-19,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T17:32:44.978772+00:00 +2026-01-19,Kilo Code,all,14,,20260408T165316Z,2026-04-08T17:32:44.978772+00:00 +2026-01-19,Lovable,all,6,,20260408T165316Z,2026-04-08T17:32:44.978772+00:00 +2026-01-19,OpenAI Codex,all,17,,20260408T165316Z,2026-04-08T17:32:44.978772+00:00 +2026-01-19,OpenCode,all,0,,20260408T165316Z,2026-04-08T17:32:44.978772+00:00 +2026-01-19,OpenHands,all,103,,20260408T165316Z,2026-04-08T17:32:44.978772+00:00 +2026-01-19,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T17:32:44.978772+00:00 +2026-01-19,Roo Code,all,1,,20260408T165316Z,2026-04-08T17:32:44.978772+00:00 +2026-01-19,Sketch,all,0,,20260408T165316Z,2026-04-08T17:32:44.978772+00:00 +2026-01-19,Sourcery AI,all,2,,20260408T165316Z,2026-04-08T17:32:44.978772+00:00 +2026-01-19,Sweep AI,all,0,,20260408T165316Z,2026-04-08T17:32:44.978772+00:00 +2026-01-19,Warp (Oz Agent),all,5,,20260408T165316Z,2026-04-08T17:32:44.978772+00:00 +2026-01-20,Aider,all,17,,20260408T165316Z,2026-04-08T17:34:56.628429+00:00 +2026-01-20,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T17:34:56.628429+00:00 +2026-01-20,ChatGPT,all,2,,20260408T165316Z,2026-04-08T17:34:56.628429+00:00 +2026-01-20,Claude Code,all,18058,,20260408T165316Z,2026-04-08T17:34:56.628429+00:00 +2026-01-20,Cline,all,1265,,20260408T165316Z,2026-04-08T17:34:56.628429+00:00 +2026-01-20,Codegen,all,1,,20260408T165316Z,2026-04-08T17:34:56.628429+00:00 +2026-01-20,Coderabbit,all,20,,20260408T165316Z,2026-04-08T17:34:56.628429+00:00 +2026-01-20,Copilot,all,253,1,20260408T165316Z,2026-04-08T17:34:56.628429+00:00 +2026-01-20,Copilot SWE Agent,all,12228,,20260408T165316Z,2026-04-08T17:34:56.628429+00:00 +2026-01-20,Crush,all,0,,20260408T165316Z,2026-04-08T17:34:56.628429+00:00 +2026-01-20,Cursor,all,1103,,20260408T165316Z,2026-04-08T17:34:56.628429+00:00 +2026-01-20,DeepSource,all,13,,20260408T165316Z,2026-04-08T17:34:56.628429+00:00 +2026-01-20,Devin,all,72,,20260408T165316Z,2026-04-08T17:34:56.628429+00:00 +2026-01-20,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T17:34:56.628429+00:00 +2026-01-20,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T17:34:56.628429+00:00 +2026-01-20,Gru,all,0,,20260408T165316Z,2026-04-08T17:34:56.628429+00:00 +2026-01-20,Jules (Google),all,4026,,20260408T165316Z,2026-04-08T17:34:56.628429+00:00 +2026-01-20,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T17:34:56.628429+00:00 +2026-01-20,Kilo Code,all,24,,20260408T165316Z,2026-04-08T17:34:56.628429+00:00 +2026-01-20,Lovable,all,2,,20260408T165316Z,2026-04-08T17:34:56.628429+00:00 +2026-01-20,OpenAI Codex,all,20,,20260408T165316Z,2026-04-08T17:34:56.628429+00:00 +2026-01-20,OpenCode,all,0,,20260408T165316Z,2026-04-08T17:34:56.628429+00:00 +2026-01-20,OpenHands,all,117,,20260408T165316Z,2026-04-08T17:34:56.628429+00:00 +2026-01-20,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T17:34:56.628429+00:00 +2026-01-20,Roo Code,all,18,,20260408T165316Z,2026-04-08T17:34:56.628429+00:00 +2026-01-20,Sketch,all,0,,20260408T165316Z,2026-04-08T17:34:56.628429+00:00 +2026-01-20,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T17:34:56.628429+00:00 +2026-01-20,Sweep AI,all,0,,20260408T165316Z,2026-04-08T17:34:56.628429+00:00 +2026-01-20,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T17:34:56.628429+00:00 +2026-01-21,Aider,all,9,,20260408T165316Z,2026-04-08T17:37:08.048705+00:00 +2026-01-21,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T17:37:08.048705+00:00 +2026-01-21,ChatGPT,all,1,,20260408T165316Z,2026-04-08T17:37:08.048705+00:00 +2026-01-21,Claude Code,all,17598,,20260408T165316Z,2026-04-08T17:37:08.048705+00:00 +2026-01-21,Cline,all,1362,,20260408T165316Z,2026-04-08T17:37:08.048705+00:00 +2026-01-21,Codegen,all,13,,20260408T165316Z,2026-04-08T17:37:08.048705+00:00 +2026-01-21,Coderabbit,all,15,,20260408T165316Z,2026-04-08T17:37:08.048705+00:00 +2026-01-21,Copilot,all,257,,20260408T165316Z,2026-04-08T17:37:08.048705+00:00 +2026-01-21,Copilot SWE Agent,all,13426,,20260408T165316Z,2026-04-08T17:37:08.048705+00:00 +2026-01-21,Crush,all,0,,20260408T165316Z,2026-04-08T17:37:08.048705+00:00 +2026-01-21,Cursor,all,1026,,20260408T165316Z,2026-04-08T17:37:08.048705+00:00 +2026-01-21,DeepSource,all,22,,20260408T165316Z,2026-04-08T17:37:08.048705+00:00 +2026-01-21,Devin,all,74,,20260408T165316Z,2026-04-08T17:37:08.048705+00:00 +2026-01-21,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T17:37:08.048705+00:00 +2026-01-21,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T17:37:08.048705+00:00 +2026-01-21,Gru,all,0,,20260408T165316Z,2026-04-08T17:37:08.048705+00:00 +2026-01-21,Jules (Google),all,4023,,20260408T165316Z,2026-04-08T17:37:08.048705+00:00 +2026-01-21,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T17:37:08.048705+00:00 +2026-01-21,Kilo Code,all,18,,20260408T165316Z,2026-04-08T17:37:08.048705+00:00 +2026-01-21,Lovable,all,2,,20260408T165316Z,2026-04-08T17:37:08.048705+00:00 +2026-01-21,OpenAI Codex,all,35,,20260408T165316Z,2026-04-08T17:37:08.048705+00:00 +2026-01-21,OpenCode,all,0,,20260408T165316Z,2026-04-08T17:37:08.048705+00:00 +2026-01-21,OpenHands,all,178,,20260408T165316Z,2026-04-08T17:37:08.048705+00:00 +2026-01-21,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T17:37:08.048705+00:00 +2026-01-21,Roo Code,all,4,,20260408T165316Z,2026-04-08T17:37:08.048705+00:00 +2026-01-21,Sketch,all,0,,20260408T165316Z,2026-04-08T17:37:08.048705+00:00 +2026-01-21,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T17:37:08.048705+00:00 +2026-01-21,Sweep AI,all,0,,20260408T165316Z,2026-04-08T17:37:08.048705+00:00 +2026-01-21,Warp (Oz Agent),all,3,,20260408T165316Z,2026-04-08T17:37:08.048705+00:00 +2026-01-22,Aider,all,3,,20260408T165316Z,2026-04-08T17:39:18.509145+00:00 +2026-01-22,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T17:39:18.509145+00:00 +2026-01-22,ChatGPT,all,39,,20260408T165316Z,2026-04-08T17:39:18.509145+00:00 +2026-01-22,Claude Code,all,16461,,20260408T165316Z,2026-04-08T17:39:18.509145+00:00 +2026-01-22,Cline,all,544,,20260408T165316Z,2026-04-08T17:39:18.509145+00:00 +2026-01-22,Codegen,all,52,,20260408T165316Z,2026-04-08T17:39:18.509145+00:00 +2026-01-22,Coderabbit,all,7,,20260408T165316Z,2026-04-08T17:39:18.509145+00:00 +2026-01-22,Copilot,all,301,,20260408T165316Z,2026-04-08T17:39:18.509145+00:00 +2026-01-22,Copilot SWE Agent,all,12026,,20260408T165316Z,2026-04-08T17:39:18.509145+00:00 +2026-01-22,Crush,all,0,,20260408T165316Z,2026-04-08T17:39:18.509145+00:00 +2026-01-22,Cursor,all,1071,,20260408T165316Z,2026-04-08T17:39:18.509145+00:00 +2026-01-22,DeepSource,all,17,,20260408T165316Z,2026-04-08T17:39:18.509145+00:00 +2026-01-22,Devin,all,94,,20260408T165316Z,2026-04-08T17:39:18.509145+00:00 +2026-01-22,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T17:39:18.509145+00:00 +2026-01-22,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T17:39:18.509145+00:00 +2026-01-22,Gru,all,0,,20260408T165316Z,2026-04-08T17:39:18.509145+00:00 +2026-01-22,Jules (Google),all,3928,,20260408T165316Z,2026-04-08T17:39:18.509145+00:00 +2026-01-22,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T17:39:18.509145+00:00 +2026-01-22,Kilo Code,all,14,,20260408T165316Z,2026-04-08T17:39:18.509145+00:00 +2026-01-22,Lovable,all,2,,20260408T165316Z,2026-04-08T17:39:18.509145+00:00 +2026-01-22,OpenAI Codex,all,16,,20260408T165316Z,2026-04-08T17:39:18.509145+00:00 +2026-01-22,OpenCode,all,0,,20260408T165316Z,2026-04-08T17:39:18.509145+00:00 +2026-01-22,OpenHands,all,88,,20260408T165316Z,2026-04-08T17:39:18.509145+00:00 +2026-01-22,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T17:39:18.509145+00:00 +2026-01-22,Roo Code,all,4,,20260408T165316Z,2026-04-08T17:39:18.509145+00:00 +2026-01-22,Sketch,all,0,,20260408T165316Z,2026-04-08T17:39:18.509145+00:00 +2026-01-22,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T17:39:18.509145+00:00 +2026-01-22,Sweep AI,all,0,,20260408T165316Z,2026-04-08T17:39:18.509145+00:00 +2026-01-22,Warp (Oz Agent),all,1,,20260408T165316Z,2026-04-08T17:39:18.509145+00:00 +2026-01-23,Aider,all,17,,20260408T165316Z,2026-04-08T17:41:29.037164+00:00 +2026-01-23,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T17:41:29.037164+00:00 +2026-01-23,ChatGPT,all,0,,20260408T165316Z,2026-04-08T17:41:29.037164+00:00 +2026-01-23,Claude Code,all,19098,,20260408T165316Z,2026-04-08T17:41:29.037164+00:00 +2026-01-23,Cline,all,83,,20260408T165316Z,2026-04-08T17:41:29.037164+00:00 +2026-01-23,Codegen,all,17,,20260408T165316Z,2026-04-08T17:41:29.037164+00:00 +2026-01-23,Coderabbit,all,16,,20260408T165316Z,2026-04-08T17:41:29.037164+00:00 +2026-01-23,Copilot,all,274,,20260408T165316Z,2026-04-08T17:41:29.037164+00:00 +2026-01-23,Copilot SWE Agent,all,12948,,20260408T165316Z,2026-04-08T17:41:29.037164+00:00 +2026-01-23,Crush,all,0,,20260408T165316Z,2026-04-08T17:41:29.037164+00:00 +2026-01-23,Cursor,all,813,,20260408T165316Z,2026-04-08T17:41:29.037164+00:00 +2026-01-23,DeepSource,all,9,,20260408T165316Z,2026-04-08T17:41:29.037164+00:00 +2026-01-23,Devin,all,85,,20260408T165316Z,2026-04-08T17:41:29.037164+00:00 +2026-01-23,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T17:41:29.037164+00:00 +2026-01-23,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T17:41:29.037164+00:00 +2026-01-23,Gru,all,0,,20260408T165316Z,2026-04-08T17:41:29.037164+00:00 +2026-01-23,Jules (Google),all,4147,1,20260408T165316Z,2026-04-08T17:41:29.037164+00:00 +2026-01-23,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T17:41:29.037164+00:00 +2026-01-23,Kilo Code,all,52,,20260408T165316Z,2026-04-08T17:41:29.037164+00:00 +2026-01-23,Lovable,all,6,,20260408T165316Z,2026-04-08T17:41:29.037164+00:00 +2026-01-23,OpenAI Codex,all,46,,20260408T165316Z,2026-04-08T17:41:29.037164+00:00 +2026-01-23,OpenCode,all,0,,20260408T165316Z,2026-04-08T17:41:29.037164+00:00 +2026-01-23,OpenHands,all,141,,20260408T165316Z,2026-04-08T17:41:29.037164+00:00 +2026-01-23,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T17:41:29.037164+00:00 +2026-01-23,Roo Code,all,11,,20260408T165316Z,2026-04-08T17:41:29.037164+00:00 +2026-01-23,Sketch,all,0,,20260408T165316Z,2026-04-08T17:41:29.037164+00:00 +2026-01-23,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T17:41:29.037164+00:00 +2026-01-23,Sweep AI,all,0,,20260408T165316Z,2026-04-08T17:41:29.037164+00:00 +2026-01-23,Warp (Oz Agent),all,2,,20260408T165316Z,2026-04-08T17:41:29.037164+00:00 +2026-01-24,Aider,all,44,,20260408T165316Z,2026-04-08T17:43:40.220235+00:00 +2026-01-24,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T17:43:40.220235+00:00 +2026-01-24,ChatGPT,all,41,,20260408T165316Z,2026-04-08T17:43:40.220235+00:00 +2026-01-24,Claude Code,all,17304,,20260408T165316Z,2026-04-08T17:43:40.220235+00:00 +2026-01-24,Cline,all,371,,20260408T165316Z,2026-04-08T17:43:40.220235+00:00 +2026-01-24,Codegen,all,44,,20260408T165316Z,2026-04-08T17:43:40.220235+00:00 +2026-01-24,Coderabbit,all,18,,20260408T165316Z,2026-04-08T17:43:40.220235+00:00 +2026-01-24,Copilot,all,340,,20260408T165316Z,2026-04-08T17:43:40.220235+00:00 +2026-01-24,Copilot SWE Agent,all,11224,,20260408T165316Z,2026-04-08T17:43:40.220235+00:00 +2026-01-24,Crush,all,0,,20260408T165316Z,2026-04-08T17:43:40.220235+00:00 +2026-01-24,Cursor,all,909,,20260408T165316Z,2026-04-08T17:43:40.220235+00:00 +2026-01-24,DeepSource,all,27,,20260408T165316Z,2026-04-08T17:43:40.220235+00:00 +2026-01-24,Devin,all,25,,20260408T165316Z,2026-04-08T17:43:40.220235+00:00 +2026-01-24,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T17:43:40.220235+00:00 +2026-01-24,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T17:43:40.220235+00:00 +2026-01-24,Gru,all,0,,20260408T165316Z,2026-04-08T17:43:40.220235+00:00 +2026-01-24,Jules (Google),all,12748,,20260408T165316Z,2026-04-08T17:43:40.220235+00:00 +2026-01-24,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T17:43:40.220235+00:00 +2026-01-24,Kilo Code,all,25,,20260408T165316Z,2026-04-08T17:43:40.220235+00:00 +2026-01-24,Lovable,all,2,,20260408T165316Z,2026-04-08T17:43:40.220235+00:00 +2026-01-24,OpenAI Codex,all,20,,20260408T165316Z,2026-04-08T17:43:40.220235+00:00 +2026-01-24,OpenCode,all,0,,20260408T165316Z,2026-04-08T17:43:40.220235+00:00 +2026-01-24,OpenHands,all,116,,20260408T165316Z,2026-04-08T17:43:40.220235+00:00 +2026-01-24,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T17:43:40.220235+00:00 +2026-01-24,Roo Code,all,6,,20260408T165316Z,2026-04-08T17:43:40.220235+00:00 +2026-01-24,Sketch,all,0,,20260408T165316Z,2026-04-08T17:43:40.220235+00:00 +2026-01-24,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T17:43:40.220235+00:00 +2026-01-24,Sweep AI,all,0,,20260408T165316Z,2026-04-08T17:43:40.220235+00:00 +2026-01-24,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T17:43:40.220235+00:00 +2026-01-25,Aider,all,27,,20260408T165316Z,2026-04-08T17:45:51.843334+00:00 +2026-01-25,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T17:45:51.843334+00:00 +2026-01-25,ChatGPT,all,31,,20260408T165316Z,2026-04-08T17:45:51.843334+00:00 +2026-01-25,Claude Code,all,19377,,20260408T165316Z,2026-04-08T17:45:51.843334+00:00 +2026-01-25,Cline,all,1519,,20260408T165316Z,2026-04-08T17:45:51.843334+00:00 +2026-01-25,Codegen,all,35,,20260408T165316Z,2026-04-08T17:45:51.843334+00:00 +2026-01-25,Coderabbit,all,18,,20260408T165316Z,2026-04-08T17:45:51.843334+00:00 +2026-01-25,Copilot,all,228,,20260408T165316Z,2026-04-08T17:45:51.843334+00:00 +2026-01-25,Copilot SWE Agent,all,12090,,20260408T165316Z,2026-04-08T17:45:51.843334+00:00 +2026-01-25,Crush,all,0,,20260408T165316Z,2026-04-08T17:45:51.843334+00:00 +2026-01-25,Cursor,all,937,,20260408T165316Z,2026-04-08T17:45:51.843334+00:00 +2026-01-25,DeepSource,all,33,,20260408T165316Z,2026-04-08T17:45:51.843334+00:00 +2026-01-25,Devin,all,32,,20260408T165316Z,2026-04-08T17:45:51.843334+00:00 +2026-01-25,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T17:45:51.843334+00:00 +2026-01-25,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T17:45:51.843334+00:00 +2026-01-25,Gru,all,0,,20260408T165316Z,2026-04-08T17:45:51.843334+00:00 +2026-01-25,Jules (Google),all,4608,,20260408T165316Z,2026-04-08T17:45:51.843334+00:00 +2026-01-25,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T17:45:51.843334+00:00 +2026-01-25,Kilo Code,all,15,,20260408T165316Z,2026-04-08T17:45:51.843334+00:00 +2026-01-25,Lovable,all,0,,20260408T165316Z,2026-04-08T17:45:51.843334+00:00 +2026-01-25,OpenAI Codex,all,3,,20260408T165316Z,2026-04-08T17:45:51.843334+00:00 +2026-01-25,OpenCode,all,0,,20260408T165316Z,2026-04-08T17:45:51.843334+00:00 +2026-01-25,OpenHands,all,101,,20260408T165316Z,2026-04-08T17:45:51.843334+00:00 +2026-01-25,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T17:45:51.843334+00:00 +2026-01-25,Roo Code,all,0,,20260408T165316Z,2026-04-08T17:45:51.843334+00:00 +2026-01-25,Sketch,all,0,,20260408T165316Z,2026-04-08T17:45:51.843334+00:00 +2026-01-25,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T17:45:51.843334+00:00 +2026-01-25,Sweep AI,all,0,,20260408T165316Z,2026-04-08T17:45:51.843334+00:00 +2026-01-25,Warp (Oz Agent),all,18,,20260408T165316Z,2026-04-08T17:45:51.843334+00:00 +2026-01-26,Aider,all,8,,20260408T165316Z,2026-04-08T17:48:02.685681+00:00 +2026-01-26,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T17:48:02.685681+00:00 +2026-01-26,ChatGPT,all,5,,20260408T165316Z,2026-04-08T17:48:02.685681+00:00 +2026-01-26,Claude Code,all,19314,,20260408T165316Z,2026-04-08T17:48:02.685681+00:00 +2026-01-26,Cline,all,1674,,20260408T165316Z,2026-04-08T17:48:02.685681+00:00 +2026-01-26,Codegen,all,41,,20260408T165316Z,2026-04-08T17:48:02.685681+00:00 +2026-01-26,Coderabbit,all,11,,20260408T165316Z,2026-04-08T17:48:02.685681+00:00 +2026-01-26,Copilot,all,279,,20260408T165316Z,2026-04-08T17:48:02.685681+00:00 +2026-01-26,Copilot SWE Agent,all,13973,,20260408T165316Z,2026-04-08T17:48:02.685681+00:00 +2026-01-26,Crush,all,0,,20260408T165316Z,2026-04-08T17:48:02.685681+00:00 +2026-01-26,Cursor,all,1114,,20260408T165316Z,2026-04-08T17:48:02.685681+00:00 +2026-01-26,DeepSource,all,48,,20260408T165316Z,2026-04-08T17:48:02.685681+00:00 +2026-01-26,Devin,all,59,,20260408T165316Z,2026-04-08T17:48:02.685681+00:00 +2026-01-26,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T17:48:02.685681+00:00 +2026-01-26,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T17:48:02.685681+00:00 +2026-01-26,Gru,all,0,,20260408T165316Z,2026-04-08T17:48:02.685681+00:00 +2026-01-26,Jules (Google),all,4864,,20260408T165316Z,2026-04-08T17:48:02.685681+00:00 +2026-01-26,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T17:48:02.685681+00:00 +2026-01-26,Kilo Code,all,68,,20260408T165316Z,2026-04-08T17:48:02.685681+00:00 +2026-01-26,Lovable,all,3,,20260408T165316Z,2026-04-08T17:48:02.685681+00:00 +2026-01-26,OpenAI Codex,all,4,,20260408T165316Z,2026-04-08T17:48:02.685681+00:00 +2026-01-26,OpenCode,all,0,,20260408T165316Z,2026-04-08T17:48:02.685681+00:00 +2026-01-26,OpenHands,all,71,,20260408T165316Z,2026-04-08T17:48:02.685681+00:00 +2026-01-26,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T17:48:02.685681+00:00 +2026-01-26,Roo Code,all,3,,20260408T165316Z,2026-04-08T17:48:02.685681+00:00 +2026-01-26,Sketch,all,0,,20260408T165316Z,2026-04-08T17:48:02.685681+00:00 +2026-01-26,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T17:48:02.685681+00:00 +2026-01-26,Sweep AI,all,0,,20260408T165316Z,2026-04-08T17:48:02.685681+00:00 +2026-01-26,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T17:48:02.685681+00:00 +2026-01-27,Aider,all,21,,20260408T165316Z,2026-04-08T17:50:13.792944+00:00 +2026-01-27,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T17:50:13.792944+00:00 +2026-01-27,ChatGPT,all,6,,20260408T165316Z,2026-04-08T17:50:13.792944+00:00 +2026-01-27,Claude Code,all,15781,,20260408T165316Z,2026-04-08T17:50:13.792944+00:00 +2026-01-27,Cline,all,894,,20260408T165316Z,2026-04-08T17:50:13.792944+00:00 +2026-01-27,Codegen,all,2,,20260408T165316Z,2026-04-08T17:50:13.792944+00:00 +2026-01-27,Coderabbit,all,19,,20260408T165316Z,2026-04-08T17:50:13.792944+00:00 +2026-01-27,Copilot,all,370,,20260408T165316Z,2026-04-08T17:50:13.792944+00:00 +2026-01-27,Copilot SWE Agent,all,14938,,20260408T165316Z,2026-04-08T17:50:13.792944+00:00 +2026-01-27,Crush,all,0,,20260408T165316Z,2026-04-08T17:50:13.792944+00:00 +2026-01-27,Cursor,all,990,,20260408T165316Z,2026-04-08T17:50:13.792944+00:00 +2026-01-27,DeepSource,all,36,,20260408T165316Z,2026-04-08T17:50:13.792944+00:00 +2026-01-27,Devin,all,111,,20260408T165316Z,2026-04-08T17:50:13.792944+00:00 +2026-01-27,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T17:50:13.792944+00:00 +2026-01-27,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T17:50:13.792944+00:00 +2026-01-27,Gru,all,0,,20260408T165316Z,2026-04-08T17:50:13.792944+00:00 +2026-01-27,Jules (Google),all,4436,,20260408T165316Z,2026-04-08T17:50:13.792944+00:00 +2026-01-27,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T17:50:13.792944+00:00 +2026-01-27,Kilo Code,all,47,,20260408T165316Z,2026-04-08T17:50:13.792944+00:00 +2026-01-27,Lovable,all,0,,20260408T165316Z,2026-04-08T17:50:13.792944+00:00 +2026-01-27,OpenAI Codex,all,0,,20260408T165316Z,2026-04-08T17:50:13.792944+00:00 +2026-01-27,OpenCode,all,0,,20260408T165316Z,2026-04-08T17:50:13.792944+00:00 +2026-01-27,OpenHands,all,133,,20260408T165316Z,2026-04-08T17:50:13.792944+00:00 +2026-01-27,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T17:50:13.792944+00:00 +2026-01-27,Roo Code,all,1,,20260408T165316Z,2026-04-08T17:50:13.792944+00:00 +2026-01-27,Sketch,all,0,,20260408T165316Z,2026-04-08T17:50:13.792944+00:00 +2026-01-27,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T17:50:13.792944+00:00 +2026-01-27,Sweep AI,all,0,,20260408T165316Z,2026-04-08T17:50:13.792944+00:00 +2026-01-27,Warp (Oz Agent),all,40,,20260408T165316Z,2026-04-08T17:50:13.792944+00:00 +2026-01-28,Aider,all,28,,20260408T165316Z,2026-04-08T17:52:24.596854+00:00 +2026-01-28,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T17:52:24.596854+00:00 +2026-01-28,ChatGPT,all,7,,20260408T165316Z,2026-04-08T17:52:24.596854+00:00 +2026-01-28,Claude Code,all,15287,,20260408T165316Z,2026-04-08T17:52:24.596854+00:00 +2026-01-28,Cline,all,845,,20260408T165316Z,2026-04-08T17:52:24.596854+00:00 +2026-01-28,Codegen,all,21,,20260408T165316Z,2026-04-08T17:52:24.596854+00:00 +2026-01-28,Coderabbit,all,9,,20260408T165316Z,2026-04-08T17:52:24.596854+00:00 +2026-01-28,Copilot,all,907,,20260408T165316Z,2026-04-08T17:52:24.596854+00:00 +2026-01-28,Copilot SWE Agent,all,14707,,20260408T165316Z,2026-04-08T17:52:24.596854+00:00 +2026-01-28,Crush,all,0,,20260408T165316Z,2026-04-08T17:52:24.596854+00:00 +2026-01-28,Cursor,all,1099,,20260408T165316Z,2026-04-08T17:52:24.596854+00:00 +2026-01-28,DeepSource,all,21,,20260408T165316Z,2026-04-08T17:52:24.596854+00:00 +2026-01-28,Devin,all,78,,20260408T165316Z,2026-04-08T17:52:24.596854+00:00 +2026-01-28,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T17:52:24.596854+00:00 +2026-01-28,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T17:52:24.596854+00:00 +2026-01-28,Gru,all,0,,20260408T165316Z,2026-04-08T17:52:24.596854+00:00 +2026-01-28,Jules (Google),all,4000,,20260408T165316Z,2026-04-08T17:52:24.596854+00:00 +2026-01-28,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T17:52:24.596854+00:00 +2026-01-28,Kilo Code,all,8,,20260408T165316Z,2026-04-08T17:52:24.596854+00:00 +2026-01-28,Lovable,all,0,,20260408T165316Z,2026-04-08T17:52:24.596854+00:00 +2026-01-28,OpenAI Codex,all,9,,20260408T165316Z,2026-04-08T17:52:24.596854+00:00 +2026-01-28,OpenCode,all,0,,20260408T165316Z,2026-04-08T17:52:24.596854+00:00 +2026-01-28,OpenHands,all,114,,20260408T165316Z,2026-04-08T17:52:24.596854+00:00 +2026-01-28,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T17:52:24.596854+00:00 +2026-01-28,Roo Code,all,11,,20260408T165316Z,2026-04-08T17:52:24.596854+00:00 +2026-01-28,Sketch,all,0,,20260408T165316Z,2026-04-08T17:52:24.596854+00:00 +2026-01-28,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T17:52:24.596854+00:00 +2026-01-28,Sweep AI,all,0,,20260408T165316Z,2026-04-08T17:52:24.596854+00:00 +2026-01-28,Warp (Oz Agent),all,10,,20260408T165316Z,2026-04-08T17:52:24.596854+00:00 +2026-01-29,Aider,all,5,,20260408T165316Z,2026-04-08T17:54:35.674896+00:00 +2026-01-29,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T17:54:35.674896+00:00 +2026-01-29,ChatGPT,all,2,,20260408T165316Z,2026-04-08T17:54:35.674896+00:00 +2026-01-29,Claude Code,all,15817,,20260408T165316Z,2026-04-08T17:54:35.674896+00:00 +2026-01-29,Cline,all,1928,,20260408T165316Z,2026-04-08T17:54:35.674896+00:00 +2026-01-29,Codegen,all,11,,20260408T165316Z,2026-04-08T17:54:35.674896+00:00 +2026-01-29,Coderabbit,all,59,,20260408T165316Z,2026-04-08T17:54:35.674896+00:00 +2026-01-29,Copilot,all,573,,20260408T165316Z,2026-04-08T17:54:35.674896+00:00 +2026-01-29,Copilot SWE Agent,all,15187,,20260408T165316Z,2026-04-08T17:54:35.674896+00:00 +2026-01-29,Crush,all,0,,20260408T165316Z,2026-04-08T17:54:35.674896+00:00 +2026-01-29,Cursor,all,1132,1,20260408T165316Z,2026-04-08T17:54:35.674896+00:00 +2026-01-29,DeepSource,all,40,,20260408T165316Z,2026-04-08T17:54:35.674896+00:00 +2026-01-29,Devin,all,39,,20260408T165316Z,2026-04-08T17:54:35.674896+00:00 +2026-01-29,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T17:54:35.674896+00:00 +2026-01-29,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T17:54:35.674896+00:00 +2026-01-29,Gru,all,0,,20260408T165316Z,2026-04-08T17:54:35.674896+00:00 +2026-01-29,Jules (Google),all,4268,,20260408T165316Z,2026-04-08T17:54:35.674896+00:00 +2026-01-29,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T17:54:35.674896+00:00 +2026-01-29,Kilo Code,all,47,,20260408T165316Z,2026-04-08T17:54:35.674896+00:00 +2026-01-29,Lovable,all,0,,20260408T165316Z,2026-04-08T17:54:35.674896+00:00 +2026-01-29,OpenAI Codex,all,69,,20260408T165316Z,2026-04-08T17:54:35.674896+00:00 +2026-01-29,OpenCode,all,0,,20260408T165316Z,2026-04-08T17:54:35.674896+00:00 +2026-01-29,OpenHands,all,96,,20260408T165316Z,2026-04-08T17:54:35.674896+00:00 +2026-01-29,Qwen Coder,all,4,,20260408T165316Z,2026-04-08T17:54:35.674896+00:00 +2026-01-29,Roo Code,all,15,,20260408T165316Z,2026-04-08T17:54:35.674896+00:00 +2026-01-29,Sketch,all,0,,20260408T165316Z,2026-04-08T17:54:35.674896+00:00 +2026-01-29,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T17:54:35.674896+00:00 +2026-01-29,Sweep AI,all,0,,20260408T165316Z,2026-04-08T17:54:35.674896+00:00 +2026-01-29,Warp (Oz Agent),all,4,,20260408T165316Z,2026-04-08T17:54:35.674896+00:00 +2026-01-30,Aider,all,9,,20260408T165316Z,2026-04-08T17:56:46.710419+00:00 +2026-01-30,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T17:56:46.710419+00:00 +2026-01-30,ChatGPT,all,17,,20260408T165316Z,2026-04-08T17:56:46.710419+00:00 +2026-01-30,Claude Code,all,15853,,20260408T165316Z,2026-04-08T17:56:46.710419+00:00 +2026-01-30,Cline,all,795,,20260408T165316Z,2026-04-08T17:56:46.710419+00:00 +2026-01-30,Codegen,all,28,,20260408T165316Z,2026-04-08T17:56:46.710419+00:00 +2026-01-30,Coderabbit,all,13,,20260408T165316Z,2026-04-08T17:56:46.710419+00:00 +2026-01-30,Copilot,all,274,1,20260408T165316Z,2026-04-08T17:56:46.710419+00:00 +2026-01-30,Copilot SWE Agent,all,15070,,20260408T165316Z,2026-04-08T17:56:46.710419+00:00 +2026-01-30,Crush,all,0,,20260408T165316Z,2026-04-08T17:56:46.710419+00:00 +2026-01-30,Cursor,all,905,,20260408T165316Z,2026-04-08T17:56:46.710419+00:00 +2026-01-30,DeepSource,all,16,,20260408T165316Z,2026-04-08T17:56:46.710419+00:00 +2026-01-30,Devin,all,68,,20260408T165316Z,2026-04-08T17:56:46.710419+00:00 +2026-01-30,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T17:56:46.710419+00:00 +2026-01-30,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T17:56:46.710419+00:00 +2026-01-30,Gru,all,0,,20260408T165316Z,2026-04-08T17:56:46.710419+00:00 +2026-01-30,Jules (Google),all,4113,,20260408T165316Z,2026-04-08T17:56:46.710419+00:00 +2026-01-30,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T17:56:46.710419+00:00 +2026-01-30,Kilo Code,all,94,,20260408T165316Z,2026-04-08T17:56:46.710419+00:00 +2026-01-30,Lovable,all,0,,20260408T165316Z,2026-04-08T17:56:46.710419+00:00 +2026-01-30,OpenAI Codex,all,28,1,20260408T165316Z,2026-04-08T17:56:46.710419+00:00 +2026-01-30,OpenCode,all,0,,20260408T165316Z,2026-04-08T17:56:46.710419+00:00 +2026-01-30,OpenHands,all,63,,20260408T165316Z,2026-04-08T17:56:46.710419+00:00 +2026-01-30,Qwen Coder,all,1,,20260408T165316Z,2026-04-08T17:56:46.710419+00:00 +2026-01-30,Roo Code,all,7,,20260408T165316Z,2026-04-08T17:56:46.710419+00:00 +2026-01-30,Sketch,all,0,,20260408T165316Z,2026-04-08T17:56:46.710419+00:00 +2026-01-30,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T17:56:46.710419+00:00 +2026-01-30,Sweep AI,all,0,,20260408T165316Z,2026-04-08T17:56:46.710419+00:00 +2026-01-30,Warp (Oz Agent),all,3,,20260408T165316Z,2026-04-08T17:56:46.710419+00:00 +2026-01-31,Aider,all,4,,20260408T165316Z,2026-04-08T17:58:58.976411+00:00 +2026-01-31,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T17:58:58.976411+00:00 +2026-01-31,ChatGPT,all,18,,20260408T165316Z,2026-04-08T17:58:58.976411+00:00 +2026-01-31,Claude Code,all,15943,,20260408T165316Z,2026-04-08T17:58:58.976411+00:00 +2026-01-31,Cline,all,791,,20260408T165316Z,2026-04-08T17:58:58.976411+00:00 +2026-01-31,Codegen,all,18,,20260408T165316Z,2026-04-08T17:58:58.976411+00:00 +2026-01-31,Coderabbit,all,31,,20260408T165316Z,2026-04-08T17:58:58.976411+00:00 +2026-01-31,Copilot,all,222,,20260408T165316Z,2026-04-08T17:58:58.976411+00:00 +2026-01-31,Copilot SWE Agent,all,15876,1,20260408T165316Z,2026-04-08T17:58:58.976411+00:00 +2026-01-31,Crush,all,0,,20260408T165316Z,2026-04-08T17:58:58.976411+00:00 +2026-01-31,Cursor,all,1159,,20260408T165316Z,2026-04-08T17:58:58.976411+00:00 +2026-01-31,DeepSource,all,6,,20260408T165316Z,2026-04-08T17:58:58.976411+00:00 +2026-01-31,Devin,all,19,,20260408T165316Z,2026-04-08T17:58:58.976411+00:00 +2026-01-31,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T17:58:58.976411+00:00 +2026-01-31,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T17:58:58.976411+00:00 +2026-01-31,Gru,all,0,,20260408T165316Z,2026-04-08T17:58:58.976411+00:00 +2026-01-31,Jules (Google),all,3992,,20260408T165316Z,2026-04-08T17:58:58.976411+00:00 +2026-01-31,Junie (JetBrains),all,2,,20260408T165316Z,2026-04-08T17:58:58.976411+00:00 +2026-01-31,Kilo Code,all,39,,20260408T165316Z,2026-04-08T17:58:58.976411+00:00 +2026-01-31,Lovable,all,0,,20260408T165316Z,2026-04-08T17:58:58.976411+00:00 +2026-01-31,OpenAI Codex,all,14,,20260408T165316Z,2026-04-08T17:58:58.976411+00:00 +2026-01-31,OpenCode,all,0,,20260408T165316Z,2026-04-08T17:58:58.976411+00:00 +2026-01-31,OpenHands,all,88,,20260408T165316Z,2026-04-08T17:58:58.976411+00:00 +2026-01-31,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T17:58:58.976411+00:00 +2026-01-31,Roo Code,all,0,,20260408T165316Z,2026-04-08T17:58:58.976411+00:00 +2026-01-31,Sketch,all,0,,20260408T165316Z,2026-04-08T17:58:58.976411+00:00 +2026-01-31,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T17:58:58.976411+00:00 +2026-01-31,Sweep AI,all,0,,20260408T165316Z,2026-04-08T17:58:58.976411+00:00 +2026-01-31,Warp (Oz Agent),all,1,,20260408T165316Z,2026-04-08T17:58:58.976411+00:00 +2026-02-01,Aider,all,2,,20260408T165316Z,2026-04-08T18:02:10.620783+00:00 +2026-02-01,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T18:02:10.620783+00:00 +2026-02-01,ChatGPT,all,3,,20260408T165316Z,2026-04-08T18:02:10.620783+00:00 +2026-02-01,Claude Code,all,19145,,20260408T165316Z,2026-04-08T18:02:10.620783+00:00 +2026-02-01,Cline,all,625,,20260408T165316Z,2026-04-08T18:02:10.620783+00:00 +2026-02-01,Codegen,all,38,,20260408T165316Z,2026-04-08T18:02:10.620783+00:00 +2026-02-01,Coderabbit,all,41,,20260408T165316Z,2026-04-08T18:02:10.620783+00:00 +2026-02-01,Copilot,all,208,,20260408T165316Z,2026-04-08T18:02:10.620783+00:00 +2026-02-01,Copilot SWE Agent,all,17379,,20260408T165316Z,2026-04-08T18:02:10.620783+00:00 +2026-02-01,Crush,all,0,,20260408T165316Z,2026-04-08T18:02:10.620783+00:00 +2026-02-01,Cursor,all,1206,,20260408T165316Z,2026-04-08T18:02:10.620783+00:00 +2026-02-01,DeepSource,all,17,,20260408T165316Z,2026-04-08T18:02:10.620783+00:00 +2026-02-01,Devin,all,19,1,20260408T165316Z,2026-04-08T18:02:10.620783+00:00 +2026-02-01,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T18:02:10.620783+00:00 +2026-02-01,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T18:02:10.620783+00:00 +2026-02-01,Gru,all,0,,20260408T165316Z,2026-04-08T18:02:10.620783+00:00 +2026-02-01,Jules (Google),all,3714,,20260408T165316Z,2026-04-08T18:02:10.620783+00:00 +2026-02-01,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T18:02:10.620783+00:00 +2026-02-01,Kilo Code,all,75,,20260408T165316Z,2026-04-08T18:02:10.620783+00:00 +2026-02-01,Lovable,all,3,,20260408T165316Z,2026-04-08T18:02:10.620783+00:00 +2026-02-01,OpenAI Codex,all,9,,20260408T165316Z,2026-04-08T18:02:10.620783+00:00 +2026-02-01,OpenCode,all,0,,20260408T165316Z,2026-04-08T18:02:10.620783+00:00 +2026-02-01,OpenHands,all,52,,20260408T165316Z,2026-04-08T18:02:10.620783+00:00 +2026-02-01,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T18:02:10.620783+00:00 +2026-02-01,Roo Code,all,3,,20260408T165316Z,2026-04-08T18:02:10.620783+00:00 +2026-02-01,Sketch,all,0,,20260408T165316Z,2026-04-08T18:02:10.620783+00:00 +2026-02-01,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T18:02:10.620783+00:00 +2026-02-01,Sweep AI,all,0,,20260408T165316Z,2026-04-08T18:02:10.620783+00:00 +2026-02-01,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T18:02:10.620783+00:00 +2026-02-02,Aider,all,2,,20260408T165316Z,2026-04-08T18:04:22.108884+00:00 +2026-02-02,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T18:04:22.108884+00:00 +2026-02-02,ChatGPT,all,0,,20260408T165316Z,2026-04-08T18:04:22.108884+00:00 +2026-02-02,Claude Code,all,18448,,20260408T165316Z,2026-04-08T18:04:22.108884+00:00 +2026-02-02,Cline,all,769,,20260408T165316Z,2026-04-08T18:04:22.108884+00:00 +2026-02-02,Codegen,all,46,,20260408T165316Z,2026-04-08T18:04:22.108884+00:00 +2026-02-02,Coderabbit,all,23,,20260408T165316Z,2026-04-08T18:04:22.108884+00:00 +2026-02-02,Copilot,all,244,,20260408T165316Z,2026-04-08T18:04:22.108884+00:00 +2026-02-02,Copilot SWE Agent,all,15321,,20260408T165316Z,2026-04-08T18:04:22.108884+00:00 +2026-02-02,Crush,all,0,,20260408T165316Z,2026-04-08T18:04:22.108884+00:00 +2026-02-02,Cursor,all,1547,,20260408T165316Z,2026-04-08T18:04:22.108884+00:00 +2026-02-02,DeepSource,all,20,,20260408T165316Z,2026-04-08T18:04:22.108884+00:00 +2026-02-02,Devin,all,33,,20260408T165316Z,2026-04-08T18:04:22.108884+00:00 +2026-02-02,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T18:04:22.108884+00:00 +2026-02-02,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T18:04:22.108884+00:00 +2026-02-02,Gru,all,0,,20260408T165316Z,2026-04-08T18:04:22.108884+00:00 +2026-02-02,Jules (Google),all,4478,,20260408T165316Z,2026-04-08T18:04:22.108884+00:00 +2026-02-02,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T18:04:22.108884+00:00 +2026-02-02,Kilo Code,all,66,,20260408T165316Z,2026-04-08T18:04:22.108884+00:00 +2026-02-02,Lovable,all,1,,20260408T165316Z,2026-04-08T18:04:22.108884+00:00 +2026-02-02,OpenAI Codex,all,5,,20260408T165316Z,2026-04-08T18:04:22.108884+00:00 +2026-02-02,OpenCode,all,0,,20260408T165316Z,2026-04-08T18:04:22.108884+00:00 +2026-02-02,OpenHands,all,56,,20260408T165316Z,2026-04-08T18:04:22.108884+00:00 +2026-02-02,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T18:04:22.108884+00:00 +2026-02-02,Roo Code,all,4,,20260408T165316Z,2026-04-08T18:04:22.108884+00:00 +2026-02-02,Sketch,all,0,,20260408T165316Z,2026-04-08T18:04:22.108884+00:00 +2026-02-02,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T18:04:22.108884+00:00 +2026-02-02,Sweep AI,all,0,,20260408T165316Z,2026-04-08T18:04:22.108884+00:00 +2026-02-02,Warp (Oz Agent),all,1,,20260408T165316Z,2026-04-08T18:04:22.108884+00:00 +2026-02-03,Aider,all,7,,20260408T165316Z,2026-04-08T18:06:34.402840+00:00 +2026-02-03,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T18:06:34.402840+00:00 +2026-02-03,ChatGPT,all,0,,20260408T165316Z,2026-04-08T18:06:34.402840+00:00 +2026-02-03,Claude Code,all,17831,,20260408T165316Z,2026-04-08T18:06:34.402840+00:00 +2026-02-03,Cline,all,942,,20260408T165316Z,2026-04-08T18:06:34.402840+00:00 +2026-02-03,Codegen,all,41,,20260408T165316Z,2026-04-08T18:06:34.402840+00:00 +2026-02-03,Coderabbit,all,40,,20260408T165316Z,2026-04-08T18:06:34.402840+00:00 +2026-02-03,Copilot,all,168,,20260408T165316Z,2026-04-08T18:06:34.402840+00:00 +2026-02-03,Copilot SWE Agent,all,18939,,20260408T165316Z,2026-04-08T18:06:34.402840+00:00 +2026-02-03,Crush,all,0,,20260408T165316Z,2026-04-08T18:06:34.402840+00:00 +2026-02-03,Cursor,all,1121,,20260408T165316Z,2026-04-08T18:06:34.402840+00:00 +2026-02-03,DeepSource,all,13,,20260408T165316Z,2026-04-08T18:06:34.402840+00:00 +2026-02-03,Devin,all,86,,20260408T165316Z,2026-04-08T18:06:34.402840+00:00 +2026-02-03,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T18:06:34.402840+00:00 +2026-02-03,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T18:06:34.402840+00:00 +2026-02-03,Gru,all,0,,20260408T165316Z,2026-04-08T18:06:34.402840+00:00 +2026-02-03,Jules (Google),all,4568,,20260408T165316Z,2026-04-08T18:06:34.402840+00:00 +2026-02-03,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T18:06:34.402840+00:00 +2026-02-03,Kilo Code,all,109,,20260408T165316Z,2026-04-08T18:06:34.402840+00:00 +2026-02-03,Lovable,all,0,,20260408T165316Z,2026-04-08T18:06:34.402840+00:00 +2026-02-03,OpenAI Codex,all,52,,20260408T165316Z,2026-04-08T18:06:34.402840+00:00 +2026-02-03,OpenCode,all,0,,20260408T165316Z,2026-04-08T18:06:34.402840+00:00 +2026-02-03,OpenHands,all,45,,20260408T165316Z,2026-04-08T18:06:34.402840+00:00 +2026-02-03,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T18:06:34.402840+00:00 +2026-02-03,Roo Code,all,0,,20260408T165316Z,2026-04-08T18:06:34.402840+00:00 +2026-02-03,Sketch,all,0,,20260408T165316Z,2026-04-08T18:06:34.402840+00:00 +2026-02-03,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T18:06:34.402840+00:00 +2026-02-03,Sweep AI,all,0,,20260408T165316Z,2026-04-08T18:06:34.402840+00:00 +2026-02-03,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T18:06:34.402840+00:00 +2026-02-04,Aider,all,1,,20260408T165316Z,2026-04-08T18:08:45.371589+00:00 +2026-02-04,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T18:08:45.371589+00:00 +2026-02-04,ChatGPT,all,18,,20260408T165316Z,2026-04-08T18:08:45.371589+00:00 +2026-02-04,Claude Code,all,18139,,20260408T165316Z,2026-04-08T18:08:45.371589+00:00 +2026-02-04,Cline,all,649,,20260408T165316Z,2026-04-08T18:08:45.371589+00:00 +2026-02-04,Codegen,all,56,,20260408T165316Z,2026-04-08T18:08:45.371589+00:00 +2026-02-04,Coderabbit,all,20,,20260408T165316Z,2026-04-08T18:08:45.371589+00:00 +2026-02-04,Copilot,all,247,,20260408T165316Z,2026-04-08T18:08:45.371589+00:00 +2026-02-04,Copilot SWE Agent,all,19313,,20260408T165316Z,2026-04-08T18:08:45.371589+00:00 +2026-02-04,Crush,all,0,,20260408T165316Z,2026-04-08T18:08:45.371589+00:00 +2026-02-04,Cursor,all,1068,,20260408T165316Z,2026-04-08T18:08:45.371589+00:00 +2026-02-04,DeepSource,all,8,,20260408T165316Z,2026-04-08T18:08:45.371589+00:00 +2026-02-04,Devin,all,50,,20260408T165316Z,2026-04-08T18:08:45.371589+00:00 +2026-02-04,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T18:08:45.371589+00:00 +2026-02-04,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T18:08:45.371589+00:00 +2026-02-04,Gru,all,0,,20260408T165316Z,2026-04-08T18:08:45.371589+00:00 +2026-02-04,Jules (Google),all,4698,1,20260408T165316Z,2026-04-08T18:08:45.371589+00:00 +2026-02-04,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T18:08:45.371589+00:00 +2026-02-04,Kilo Code,all,43,,20260408T165316Z,2026-04-08T18:08:45.371589+00:00 +2026-02-04,Lovable,all,0,,20260408T165316Z,2026-04-08T18:08:45.371589+00:00 +2026-02-04,OpenAI Codex,all,20,,20260408T165316Z,2026-04-08T18:08:45.371589+00:00 +2026-02-04,OpenCode,all,0,,20260408T165316Z,2026-04-08T18:08:45.371589+00:00 +2026-02-04,OpenHands,all,54,,20260408T165316Z,2026-04-08T18:08:45.371589+00:00 +2026-02-04,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T18:08:45.371589+00:00 +2026-02-04,Roo Code,all,29,,20260408T165316Z,2026-04-08T18:08:45.371589+00:00 +2026-02-04,Sketch,all,0,,20260408T165316Z,2026-04-08T18:08:45.371589+00:00 +2026-02-04,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T18:08:45.371589+00:00 +2026-02-04,Sweep AI,all,0,,20260408T165316Z,2026-04-08T18:08:45.371589+00:00 +2026-02-04,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T18:08:45.371589+00:00 +2026-02-05,Aider,all,10,,20260408T165316Z,2026-04-08T18:10:56.709482+00:00 +2026-02-05,Amp (Sourcegraph),all,3,,20260408T165316Z,2026-04-08T18:10:56.709482+00:00 +2026-02-05,ChatGPT,all,3,,20260408T165316Z,2026-04-08T18:10:56.709482+00:00 +2026-02-05,Claude Code,all,19153,,20260408T165316Z,2026-04-08T18:10:56.709482+00:00 +2026-02-05,Cline,all,1343,,20260408T165316Z,2026-04-08T18:10:56.709482+00:00 +2026-02-05,Codegen,all,43,,20260408T165316Z,2026-04-08T18:10:56.709482+00:00 +2026-02-05,Coderabbit,all,21,,20260408T165316Z,2026-04-08T18:10:56.709482+00:00 +2026-02-05,Copilot,all,263,,20260408T165316Z,2026-04-08T18:10:56.709482+00:00 +2026-02-05,Copilot SWE Agent,all,17695,,20260408T165316Z,2026-04-08T18:10:56.709482+00:00 +2026-02-05,Crush,all,0,,20260408T165316Z,2026-04-08T18:10:56.709482+00:00 +2026-02-05,Cursor,all,1045,,20260408T165316Z,2026-04-08T18:10:56.709482+00:00 +2026-02-05,DeepSource,all,18,,20260408T165316Z,2026-04-08T18:10:56.709482+00:00 +2026-02-05,Devin,all,49,1,20260408T165316Z,2026-04-08T18:10:56.709482+00:00 +2026-02-05,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T18:10:56.709482+00:00 +2026-02-05,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T18:10:56.709482+00:00 +2026-02-05,Gru,all,0,,20260408T165316Z,2026-04-08T18:10:56.709482+00:00 +2026-02-05,Jules (Google),all,4493,,20260408T165316Z,2026-04-08T18:10:56.709482+00:00 +2026-02-05,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T18:10:56.709482+00:00 +2026-02-05,Kilo Code,all,40,,20260408T165316Z,2026-04-08T18:10:56.709482+00:00 +2026-02-05,Lovable,all,0,,20260408T165316Z,2026-04-08T18:10:56.709482+00:00 +2026-02-05,OpenAI Codex,all,34,,20260408T165316Z,2026-04-08T18:10:56.709482+00:00 +2026-02-05,OpenCode,all,0,,20260408T165316Z,2026-04-08T18:10:56.709482+00:00 +2026-02-05,OpenHands,all,144,,20260408T165316Z,2026-04-08T18:10:56.709482+00:00 +2026-02-05,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T18:10:56.709482+00:00 +2026-02-05,Roo Code,all,11,,20260408T165316Z,2026-04-08T18:10:56.709482+00:00 +2026-02-05,Sketch,all,0,,20260408T165316Z,2026-04-08T18:10:56.709482+00:00 +2026-02-05,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T18:10:56.709482+00:00 +2026-02-05,Sweep AI,all,0,,20260408T165316Z,2026-04-08T18:10:56.709482+00:00 +2026-02-05,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T18:10:56.709482+00:00 +2026-02-06,Aider,all,0,,20260408T165316Z,2026-04-08T18:13:08.183912+00:00 +2026-02-06,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T18:13:08.183912+00:00 +2026-02-06,ChatGPT,all,8,,20260408T165316Z,2026-04-08T18:13:08.183912+00:00 +2026-02-06,Claude Code,all,20303,,20260408T165316Z,2026-04-08T18:13:08.183912+00:00 +2026-02-06,Cline,all,188,,20260408T165316Z,2026-04-08T18:13:08.183912+00:00 +2026-02-06,Codegen,all,22,,20260408T165316Z,2026-04-08T18:13:08.183912+00:00 +2026-02-06,Coderabbit,all,29,,20260408T165316Z,2026-04-08T18:13:08.183912+00:00 +2026-02-06,Copilot,all,292,,20260408T165316Z,2026-04-08T18:13:08.183912+00:00 +2026-02-06,Copilot SWE Agent,all,18783,,20260408T165316Z,2026-04-08T18:13:08.183912+00:00 +2026-02-06,Crush,all,0,,20260408T165316Z,2026-04-08T18:13:08.183912+00:00 +2026-02-06,Cursor,all,1124,,20260408T165316Z,2026-04-08T18:13:08.183912+00:00 +2026-02-06,DeepSource,all,33,,20260408T165316Z,2026-04-08T18:13:08.183912+00:00 +2026-02-06,Devin,all,62,,20260408T165316Z,2026-04-08T18:13:08.183912+00:00 +2026-02-06,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T18:13:08.183912+00:00 +2026-02-06,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T18:13:08.183912+00:00 +2026-02-06,Gru,all,0,,20260408T165316Z,2026-04-08T18:13:08.183912+00:00 +2026-02-06,Jules (Google),all,4745,,20260408T165316Z,2026-04-08T18:13:08.183912+00:00 +2026-02-06,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T18:13:08.183912+00:00 +2026-02-06,Kilo Code,all,39,,20260408T165316Z,2026-04-08T18:13:08.183912+00:00 +2026-02-06,Lovable,all,0,,20260408T165316Z,2026-04-08T18:13:08.183912+00:00 +2026-02-06,OpenAI Codex,all,8,,20260408T165316Z,2026-04-08T18:13:08.183912+00:00 +2026-02-06,OpenCode,all,0,,20260408T165316Z,2026-04-08T18:13:08.183912+00:00 +2026-02-06,OpenHands,all,62,,20260408T165316Z,2026-04-08T18:13:08.183912+00:00 +2026-02-06,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T18:13:08.183912+00:00 +2026-02-06,Roo Code,all,19,,20260408T165316Z,2026-04-08T18:13:08.183912+00:00 +2026-02-06,Sketch,all,0,,20260408T165316Z,2026-04-08T18:13:08.183912+00:00 +2026-02-06,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T18:13:08.183912+00:00 +2026-02-06,Sweep AI,all,0,,20260408T165316Z,2026-04-08T18:13:08.183912+00:00 +2026-02-06,Warp (Oz Agent),all,4,,20260408T165316Z,2026-04-08T18:13:08.183912+00:00 +2026-02-07,Aider,all,6,,20260408T165316Z,2026-04-08T18:15:19.429880+00:00 +2026-02-07,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T18:15:19.429880+00:00 +2026-02-07,ChatGPT,all,0,,20260408T165316Z,2026-04-08T18:15:19.429880+00:00 +2026-02-07,Claude Code,all,18150,,20260408T165316Z,2026-04-08T18:15:19.429880+00:00 +2026-02-07,Cline,all,53,,20260408T165316Z,2026-04-08T18:15:19.429880+00:00 +2026-02-07,Codegen,all,19,,20260408T165316Z,2026-04-08T18:15:19.429880+00:00 +2026-02-07,Coderabbit,all,36,,20260408T165316Z,2026-04-08T18:15:19.429880+00:00 +2026-02-07,Copilot,all,1118,,20260408T165316Z,2026-04-08T18:15:19.429880+00:00 +2026-02-07,Copilot SWE Agent,all,18631,,20260408T165316Z,2026-04-08T18:15:19.429880+00:00 +2026-02-07,Crush,all,2,,20260408T165316Z,2026-04-08T18:15:19.429880+00:00 +2026-02-07,Cursor,all,912,,20260408T165316Z,2026-04-08T18:15:19.429880+00:00 +2026-02-07,DeepSource,all,13,,20260408T165316Z,2026-04-08T18:15:19.429880+00:00 +2026-02-07,Devin,all,30,,20260408T165316Z,2026-04-08T18:15:19.429880+00:00 +2026-02-07,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T18:15:19.429880+00:00 +2026-02-07,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T18:15:19.429880+00:00 +2026-02-07,Gru,all,0,,20260408T165316Z,2026-04-08T18:15:19.429880+00:00 +2026-02-07,Jules (Google),all,3972,,20260408T165316Z,2026-04-08T18:15:19.429880+00:00 +2026-02-07,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T18:15:19.429880+00:00 +2026-02-07,Kilo Code,all,20,,20260408T165316Z,2026-04-08T18:15:19.429880+00:00 +2026-02-07,Lovable,all,7,,20260408T165316Z,2026-04-08T18:15:19.429880+00:00 +2026-02-07,OpenAI Codex,all,11,,20260408T165316Z,2026-04-08T18:15:19.429880+00:00 +2026-02-07,OpenCode,all,0,,20260408T165316Z,2026-04-08T18:15:19.429880+00:00 +2026-02-07,OpenHands,all,55,,20260408T165316Z,2026-04-08T18:15:19.429880+00:00 +2026-02-07,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T18:15:19.429880+00:00 +2026-02-07,Roo Code,all,4,,20260408T165316Z,2026-04-08T18:15:19.429880+00:00 +2026-02-07,Sketch,all,0,,20260408T165316Z,2026-04-08T18:15:19.429880+00:00 +2026-02-07,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T18:15:19.429880+00:00 +2026-02-07,Sweep AI,all,0,,20260408T165316Z,2026-04-08T18:15:19.429880+00:00 +2026-02-07,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T18:15:19.429880+00:00 +2026-02-08,Aider,all,19,,20260408T165316Z,2026-04-08T18:17:30.573432+00:00 +2026-02-08,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T18:17:30.573432+00:00 +2026-02-08,ChatGPT,all,0,,20260408T165316Z,2026-04-08T18:17:30.573432+00:00 +2026-02-08,Claude Code,all,18178,,20260408T165316Z,2026-04-08T18:17:30.573432+00:00 +2026-02-08,Cline,all,16,,20260408T165316Z,2026-04-08T18:17:30.573432+00:00 +2026-02-08,Codegen,all,28,,20260408T165316Z,2026-04-08T18:17:30.573432+00:00 +2026-02-08,Coderabbit,all,14,,20260408T165316Z,2026-04-08T18:17:30.573432+00:00 +2026-02-08,Copilot,all,299,,20260408T165316Z,2026-04-08T18:17:30.573432+00:00 +2026-02-08,Copilot SWE Agent,all,19588,,20260408T165316Z,2026-04-08T18:17:30.573432+00:00 +2026-02-08,Crush,all,0,,20260408T165316Z,2026-04-08T18:17:30.573432+00:00 +2026-02-08,Cursor,all,1426,,20260408T165316Z,2026-04-08T18:17:30.573432+00:00 +2026-02-08,DeepSource,all,5,,20260408T165316Z,2026-04-08T18:17:30.573432+00:00 +2026-02-08,Devin,all,65,,20260408T165316Z,2026-04-08T18:17:30.573432+00:00 +2026-02-08,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T18:17:30.573432+00:00 +2026-02-08,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T18:17:30.573432+00:00 +2026-02-08,Gru,all,0,,20260408T165316Z,2026-04-08T18:17:30.573432+00:00 +2026-02-08,Jules (Google),all,3968,,20260408T165316Z,2026-04-08T18:17:30.573432+00:00 +2026-02-08,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T18:17:30.573432+00:00 +2026-02-08,Kilo Code,all,11,,20260408T165316Z,2026-04-08T18:17:30.573432+00:00 +2026-02-08,Lovable,all,0,,20260408T165316Z,2026-04-08T18:17:30.573432+00:00 +2026-02-08,OpenAI Codex,all,2,,20260408T165316Z,2026-04-08T18:17:30.573432+00:00 +2026-02-08,OpenCode,all,0,,20260408T165316Z,2026-04-08T18:17:30.573432+00:00 +2026-02-08,OpenHands,all,119,,20260408T165316Z,2026-04-08T18:17:30.573432+00:00 +2026-02-08,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T18:17:30.573432+00:00 +2026-02-08,Roo Code,all,18,,20260408T165316Z,2026-04-08T18:17:30.573432+00:00 +2026-02-08,Sketch,all,0,,20260408T165316Z,2026-04-08T18:17:30.573432+00:00 +2026-02-08,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T18:17:30.573432+00:00 +2026-02-08,Sweep AI,all,0,,20260408T165316Z,2026-04-08T18:17:30.573432+00:00 +2026-02-08,Warp (Oz Agent),all,2,,20260408T165316Z,2026-04-08T18:17:30.573432+00:00 +2026-02-09,Aider,all,10,,20260408T165316Z,2026-04-08T18:19:42.204762+00:00 +2026-02-09,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T18:19:42.204762+00:00 +2026-02-09,ChatGPT,all,2,,20260408T165316Z,2026-04-08T18:19:42.204762+00:00 +2026-02-09,Claude Code,all,17800,,20260408T165316Z,2026-04-08T18:19:42.204762+00:00 +2026-02-09,Cline,all,733,,20260408T165316Z,2026-04-08T18:19:42.204762+00:00 +2026-02-09,Codegen,all,37,,20260408T165316Z,2026-04-08T18:19:42.204762+00:00 +2026-02-09,Coderabbit,all,7,,20260408T165316Z,2026-04-08T18:19:42.204762+00:00 +2026-02-09,Copilot,all,233,,20260408T165316Z,2026-04-08T18:19:42.204762+00:00 +2026-02-09,Copilot SWE Agent,all,17975,,20260408T165316Z,2026-04-08T18:19:42.204762+00:00 +2026-02-09,Crush,all,0,,20260408T165316Z,2026-04-08T18:19:42.204762+00:00 +2026-02-09,Cursor,all,1319,,20260408T165316Z,2026-04-08T18:19:42.204762+00:00 +2026-02-09,DeepSource,all,11,,20260408T165316Z,2026-04-08T18:19:42.204762+00:00 +2026-02-09,Devin,all,75,,20260408T165316Z,2026-04-08T18:19:42.204762+00:00 +2026-02-09,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T18:19:42.204762+00:00 +2026-02-09,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T18:19:42.204762+00:00 +2026-02-09,Gru,all,0,,20260408T165316Z,2026-04-08T18:19:42.204762+00:00 +2026-02-09,Jules (Google),all,3620,,20260408T165316Z,2026-04-08T18:19:42.204762+00:00 +2026-02-09,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T18:19:42.204762+00:00 +2026-02-09,Kilo Code,all,20,,20260408T165316Z,2026-04-08T18:19:42.204762+00:00 +2026-02-09,Lovable,all,0,,20260408T165316Z,2026-04-08T18:19:42.204762+00:00 +2026-02-09,OpenAI Codex,all,14,,20260408T165316Z,2026-04-08T18:19:42.204762+00:00 +2026-02-09,OpenCode,all,0,,20260408T165316Z,2026-04-08T18:19:42.204762+00:00 +2026-02-09,OpenHands,all,113,,20260408T165316Z,2026-04-08T18:19:42.204762+00:00 +2026-02-09,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T18:19:42.204762+00:00 +2026-02-09,Roo Code,all,1,,20260408T165316Z,2026-04-08T18:19:42.204762+00:00 +2026-02-09,Sketch,all,0,,20260408T165316Z,2026-04-08T18:19:42.204762+00:00 +2026-02-09,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T18:19:42.204762+00:00 +2026-02-09,Sweep AI,all,0,,20260408T165316Z,2026-04-08T18:19:42.204762+00:00 +2026-02-09,Warp (Oz Agent),all,3,,20260408T165316Z,2026-04-08T18:19:42.204762+00:00 +2026-02-10,Aider,all,1,,20260408T165316Z,2026-04-08T18:21:53.886514+00:00 +2026-02-10,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T18:21:53.886514+00:00 +2026-02-10,ChatGPT,all,12,,20260408T165316Z,2026-04-08T18:21:53.886514+00:00 +2026-02-10,Claude Code,all,21195,,20260408T165316Z,2026-04-08T18:21:53.886514+00:00 +2026-02-10,Cline,all,35,,20260408T165316Z,2026-04-08T18:21:53.886514+00:00 +2026-02-10,Codegen,all,22,,20260408T165316Z,2026-04-08T18:21:53.886514+00:00 +2026-02-10,Coderabbit,all,21,,20260408T165316Z,2026-04-08T18:21:53.886514+00:00 +2026-02-10,Copilot,all,242,,20260408T165316Z,2026-04-08T18:21:53.886514+00:00 +2026-02-10,Copilot SWE Agent,all,19926,,20260408T165316Z,2026-04-08T18:21:53.886514+00:00 +2026-02-10,Crush,all,0,,20260408T165316Z,2026-04-08T18:21:53.886514+00:00 +2026-02-10,Cursor,all,1053,,20260408T165316Z,2026-04-08T18:21:53.886514+00:00 +2026-02-10,DeepSource,all,51,,20260408T165316Z,2026-04-08T18:21:53.886514+00:00 +2026-02-10,Devin,all,75,1,20260408T165316Z,2026-04-08T18:21:53.886514+00:00 +2026-02-10,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T18:21:53.886514+00:00 +2026-02-10,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T18:21:53.886514+00:00 +2026-02-10,Gru,all,0,,20260408T165316Z,2026-04-08T18:21:53.886514+00:00 +2026-02-10,Jules (Google),all,4216,,20260408T165316Z,2026-04-08T18:21:53.886514+00:00 +2026-02-10,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T18:21:53.886514+00:00 +2026-02-10,Kilo Code,all,28,,20260408T165316Z,2026-04-08T18:21:53.886514+00:00 +2026-02-10,Lovable,all,0,,20260408T165316Z,2026-04-08T18:21:53.886514+00:00 +2026-02-10,OpenAI Codex,all,63,,20260408T165316Z,2026-04-08T18:21:53.886514+00:00 +2026-02-10,OpenCode,all,0,,20260408T165316Z,2026-04-08T18:21:53.886514+00:00 +2026-02-10,OpenHands,all,123,,20260408T165316Z,2026-04-08T18:21:53.886514+00:00 +2026-02-10,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T18:21:53.886514+00:00 +2026-02-10,Roo Code,all,23,,20260408T165316Z,2026-04-08T18:21:53.886514+00:00 +2026-02-10,Sketch,all,0,,20260408T165316Z,2026-04-08T18:21:53.886514+00:00 +2026-02-10,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T18:21:53.886514+00:00 +2026-02-10,Sweep AI,all,0,,20260408T165316Z,2026-04-08T18:21:53.886514+00:00 +2026-02-10,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T18:21:53.886514+00:00 +2026-02-11,Aider,all,1,,20260408T165316Z,2026-04-08T18:24:05.015798+00:00 +2026-02-11,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T18:24:05.015798+00:00 +2026-02-11,ChatGPT,all,4,,20260408T165316Z,2026-04-08T18:24:05.015798+00:00 +2026-02-11,Claude Code,all,20981,,20260408T165316Z,2026-04-08T18:24:05.015798+00:00 +2026-02-11,Cline,all,831,,20260408T165316Z,2026-04-08T18:24:05.015798+00:00 +2026-02-11,Codegen,all,36,,20260408T165316Z,2026-04-08T18:24:05.015798+00:00 +2026-02-11,Coderabbit,all,35,,20260408T165316Z,2026-04-08T18:24:05.015798+00:00 +2026-02-11,Copilot,all,316,,20260408T165316Z,2026-04-08T18:24:05.015798+00:00 +2026-02-11,Copilot SWE Agent,all,20903,1,20260408T165316Z,2026-04-08T18:24:05.015798+00:00 +2026-02-11,Crush,all,4,,20260408T165316Z,2026-04-08T18:24:05.015798+00:00 +2026-02-11,Cursor,all,1343,,20260408T165316Z,2026-04-08T18:24:05.015798+00:00 +2026-02-11,DeepSource,all,43,,20260408T165316Z,2026-04-08T18:24:05.015798+00:00 +2026-02-11,Devin,all,103,,20260408T165316Z,2026-04-08T18:24:05.015798+00:00 +2026-02-11,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T18:24:05.015798+00:00 +2026-02-11,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T18:24:05.015798+00:00 +2026-02-11,Gru,all,0,,20260408T165316Z,2026-04-08T18:24:05.015798+00:00 +2026-02-11,Jules (Google),all,4556,,20260408T165316Z,2026-04-08T18:24:05.015798+00:00 +2026-02-11,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T18:24:05.015798+00:00 +2026-02-11,Kilo Code,all,72,,20260408T165316Z,2026-04-08T18:24:05.015798+00:00 +2026-02-11,Lovable,all,0,,20260408T165316Z,2026-04-08T18:24:05.015798+00:00 +2026-02-11,OpenAI Codex,all,49,,20260408T165316Z,2026-04-08T18:24:05.015798+00:00 +2026-02-11,OpenCode,all,0,,20260408T165316Z,2026-04-08T18:24:05.015798+00:00 +2026-02-11,OpenHands,all,60,,20260408T165316Z,2026-04-08T18:24:05.015798+00:00 +2026-02-11,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T18:24:05.015798+00:00 +2026-02-11,Roo Code,all,1,,20260408T165316Z,2026-04-08T18:24:05.015798+00:00 +2026-02-11,Sketch,all,0,,20260408T165316Z,2026-04-08T18:24:05.015798+00:00 +2026-02-11,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T18:24:05.015798+00:00 +2026-02-11,Sweep AI,all,0,,20260408T165316Z,2026-04-08T18:24:05.015798+00:00 +2026-02-11,Warp (Oz Agent),all,3,,20260408T165316Z,2026-04-08T18:24:05.015798+00:00 +2026-02-12,Aider,all,2,,20260408T165316Z,2026-04-08T18:26:16.977703+00:00 +2026-02-12,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T18:26:16.977703+00:00 +2026-02-12,ChatGPT,all,25,,20260408T165316Z,2026-04-08T18:26:16.977703+00:00 +2026-02-12,Claude Code,all,20648,,20260408T165316Z,2026-04-08T18:26:16.977703+00:00 +2026-02-12,Cline,all,699,,20260408T165316Z,2026-04-08T18:26:16.977703+00:00 +2026-02-12,Codegen,all,40,,20260408T165316Z,2026-04-08T18:26:16.977703+00:00 +2026-02-12,Coderabbit,all,3,,20260408T165316Z,2026-04-08T18:26:16.977703+00:00 +2026-02-12,Copilot,all,118,,20260408T165316Z,2026-04-08T18:26:16.977703+00:00 +2026-02-12,Copilot SWE Agent,all,20754,,20260408T165316Z,2026-04-08T18:26:16.977703+00:00 +2026-02-12,Crush,all,0,,20260408T165316Z,2026-04-08T18:26:16.977703+00:00 +2026-02-12,Cursor,all,1513,,20260408T165316Z,2026-04-08T18:26:16.977703+00:00 +2026-02-12,DeepSource,all,33,,20260408T165316Z,2026-04-08T18:26:16.977703+00:00 +2026-02-12,Devin,all,70,,20260408T165316Z,2026-04-08T18:26:16.977703+00:00 +2026-02-12,Gemini CLI,all,0,1,20260408T165316Z,2026-04-08T18:26:16.977703+00:00 +2026-02-12,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T18:26:16.977703+00:00 +2026-02-12,Gru,all,0,,20260408T165316Z,2026-04-08T18:26:16.977703+00:00 +2026-02-12,Jules (Google),all,4691,1,20260408T165316Z,2026-04-08T18:26:16.977703+00:00 +2026-02-12,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T18:26:16.977703+00:00 +2026-02-12,Kilo Code,all,120,,20260408T165316Z,2026-04-08T18:26:16.977703+00:00 +2026-02-12,Lovable,all,0,,20260408T165316Z,2026-04-08T18:26:16.977703+00:00 +2026-02-12,OpenAI Codex,all,85,,20260408T165316Z,2026-04-08T18:26:16.977703+00:00 +2026-02-12,OpenCode,all,15,,20260408T165316Z,2026-04-08T18:26:16.977703+00:00 +2026-02-12,OpenHands,all,55,,20260408T165316Z,2026-04-08T18:26:16.977703+00:00 +2026-02-12,Qwen Coder,all,4,,20260408T165316Z,2026-04-08T18:26:16.977703+00:00 +2026-02-12,Roo Code,all,3,,20260408T165316Z,2026-04-08T18:26:16.977703+00:00 +2026-02-12,Sketch,all,0,,20260408T165316Z,2026-04-08T18:26:16.977703+00:00 +2026-02-12,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T18:26:16.977703+00:00 +2026-02-12,Sweep AI,all,0,,20260408T165316Z,2026-04-08T18:26:16.977703+00:00 +2026-02-12,Warp (Oz Agent),all,5,,20260408T165316Z,2026-04-08T18:26:16.977703+00:00 +2026-02-13,Aider,all,7,,20260408T165316Z,2026-04-08T18:29:28.997961+00:00 +2026-02-13,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T18:29:28.997961+00:00 +2026-02-13,ChatGPT,all,1,,20260408T165316Z,2026-04-08T18:29:28.997961+00:00 +2026-02-13,Claude Code,all,20314,,20260408T165316Z,2026-04-08T18:29:28.997961+00:00 +2026-02-13,Cline,all,462,,20260408T165316Z,2026-04-08T18:29:28.997961+00:00 +2026-02-13,Codegen,all,36,,20260408T165316Z,2026-04-08T18:29:28.997961+00:00 +2026-02-13,Coderabbit,all,13,,20260408T165316Z,2026-04-08T18:29:28.997961+00:00 +2026-02-13,Copilot,all,196,1,20260408T165316Z,2026-04-08T18:29:28.997961+00:00 +2026-02-13,Copilot SWE Agent,all,20041,,20260408T165316Z,2026-04-08T18:29:28.997961+00:00 +2026-02-13,Crush,all,0,,20260408T165316Z,2026-04-08T18:29:28.997961+00:00 +2026-02-13,Cursor,all,2920,,20260408T165316Z,2026-04-08T18:29:28.997961+00:00 +2026-02-13,DeepSource,all,49,,20260408T165316Z,2026-04-08T18:29:28.997961+00:00 +2026-02-13,Devin,all,88,,20260408T165316Z,2026-04-08T18:29:28.997961+00:00 +2026-02-13,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T18:29:28.997961+00:00 +2026-02-13,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T18:29:28.997961+00:00 +2026-02-13,Gru,all,0,,20260408T165316Z,2026-04-08T18:29:28.997961+00:00 +2026-02-13,Jules (Google),all,4111,,20260408T165316Z,2026-04-08T18:29:28.997961+00:00 +2026-02-13,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T18:29:28.997961+00:00 +2026-02-13,Kilo Code,all,112,,20260408T165316Z,2026-04-08T18:29:28.997961+00:00 +2026-02-13,Lovable,all,0,,20260408T165316Z,2026-04-08T18:29:28.997961+00:00 +2026-02-13,OpenAI Codex,all,58,,20260408T165316Z,2026-04-08T18:29:28.997961+00:00 +2026-02-13,OpenCode,all,19,,20260408T165316Z,2026-04-08T18:29:28.997961+00:00 +2026-02-13,OpenHands,all,84,,20260408T165316Z,2026-04-08T18:29:28.997961+00:00 +2026-02-13,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T18:29:28.997961+00:00 +2026-02-13,Roo Code,all,16,,20260408T165316Z,2026-04-08T18:29:28.997961+00:00 +2026-02-13,Sketch,all,0,,20260408T165316Z,2026-04-08T18:29:28.997961+00:00 +2026-02-13,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T18:29:28.997961+00:00 +2026-02-13,Sweep AI,all,0,,20260408T165316Z,2026-04-08T18:29:28.997961+00:00 +2026-02-13,Warp (Oz Agent),all,5,,20260408T165316Z,2026-04-08T18:29:28.997961+00:00 +2026-02-14,Aider,all,1,,20260408T165316Z,2026-04-08T18:31:40.342430+00:00 +2026-02-14,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T18:31:40.342430+00:00 +2026-02-14,ChatGPT,all,8,,20260408T165316Z,2026-04-08T18:31:40.342430+00:00 +2026-02-14,Claude Code,all,18939,,20260408T165316Z,2026-04-08T18:31:40.342430+00:00 +2026-02-14,Cline,all,649,,20260408T165316Z,2026-04-08T18:31:40.342430+00:00 +2026-02-14,Codegen,all,23,,20260408T165316Z,2026-04-08T18:31:40.342430+00:00 +2026-02-14,Coderabbit,all,5,,20260408T165316Z,2026-04-08T18:31:40.342430+00:00 +2026-02-14,Copilot,all,190,,20260408T165316Z,2026-04-08T18:31:40.342430+00:00 +2026-02-14,Copilot SWE Agent,all,17664,,20260408T165316Z,2026-04-08T18:31:40.342430+00:00 +2026-02-14,Crush,all,1,,20260408T165316Z,2026-04-08T18:31:40.342430+00:00 +2026-02-14,Cursor,all,2676,,20260408T165316Z,2026-04-08T18:31:40.342430+00:00 +2026-02-14,DeepSource,all,35,,20260408T165316Z,2026-04-08T18:31:40.342430+00:00 +2026-02-14,Devin,all,57,,20260408T165316Z,2026-04-08T18:31:40.342430+00:00 +2026-02-14,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T18:31:40.342430+00:00 +2026-02-14,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T18:31:40.342430+00:00 +2026-02-14,Gru,all,0,,20260408T165316Z,2026-04-08T18:31:40.342430+00:00 +2026-02-14,Jules (Google),all,4441,,20260408T165316Z,2026-04-08T18:31:40.342430+00:00 +2026-02-14,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T18:31:40.342430+00:00 +2026-02-14,Kilo Code,all,112,,20260408T165316Z,2026-04-08T18:31:40.342430+00:00 +2026-02-14,Lovable,all,0,,20260408T165316Z,2026-04-08T18:31:40.342430+00:00 +2026-02-14,OpenAI Codex,all,161,,20260408T165316Z,2026-04-08T18:31:40.342430+00:00 +2026-02-14,OpenCode,all,0,,20260408T165316Z,2026-04-08T18:31:40.342430+00:00 +2026-02-14,OpenHands,all,58,,20260408T165316Z,2026-04-08T18:31:40.342430+00:00 +2026-02-14,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T18:31:40.342430+00:00 +2026-02-14,Roo Code,all,5,,20260408T165316Z,2026-04-08T18:31:40.342430+00:00 +2026-02-14,Sketch,all,0,,20260408T165316Z,2026-04-08T18:31:40.342430+00:00 +2026-02-14,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T18:31:40.342430+00:00 +2026-02-14,Sweep AI,all,0,,20260408T165316Z,2026-04-08T18:31:40.342430+00:00 +2026-02-14,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T18:31:40.342430+00:00 +2026-02-15,Aider,all,15,,20260408T165316Z,2026-04-08T18:33:51.251036+00:00 +2026-02-15,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T18:33:51.251036+00:00 +2026-02-15,ChatGPT,all,11,1,20260408T165316Z,2026-04-08T18:33:51.251036+00:00 +2026-02-15,Claude Code,all,21104,,20260408T165316Z,2026-04-08T18:33:51.251036+00:00 +2026-02-15,Cline,all,164,,20260408T165316Z,2026-04-08T18:33:51.251036+00:00 +2026-02-15,Codegen,all,35,,20260408T165316Z,2026-04-08T18:33:51.251036+00:00 +2026-02-15,Coderabbit,all,24,,20260408T165316Z,2026-04-08T18:33:51.251036+00:00 +2026-02-15,Copilot,all,305,,20260408T165316Z,2026-04-08T18:33:51.251036+00:00 +2026-02-15,Copilot SWE Agent,all,18537,,20260408T165316Z,2026-04-08T18:33:51.251036+00:00 +2026-02-15,Crush,all,0,,20260408T165316Z,2026-04-08T18:33:51.251036+00:00 +2026-02-15,Cursor,all,3406,,20260408T165316Z,2026-04-08T18:33:51.251036+00:00 +2026-02-15,DeepSource,all,71,,20260408T165316Z,2026-04-08T18:33:51.251036+00:00 +2026-02-15,Devin,all,31,,20260408T165316Z,2026-04-08T18:33:51.251036+00:00 +2026-02-15,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T18:33:51.251036+00:00 +2026-02-15,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T18:33:51.251036+00:00 +2026-02-15,Gru,all,0,,20260408T165316Z,2026-04-08T18:33:51.251036+00:00 +2026-02-15,Jules (Google),all,4392,,20260408T165316Z,2026-04-08T18:33:51.251036+00:00 +2026-02-15,Junie (JetBrains),all,1,,20260408T165316Z,2026-04-08T18:33:51.251036+00:00 +2026-02-15,Kilo Code,all,154,,20260408T165316Z,2026-04-08T18:33:51.251036+00:00 +2026-02-15,Lovable,all,0,,20260408T165316Z,2026-04-08T18:33:51.251036+00:00 +2026-02-15,OpenAI Codex,all,46,,20260408T165316Z,2026-04-08T18:33:51.251036+00:00 +2026-02-15,OpenCode,all,0,,20260408T165316Z,2026-04-08T18:33:51.251036+00:00 +2026-02-15,OpenHands,all,167,,20260408T165316Z,2026-04-08T18:33:51.251036+00:00 +2026-02-15,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T18:33:51.251036+00:00 +2026-02-15,Roo Code,all,25,,20260408T165316Z,2026-04-08T18:33:51.251036+00:00 +2026-02-15,Sketch,all,0,,20260408T165316Z,2026-04-08T18:33:51.251036+00:00 +2026-02-15,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T18:33:51.251036+00:00 +2026-02-15,Sweep AI,all,0,,20260408T165316Z,2026-04-08T18:33:51.251036+00:00 +2026-02-15,Warp (Oz Agent),all,9,,20260408T165316Z,2026-04-08T18:33:51.251036+00:00 +2026-02-16,Aider,all,19,,20260408T165316Z,2026-04-08T18:36:02.793715+00:00 +2026-02-16,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T18:36:02.793715+00:00 +2026-02-16,ChatGPT,all,2,,20260408T165316Z,2026-04-08T18:36:02.793715+00:00 +2026-02-16,Claude Code,all,19709,,20260408T165316Z,2026-04-08T18:36:02.793715+00:00 +2026-02-16,Cline,all,368,,20260408T165316Z,2026-04-08T18:36:02.793715+00:00 +2026-02-16,Codegen,all,56,,20260408T165316Z,2026-04-08T18:36:02.793715+00:00 +2026-02-16,Coderabbit,all,19,,20260408T165316Z,2026-04-08T18:36:02.793715+00:00 +2026-02-16,Copilot,all,231,,20260408T165316Z,2026-04-08T18:36:02.793715+00:00 +2026-02-16,Copilot SWE Agent,all,20410,,20260408T165316Z,2026-04-08T18:36:02.793715+00:00 +2026-02-16,Crush,all,0,,20260408T165316Z,2026-04-08T18:36:02.793715+00:00 +2026-02-16,Cursor,all,3971,,20260408T165316Z,2026-04-08T18:36:02.793715+00:00 +2026-02-16,DeepSource,all,10,,20260408T165316Z,2026-04-08T18:36:02.793715+00:00 +2026-02-16,Devin,all,59,,20260408T165316Z,2026-04-08T18:36:02.793715+00:00 +2026-02-16,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T18:36:02.793715+00:00 +2026-02-16,Gemini Code Assist,all,2,,20260408T165316Z,2026-04-08T18:36:02.793715+00:00 +2026-02-16,Gru,all,0,,20260408T165316Z,2026-04-08T18:36:02.793715+00:00 +2026-02-16,Jules (Google),all,4883,,20260408T165316Z,2026-04-08T18:36:02.793715+00:00 +2026-02-16,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T18:36:02.793715+00:00 +2026-02-16,Kilo Code,all,205,,20260408T165316Z,2026-04-08T18:36:02.793715+00:00 +2026-02-16,Lovable,all,0,,20260408T165316Z,2026-04-08T18:36:02.793715+00:00 +2026-02-16,OpenAI Codex,all,54,,20260408T165316Z,2026-04-08T18:36:02.793715+00:00 +2026-02-16,OpenCode,all,0,,20260408T165316Z,2026-04-08T18:36:02.793715+00:00 +2026-02-16,OpenHands,all,74,,20260408T165316Z,2026-04-08T18:36:02.793715+00:00 +2026-02-16,Qwen Coder,all,20,,20260408T165316Z,2026-04-08T18:36:02.793715+00:00 +2026-02-16,Roo Code,all,16,,20260408T165316Z,2026-04-08T18:36:02.793715+00:00 +2026-02-16,Sketch,all,0,,20260408T165316Z,2026-04-08T18:36:02.793715+00:00 +2026-02-16,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T18:36:02.793715+00:00 +2026-02-16,Sweep AI,all,0,,20260408T165316Z,2026-04-08T18:36:02.793715+00:00 +2026-02-16,Warp (Oz Agent),all,1,,20260408T165316Z,2026-04-08T18:36:02.793715+00:00 +2026-02-17,Aider,all,172,,20260408T165316Z,2026-04-08T18:38:14.998715+00:00 +2026-02-17,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T18:38:14.998715+00:00 +2026-02-17,ChatGPT,all,0,1,20260408T165316Z,2026-04-08T18:38:14.998715+00:00 +2026-02-17,Claude Code,all,21896,,20260408T165316Z,2026-04-08T18:38:14.998715+00:00 +2026-02-17,Cline,all,730,,20260408T165316Z,2026-04-08T18:38:14.998715+00:00 +2026-02-17,Codegen,all,25,,20260408T165316Z,2026-04-08T18:38:14.998715+00:00 +2026-02-17,Coderabbit,all,14,,20260408T165316Z,2026-04-08T18:38:14.998715+00:00 +2026-02-17,Copilot,all,218,,20260408T165316Z,2026-04-08T18:38:14.998715+00:00 +2026-02-17,Copilot SWE Agent,all,18744,,20260408T165316Z,2026-04-08T18:38:14.998715+00:00 +2026-02-17,Crush,all,0,,20260408T165316Z,2026-04-08T18:38:14.998715+00:00 +2026-02-17,Cursor,all,2217,,20260408T165316Z,2026-04-08T18:38:14.998715+00:00 +2026-02-17,DeepSource,all,8,,20260408T165316Z,2026-04-08T18:38:14.998715+00:00 +2026-02-17,Devin,all,177,,20260408T165316Z,2026-04-08T18:38:14.998715+00:00 +2026-02-17,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T18:38:14.998715+00:00 +2026-02-17,Gemini Code Assist,all,1,,20260408T165316Z,2026-04-08T18:38:14.998715+00:00 +2026-02-17,Gru,all,0,,20260408T165316Z,2026-04-08T18:38:14.998715+00:00 +2026-02-17,Jules (Google),all,5092,1,20260408T165316Z,2026-04-08T18:38:14.998715+00:00 +2026-02-17,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T18:38:14.998715+00:00 +2026-02-17,Kilo Code,all,124,,20260408T165316Z,2026-04-08T18:38:14.998715+00:00 +2026-02-17,Lovable,all,1,,20260408T165316Z,2026-04-08T18:38:14.998715+00:00 +2026-02-17,OpenAI Codex,all,122,,20260408T165316Z,2026-04-08T18:38:14.998715+00:00 +2026-02-17,OpenCode,all,0,,20260408T165316Z,2026-04-08T18:38:14.998715+00:00 +2026-02-17,OpenHands,all,37,,20260408T165316Z,2026-04-08T18:38:14.998715+00:00 +2026-02-17,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T18:38:14.998715+00:00 +2026-02-17,Roo Code,all,53,,20260408T165316Z,2026-04-08T18:38:14.998715+00:00 +2026-02-17,Sketch,all,0,,20260408T165316Z,2026-04-08T18:38:14.998715+00:00 +2026-02-17,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T18:38:14.998715+00:00 +2026-02-17,Sweep AI,all,0,,20260408T165316Z,2026-04-08T18:38:14.998715+00:00 +2026-02-17,Warp (Oz Agent),all,1,,20260408T165316Z,2026-04-08T18:38:14.998715+00:00 +2026-02-18,Aider,all,21,,20260408T165316Z,2026-04-08T18:40:31.878247+00:00 +2026-02-18,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T18:40:31.878247+00:00 +2026-02-18,ChatGPT,all,1,,20260408T165316Z,2026-04-08T18:40:31.878247+00:00 +2026-02-18,Claude Code,all,19871,,20260408T165316Z,2026-04-08T18:40:31.878247+00:00 +2026-02-18,Cline,all,481,,20260408T165316Z,2026-04-08T18:40:31.878247+00:00 +2026-02-18,Codegen,all,12,,20260408T165316Z,2026-04-08T18:40:31.878247+00:00 +2026-02-18,Coderabbit,all,11,,20260408T165316Z,2026-04-08T18:40:31.878247+00:00 +2026-02-18,Copilot,all,294,,20260408T165316Z,2026-04-08T18:40:31.878247+00:00 +2026-02-18,Copilot SWE Agent,all,20501,,20260408T165316Z,2026-04-08T18:40:31.878247+00:00 +2026-02-18,Crush,all,0,,20260408T165316Z,2026-04-08T18:40:31.878247+00:00 +2026-02-18,Cursor,all,1469,,20260408T165316Z,2026-04-08T18:40:31.878247+00:00 +2026-02-18,DeepSource,all,7,,20260408T165316Z,2026-04-08T18:40:31.878247+00:00 +2026-02-18,Devin,all,86,,20260408T165316Z,2026-04-08T18:40:31.878247+00:00 +2026-02-18,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T18:40:31.878247+00:00 +2026-02-18,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T18:40:31.878247+00:00 +2026-02-18,Gru,all,0,,20260408T165316Z,2026-04-08T18:40:31.878247+00:00 +2026-02-18,Jules (Google),all,4394,,20260408T165316Z,2026-04-08T18:40:31.878247+00:00 +2026-02-18,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T18:40:31.878247+00:00 +2026-02-18,Kilo Code,all,147,,20260408T165316Z,2026-04-08T18:40:31.878247+00:00 +2026-02-18,Lovable,all,0,,20260408T165316Z,2026-04-08T18:40:31.878247+00:00 +2026-02-18,OpenAI Codex,all,91,,20260408T165316Z,2026-04-08T18:40:31.878247+00:00 +2026-02-18,OpenCode,all,8,,20260408T165316Z,2026-04-08T18:40:31.878247+00:00 +2026-02-18,OpenHands,all,66,,20260408T165316Z,2026-04-08T18:40:31.878247+00:00 +2026-02-18,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T18:40:31.878247+00:00 +2026-02-18,Roo Code,all,23,,20260408T165316Z,2026-04-08T18:40:31.878247+00:00 +2026-02-18,Sketch,all,0,,20260408T165316Z,2026-04-08T18:40:31.878247+00:00 +2026-02-18,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T18:40:31.878247+00:00 +2026-02-18,Sweep AI,all,0,,20260408T165316Z,2026-04-08T18:40:31.878247+00:00 +2026-02-18,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T18:40:31.878247+00:00 +2026-02-19,Aider,all,2,,20260408T165316Z,2026-04-08T18:42:43.811252+00:00 +2026-02-19,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T18:42:43.811252+00:00 +2026-02-19,ChatGPT,all,1,,20260408T165316Z,2026-04-08T18:42:43.811252+00:00 +2026-02-19,Claude Code,all,24681,,20260408T165316Z,2026-04-08T18:42:43.811252+00:00 +2026-02-19,Cline,all,482,,20260408T165316Z,2026-04-08T18:42:43.811252+00:00 +2026-02-19,Codegen,all,19,,20260408T165316Z,2026-04-08T18:42:43.811252+00:00 +2026-02-19,Coderabbit,all,13,,20260408T165316Z,2026-04-08T18:42:43.811252+00:00 +2026-02-19,Copilot,all,197,,20260408T165316Z,2026-04-08T18:42:43.811252+00:00 +2026-02-19,Copilot SWE Agent,all,15751,,20260408T165316Z,2026-04-08T18:42:43.811252+00:00 +2026-02-19,Crush,all,0,,20260408T165316Z,2026-04-08T18:42:43.811252+00:00 +2026-02-19,Cursor,all,1388,,20260408T165316Z,2026-04-08T18:42:43.811252+00:00 +2026-02-19,DeepSource,all,4,,20260408T165316Z,2026-04-08T18:42:43.811252+00:00 +2026-02-19,Devin,all,104,,20260408T165316Z,2026-04-08T18:42:43.811252+00:00 +2026-02-19,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T18:42:43.811252+00:00 +2026-02-19,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T18:42:43.811252+00:00 +2026-02-19,Gru,all,0,,20260408T165316Z,2026-04-08T18:42:43.811252+00:00 +2026-02-19,Jules (Google),all,4601,,20260408T165316Z,2026-04-08T18:42:43.811252+00:00 +2026-02-19,Junie (JetBrains),all,1,,20260408T165316Z,2026-04-08T18:42:43.811252+00:00 +2026-02-19,Kilo Code,all,85,,20260408T165316Z,2026-04-08T18:42:43.811252+00:00 +2026-02-19,Lovable,all,4,,20260408T165316Z,2026-04-08T18:42:43.811252+00:00 +2026-02-19,OpenAI Codex,all,62,,20260408T165316Z,2026-04-08T18:42:43.811252+00:00 +2026-02-19,OpenCode,all,0,,20260408T165316Z,2026-04-08T18:42:43.811252+00:00 +2026-02-19,OpenHands,all,80,,20260408T165316Z,2026-04-08T18:42:43.811252+00:00 +2026-02-19,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T18:42:43.811252+00:00 +2026-02-19,Roo Code,all,1,,20260408T165316Z,2026-04-08T18:42:43.811252+00:00 +2026-02-19,Sketch,all,0,,20260408T165316Z,2026-04-08T18:42:43.811252+00:00 +2026-02-19,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T18:42:43.811252+00:00 +2026-02-19,Sweep AI,all,0,,20260408T165316Z,2026-04-08T18:42:43.811252+00:00 +2026-02-19,Warp (Oz Agent),all,4,,20260408T165316Z,2026-04-08T18:42:43.811252+00:00 +2026-02-20,Aider,all,9,,20260408T165316Z,2026-04-08T18:44:55.916906+00:00 +2026-02-20,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T18:44:55.916906+00:00 +2026-02-20,ChatGPT,all,34,,20260408T165316Z,2026-04-08T18:44:55.916906+00:00 +2026-02-20,Claude Code,all,22369,,20260408T165316Z,2026-04-08T18:44:55.916906+00:00 +2026-02-20,Cline,all,724,,20260408T165316Z,2026-04-08T18:44:55.916906+00:00 +2026-02-20,Codegen,all,25,,20260408T165316Z,2026-04-08T18:44:55.916906+00:00 +2026-02-20,Coderabbit,all,26,,20260408T165316Z,2026-04-08T18:44:55.916906+00:00 +2026-02-20,Copilot,all,224,,20260408T165316Z,2026-04-08T18:44:55.916906+00:00 +2026-02-20,Copilot SWE Agent,all,13406,,20260408T165316Z,2026-04-08T18:44:55.916906+00:00 +2026-02-20,Crush,all,0,,20260408T165316Z,2026-04-08T18:44:55.916906+00:00 +2026-02-20,Cursor,all,1319,,20260408T165316Z,2026-04-08T18:44:55.916906+00:00 +2026-02-20,DeepSource,all,6,,20260408T165316Z,2026-04-08T18:44:55.916906+00:00 +2026-02-20,Devin,all,96,1,20260408T165316Z,2026-04-08T18:44:55.916906+00:00 +2026-02-20,Gemini CLI,all,4,,20260408T165316Z,2026-04-08T18:44:55.916906+00:00 +2026-02-20,Gemini Code Assist,all,1,,20260408T165316Z,2026-04-08T18:44:55.916906+00:00 +2026-02-20,Gru,all,0,,20260408T165316Z,2026-04-08T18:44:55.916906+00:00 +2026-02-20,Jules (Google),all,4473,,20260408T165316Z,2026-04-08T18:44:55.916906+00:00 +2026-02-20,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T18:44:55.916906+00:00 +2026-02-20,Kilo Code,all,66,,20260408T165316Z,2026-04-08T18:44:55.916906+00:00 +2026-02-20,Lovable,all,4,,20260408T165316Z,2026-04-08T18:44:55.916906+00:00 +2026-02-20,OpenAI Codex,all,51,,20260408T165316Z,2026-04-08T18:44:55.916906+00:00 +2026-02-20,OpenCode,all,0,,20260408T165316Z,2026-04-08T18:44:55.916906+00:00 +2026-02-20,OpenHands,all,37,,20260408T165316Z,2026-04-08T18:44:55.916906+00:00 +2026-02-20,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T18:44:55.916906+00:00 +2026-02-20,Roo Code,all,9,,20260408T165316Z,2026-04-08T18:44:55.916906+00:00 +2026-02-20,Sketch,all,0,,20260408T165316Z,2026-04-08T18:44:55.916906+00:00 +2026-02-20,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T18:44:55.916906+00:00 +2026-02-20,Sweep AI,all,0,,20260408T165316Z,2026-04-08T18:44:55.916906+00:00 +2026-02-20,Warp (Oz Agent),all,2,,20260408T165316Z,2026-04-08T18:44:55.916906+00:00 +2026-02-21,Aider,all,11,,20260408T165316Z,2026-04-08T18:47:10.228016+00:00 +2026-02-21,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T18:47:10.228016+00:00 +2026-02-21,ChatGPT,all,24,,20260408T165316Z,2026-04-08T18:47:10.228016+00:00 +2026-02-21,Claude Code,all,22459,,20260408T165316Z,2026-04-08T18:47:10.228016+00:00 +2026-02-21,Cline,all,30,,20260408T165316Z,2026-04-08T18:47:10.228016+00:00 +2026-02-21,Codegen,all,40,,20260408T165316Z,2026-04-08T18:47:10.228016+00:00 +2026-02-21,Coderabbit,all,20,,20260408T165316Z,2026-04-08T18:47:10.228016+00:00 +2026-02-21,Copilot,all,298,,20260408T165316Z,2026-04-08T18:47:10.228016+00:00 +2026-02-21,Copilot SWE Agent,all,14194,,20260408T165316Z,2026-04-08T18:47:10.228016+00:00 +2026-02-21,Crush,all,0,,20260408T165316Z,2026-04-08T18:47:10.228016+00:00 +2026-02-21,Cursor,all,1153,,20260408T165316Z,2026-04-08T18:47:10.228016+00:00 +2026-02-21,DeepSource,all,29,,20260408T165316Z,2026-04-08T18:47:10.228016+00:00 +2026-02-21,Devin,all,39,,20260408T165316Z,2026-04-08T18:47:10.228016+00:00 +2026-02-21,Gemini CLI,all,10,,20260408T165316Z,2026-04-08T18:47:10.228016+00:00 +2026-02-21,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T18:47:10.228016+00:00 +2026-02-21,Gru,all,0,,20260408T165316Z,2026-04-08T18:47:10.228016+00:00 +2026-02-21,Jules (Google),all,4420,,20260408T165316Z,2026-04-08T18:47:10.228016+00:00 +2026-02-21,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T18:47:10.228016+00:00 +2026-02-21,Kilo Code,all,132,,20260408T165316Z,2026-04-08T18:47:10.228016+00:00 +2026-02-21,Lovable,all,12,,20260408T165316Z,2026-04-08T18:47:10.228016+00:00 +2026-02-21,OpenAI Codex,all,72,,20260408T165316Z,2026-04-08T18:47:10.228016+00:00 +2026-02-21,OpenCode,all,0,,20260408T165316Z,2026-04-08T18:47:10.228016+00:00 +2026-02-21,OpenHands,all,47,,20260408T165316Z,2026-04-08T18:47:10.228016+00:00 +2026-02-21,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T18:47:10.228016+00:00 +2026-02-21,Roo Code,all,8,,20260408T165316Z,2026-04-08T18:47:10.228016+00:00 +2026-02-21,Sketch,all,0,,20260408T165316Z,2026-04-08T18:47:10.228016+00:00 +2026-02-21,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T18:47:10.228016+00:00 +2026-02-21,Sweep AI,all,0,,20260408T165316Z,2026-04-08T18:47:10.228016+00:00 +2026-02-21,Warp (Oz Agent),all,2,,20260408T165316Z,2026-04-08T18:47:10.228016+00:00 +2026-02-22,Aider,all,41,,20260408T165316Z,2026-04-08T18:49:23.570335+00:00 +2026-02-22,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T18:49:23.570335+00:00 +2026-02-22,ChatGPT,all,15,,20260408T165316Z,2026-04-08T18:49:23.570335+00:00 +2026-02-22,Claude Code,all,22901,,20260408T165316Z,2026-04-08T18:49:23.570335+00:00 +2026-02-22,Cline,all,36,,20260408T165316Z,2026-04-08T18:49:23.570335+00:00 +2026-02-22,Codegen,all,25,,20260408T165316Z,2026-04-08T18:49:23.570335+00:00 +2026-02-22,Coderabbit,all,12,,20260408T165316Z,2026-04-08T18:49:23.570335+00:00 +2026-02-22,Copilot,all,319,,20260408T165316Z,2026-04-08T18:49:23.570335+00:00 +2026-02-22,Copilot SWE Agent,all,14548,,20260408T165316Z,2026-04-08T18:49:23.570335+00:00 +2026-02-22,Crush,all,0,,20260408T165316Z,2026-04-08T18:49:23.570335+00:00 +2026-02-22,Cursor,all,1317,,20260408T165316Z,2026-04-08T18:49:23.570335+00:00 +2026-02-22,DeepSource,all,31,,20260408T165316Z,2026-04-08T18:49:23.570335+00:00 +2026-02-22,Devin,all,65,,20260408T165316Z,2026-04-08T18:49:23.570335+00:00 +2026-02-22,Gemini CLI,all,10,,20260408T165316Z,2026-04-08T18:49:23.570335+00:00 +2026-02-22,Gemini Code Assist,all,1,,20260408T165316Z,2026-04-08T18:49:23.570335+00:00 +2026-02-22,Gru,all,0,,20260408T165316Z,2026-04-08T18:49:23.570335+00:00 +2026-02-22,Jules (Google),all,4754,,20260408T165316Z,2026-04-08T18:49:23.570335+00:00 +2026-02-22,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T18:49:23.570335+00:00 +2026-02-22,Kilo Code,all,217,,20260408T165316Z,2026-04-08T18:49:23.570335+00:00 +2026-02-22,Lovable,all,0,,20260408T165316Z,2026-04-08T18:49:23.570335+00:00 +2026-02-22,OpenAI Codex,all,79,,20260408T165316Z,2026-04-08T18:49:23.570335+00:00 +2026-02-22,OpenCode,all,0,,20260408T165316Z,2026-04-08T18:49:23.570335+00:00 +2026-02-22,OpenHands,all,33,,20260408T165316Z,2026-04-08T18:49:23.570335+00:00 +2026-02-22,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T18:49:23.570335+00:00 +2026-02-22,Roo Code,all,4,,20260408T165316Z,2026-04-08T18:49:23.570335+00:00 +2026-02-22,Sketch,all,0,,20260408T165316Z,2026-04-08T18:49:23.570335+00:00 +2026-02-22,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T18:49:23.570335+00:00 +2026-02-22,Sweep AI,all,0,,20260408T165316Z,2026-04-08T18:49:23.570335+00:00 +2026-02-22,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T18:49:23.570335+00:00 +2026-02-23,Aider,all,40,,20260408T165316Z,2026-04-08T18:51:35.424452+00:00 +2026-02-23,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T18:51:35.424452+00:00 +2026-02-23,ChatGPT,all,1,,20260408T165316Z,2026-04-08T18:51:35.424452+00:00 +2026-02-23,Claude Code,all,18086,,20260408T165316Z,2026-04-08T18:51:35.424452+00:00 +2026-02-23,Cline,all,95,,20260408T165316Z,2026-04-08T18:51:35.424452+00:00 +2026-02-23,Codegen,all,65,,20260408T165316Z,2026-04-08T18:51:35.424452+00:00 +2026-02-23,Coderabbit,all,15,,20260408T165316Z,2026-04-08T18:51:35.424452+00:00 +2026-02-23,Copilot,all,191,,20260408T165316Z,2026-04-08T18:51:35.424452+00:00 +2026-02-23,Copilot SWE Agent,all,15132,,20260408T165316Z,2026-04-08T18:51:35.424452+00:00 +2026-02-23,Crush,all,0,,20260408T165316Z,2026-04-08T18:51:35.424452+00:00 +2026-02-23,Cursor,all,1348,,20260408T165316Z,2026-04-08T18:51:35.424452+00:00 +2026-02-23,DeepSource,all,11,,20260408T165316Z,2026-04-08T18:51:35.424452+00:00 +2026-02-23,Devin,all,110,,20260408T165316Z,2026-04-08T18:51:35.424452+00:00 +2026-02-23,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T18:51:35.424452+00:00 +2026-02-23,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T18:51:35.424452+00:00 +2026-02-23,Gru,all,0,1,20260408T165316Z,2026-04-08T18:51:35.424452+00:00 +2026-02-23,Jules (Google),all,4698,,20260408T165316Z,2026-04-08T18:51:35.424452+00:00 +2026-02-23,Junie (JetBrains),all,6,,20260408T165316Z,2026-04-08T18:51:35.424452+00:00 +2026-02-23,Kilo Code,all,126,,20260408T165316Z,2026-04-08T18:51:35.424452+00:00 +2026-02-23,Lovable,all,4,,20260408T165316Z,2026-04-08T18:51:35.424452+00:00 +2026-02-23,OpenAI Codex,all,44,,20260408T165316Z,2026-04-08T18:51:35.424452+00:00 +2026-02-23,OpenCode,all,0,,20260408T165316Z,2026-04-08T18:51:35.424452+00:00 +2026-02-23,OpenHands,all,36,,20260408T165316Z,2026-04-08T18:51:35.424452+00:00 +2026-02-23,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T18:51:35.424452+00:00 +2026-02-23,Roo Code,all,20,,20260408T165316Z,2026-04-08T18:51:35.424452+00:00 +2026-02-23,Sketch,all,0,,20260408T165316Z,2026-04-08T18:51:35.424452+00:00 +2026-02-23,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T18:51:35.424452+00:00 +2026-02-23,Sweep AI,all,0,,20260408T165316Z,2026-04-08T18:51:35.424452+00:00 +2026-02-23,Warp (Oz Agent),all,2,,20260408T165316Z,2026-04-08T18:51:35.424452+00:00 +2026-02-24,Aider,all,31,,20260408T165316Z,2026-04-08T18:53:47.435161+00:00 +2026-02-24,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T18:53:47.435161+00:00 +2026-02-24,ChatGPT,all,1,,20260408T165316Z,2026-04-08T18:53:47.435161+00:00 +2026-02-24,Claude Code,all,23241,,20260408T165316Z,2026-04-08T18:53:47.435161+00:00 +2026-02-24,Cline,all,48,,20260408T165316Z,2026-04-08T18:53:47.435161+00:00 +2026-02-24,Codegen,all,30,,20260408T165316Z,2026-04-08T18:53:47.435161+00:00 +2026-02-24,Coderabbit,all,21,,20260408T165316Z,2026-04-08T18:53:47.435161+00:00 +2026-02-24,Copilot,all,207,,20260408T165316Z,2026-04-08T18:53:47.435161+00:00 +2026-02-24,Copilot SWE Agent,all,15889,,20260408T165316Z,2026-04-08T18:53:47.435161+00:00 +2026-02-24,Crush,all,3,,20260408T165316Z,2026-04-08T18:53:47.435161+00:00 +2026-02-24,Cursor,all,1518,,20260408T165316Z,2026-04-08T18:53:47.435161+00:00 +2026-02-24,DeepSource,all,45,,20260408T165316Z,2026-04-08T18:53:47.435161+00:00 +2026-02-24,Devin,all,66,1,20260408T165316Z,2026-04-08T18:53:47.435161+00:00 +2026-02-24,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T18:53:47.435161+00:00 +2026-02-24,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T18:53:47.435161+00:00 +2026-02-24,Gru,all,0,,20260408T165316Z,2026-04-08T18:53:47.435161+00:00 +2026-02-24,Jules (Google),all,4947,,20260408T165316Z,2026-04-08T18:53:47.435161+00:00 +2026-02-24,Junie (JetBrains),all,21,,20260408T165316Z,2026-04-08T18:53:47.435161+00:00 +2026-02-24,Kilo Code,all,176,,20260408T165316Z,2026-04-08T18:53:47.435161+00:00 +2026-02-24,Lovable,all,2,,20260408T165316Z,2026-04-08T18:53:47.435161+00:00 +2026-02-24,OpenAI Codex,all,88,,20260408T165316Z,2026-04-08T18:53:47.435161+00:00 +2026-02-24,OpenCode,all,0,,20260408T165316Z,2026-04-08T18:53:47.435161+00:00 +2026-02-24,OpenHands,all,20,1,20260408T165316Z,2026-04-08T18:53:47.435161+00:00 +2026-02-24,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T18:53:47.435161+00:00 +2026-02-24,Roo Code,all,102,,20260408T165316Z,2026-04-08T18:53:47.435161+00:00 +2026-02-24,Sketch,all,0,,20260408T165316Z,2026-04-08T18:53:47.435161+00:00 +2026-02-24,Sourcery AI,all,0,1,20260408T165316Z,2026-04-08T18:53:47.435161+00:00 +2026-02-24,Sweep AI,all,0,,20260408T165316Z,2026-04-08T18:53:47.435161+00:00 +2026-02-24,Warp (Oz Agent),all,5,,20260408T165316Z,2026-04-08T18:53:47.435161+00:00 +2026-02-25,Aider,all,6,,20260408T165316Z,2026-04-08T18:58:00.661074+00:00 +2026-02-25,Amp (Sourcegraph),all,2,,20260408T165316Z,2026-04-08T18:58:00.661074+00:00 +2026-02-25,ChatGPT,all,0,,20260408T165316Z,2026-04-08T18:58:00.661074+00:00 +2026-02-25,Claude Code,all,22976,,20260408T165316Z,2026-04-08T18:58:00.661074+00:00 +2026-02-25,Cline,all,91,,20260408T165316Z,2026-04-08T18:58:00.661074+00:00 +2026-02-25,Codegen,all,7,,20260408T165316Z,2026-04-08T18:58:00.661074+00:00 +2026-02-25,Coderabbit,all,20,,20260408T165316Z,2026-04-08T18:58:00.661074+00:00 +2026-02-25,Copilot,all,321,,20260408T165316Z,2026-04-08T18:58:00.661074+00:00 +2026-02-25,Copilot SWE Agent,all,14555,1,20260408T165316Z,2026-04-08T18:58:00.661074+00:00 +2026-02-25,Crush,all,0,,20260408T165316Z,2026-04-08T18:58:00.661074+00:00 +2026-02-25,Cursor,all,3561,,20260408T165316Z,2026-04-08T18:58:00.661074+00:00 +2026-02-25,DeepSource,all,26,,20260408T165316Z,2026-04-08T18:58:00.661074+00:00 +2026-02-25,Devin,all,79,,20260408T165316Z,2026-04-08T18:58:00.661074+00:00 +2026-02-25,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T18:58:00.661074+00:00 +2026-02-25,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T18:58:00.661074+00:00 +2026-02-25,Gru,all,0,,20260408T165316Z,2026-04-08T18:58:00.661074+00:00 +2026-02-25,Jules (Google),all,5075,,20260408T165316Z,2026-04-08T18:58:00.661074+00:00 +2026-02-25,Junie (JetBrains),all,14,,20260408T165316Z,2026-04-08T18:58:00.661074+00:00 +2026-02-25,Kilo Code,all,174,,20260408T165316Z,2026-04-08T18:58:00.661074+00:00 +2026-02-25,Lovable,all,0,,20260408T165316Z,2026-04-08T18:58:00.661074+00:00 +2026-02-25,OpenAI Codex,all,177,,20260408T165316Z,2026-04-08T18:58:00.661074+00:00 +2026-02-25,OpenCode,all,0,,20260408T165316Z,2026-04-08T18:58:00.661074+00:00 +2026-02-25,OpenHands,all,63,,20260408T165316Z,2026-04-08T18:58:00.661074+00:00 +2026-02-25,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T18:58:00.661074+00:00 +2026-02-25,Roo Code,all,83,,20260408T165316Z,2026-04-08T18:58:00.661074+00:00 +2026-02-25,Sketch,all,0,,20260408T165316Z,2026-04-08T18:58:00.661074+00:00 +2026-02-25,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T18:58:00.661074+00:00 +2026-02-25,Sweep AI,all,0,,20260408T165316Z,2026-04-08T18:58:00.661074+00:00 +2026-02-25,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T18:58:00.661074+00:00 +2026-02-26,Aider,all,0,,20260408T165316Z,2026-04-08T19:00:13.116741+00:00 +2026-02-26,Amp (Sourcegraph),all,8,,20260408T165316Z,2026-04-08T19:00:13.116741+00:00 +2026-02-26,ChatGPT,all,13,,20260408T165316Z,2026-04-08T19:00:13.116741+00:00 +2026-02-26,Claude Code,all,24339,,20260408T165316Z,2026-04-08T19:00:13.116741+00:00 +2026-02-26,Cline,all,110,,20260408T165316Z,2026-04-08T19:00:13.116741+00:00 +2026-02-26,Codegen,all,20,,20260408T165316Z,2026-04-08T19:00:13.116741+00:00 +2026-02-26,Coderabbit,all,29,,20260408T165316Z,2026-04-08T19:00:13.116741+00:00 +2026-02-26,Copilot,all,355,1,20260408T165316Z,2026-04-08T19:00:13.116741+00:00 +2026-02-26,Copilot SWE Agent,all,14181,,20260408T165316Z,2026-04-08T19:00:13.116741+00:00 +2026-02-26,Crush,all,1,,20260408T165316Z,2026-04-08T19:00:13.116741+00:00 +2026-02-26,Cursor,all,3116,,20260408T165316Z,2026-04-08T19:00:13.116741+00:00 +2026-02-26,DeepSource,all,2,,20260408T165316Z,2026-04-08T19:00:13.116741+00:00 +2026-02-26,Devin,all,66,,20260408T165316Z,2026-04-08T19:00:13.116741+00:00 +2026-02-26,Gemini CLI,all,17,,20260408T165316Z,2026-04-08T19:00:13.116741+00:00 +2026-02-26,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T19:00:13.116741+00:00 +2026-02-26,Gru,all,0,,20260408T165316Z,2026-04-08T19:00:13.116741+00:00 +2026-02-26,Jules (Google),all,5042,,20260408T165316Z,2026-04-08T19:00:13.116741+00:00 +2026-02-26,Junie (JetBrains),all,7,,20260408T165316Z,2026-04-08T19:00:13.116741+00:00 +2026-02-26,Kilo Code,all,150,,20260408T165316Z,2026-04-08T19:00:13.116741+00:00 +2026-02-26,Lovable,all,1,,20260408T165316Z,2026-04-08T19:00:13.116741+00:00 +2026-02-26,OpenAI Codex,all,73,,20260408T165316Z,2026-04-08T19:00:13.116741+00:00 +2026-02-26,OpenCode,all,0,,20260408T165316Z,2026-04-08T19:00:13.116741+00:00 +2026-02-26,OpenHands,all,33,,20260408T165316Z,2026-04-08T19:00:13.116741+00:00 +2026-02-26,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T19:00:13.116741+00:00 +2026-02-26,Roo Code,all,5,,20260408T165316Z,2026-04-08T19:00:13.116741+00:00 +2026-02-26,Sketch,all,0,,20260408T165316Z,2026-04-08T19:00:13.116741+00:00 +2026-02-26,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T19:00:13.116741+00:00 +2026-02-26,Sweep AI,all,0,,20260408T165316Z,2026-04-08T19:00:13.116741+00:00 +2026-02-26,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T19:00:13.116741+00:00 +2026-02-27,Aider,all,24,,20260408T165316Z,2026-04-08T19:02:25.436261+00:00 +2026-02-27,Amp (Sourcegraph),all,3,,20260408T165316Z,2026-04-08T19:02:25.436261+00:00 +2026-02-27,ChatGPT,all,19,,20260408T165316Z,2026-04-08T19:02:25.436261+00:00 +2026-02-27,Claude Code,all,24300,,20260408T165316Z,2026-04-08T19:02:25.436261+00:00 +2026-02-27,Cline,all,21,,20260408T165316Z,2026-04-08T19:02:25.436261+00:00 +2026-02-27,Codegen,all,35,,20260408T165316Z,2026-04-08T19:02:25.436261+00:00 +2026-02-27,Coderabbit,all,13,,20260408T165316Z,2026-04-08T19:02:25.436261+00:00 +2026-02-27,Copilot,all,297,,20260408T165316Z,2026-04-08T19:02:25.436261+00:00 +2026-02-27,Copilot SWE Agent,all,15008,,20260408T165316Z,2026-04-08T19:02:25.436261+00:00 +2026-02-27,Crush,all,0,,20260408T165316Z,2026-04-08T19:02:25.436261+00:00 +2026-02-27,Cursor,all,2123,,20260408T165316Z,2026-04-08T19:02:25.436261+00:00 +2026-02-27,DeepSource,all,6,,20260408T165316Z,2026-04-08T19:02:25.436261+00:00 +2026-02-27,Devin,all,49,,20260408T165316Z,2026-04-08T19:02:25.436261+00:00 +2026-02-27,Gemini CLI,all,8,,20260408T165316Z,2026-04-08T19:02:25.436261+00:00 +2026-02-27,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T19:02:25.436261+00:00 +2026-02-27,Gru,all,0,,20260408T165316Z,2026-04-08T19:02:25.436261+00:00 +2026-02-27,Jules (Google),all,4742,,20260408T165316Z,2026-04-08T19:02:25.436261+00:00 +2026-02-27,Junie (JetBrains),all,11,,20260408T165316Z,2026-04-08T19:02:25.436261+00:00 +2026-02-27,Kilo Code,all,292,,20260408T165316Z,2026-04-08T19:02:25.436261+00:00 +2026-02-27,Lovable,all,0,1,20260408T165316Z,2026-04-08T19:02:25.436261+00:00 +2026-02-27,OpenAI Codex,all,84,,20260408T165316Z,2026-04-08T19:02:25.436261+00:00 +2026-02-27,OpenCode,all,0,,20260408T165316Z,2026-04-08T19:02:25.436261+00:00 +2026-02-27,OpenHands,all,38,,20260408T165316Z,2026-04-08T19:02:25.436261+00:00 +2026-02-27,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T19:02:25.436261+00:00 +2026-02-27,Roo Code,all,46,,20260408T165316Z,2026-04-08T19:02:25.436261+00:00 +2026-02-27,Sketch,all,0,,20260408T165316Z,2026-04-08T19:02:25.436261+00:00 +2026-02-27,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T19:02:25.436261+00:00 +2026-02-27,Sweep AI,all,0,,20260408T165316Z,2026-04-08T19:02:25.436261+00:00 +2026-02-27,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T19:02:25.436261+00:00 +2026-02-28,Aider,all,43,,20260408T165316Z,2026-04-08T19:04:37.467003+00:00 +2026-02-28,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T19:04:37.467003+00:00 +2026-02-28,ChatGPT,all,21,,20260408T165316Z,2026-04-08T19:04:37.467003+00:00 +2026-02-28,Claude Code,all,24520,,20260408T165316Z,2026-04-08T19:04:37.467003+00:00 +2026-02-28,Cline,all,24,,20260408T165316Z,2026-04-08T19:04:37.467003+00:00 +2026-02-28,Codegen,all,19,,20260408T165316Z,2026-04-08T19:04:37.467003+00:00 +2026-02-28,Coderabbit,all,37,,20260408T165316Z,2026-04-08T19:04:37.467003+00:00 +2026-02-28,Copilot,all,214,,20260408T165316Z,2026-04-08T19:04:37.467003+00:00 +2026-02-28,Copilot SWE Agent,all,16476,1,20260408T165316Z,2026-04-08T19:04:37.467003+00:00 +2026-02-28,Crush,all,0,,20260408T165316Z,2026-04-08T19:04:37.467003+00:00 +2026-02-28,Cursor,all,2002,1,20260408T165316Z,2026-04-08T19:04:37.467003+00:00 +2026-02-28,DeepSource,all,3,,20260408T165316Z,2026-04-08T19:04:37.467003+00:00 +2026-02-28,Devin,all,133,,20260408T165316Z,2026-04-08T19:04:37.467003+00:00 +2026-02-28,Gemini CLI,all,6,,20260408T165316Z,2026-04-08T19:04:37.467003+00:00 +2026-02-28,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T19:04:37.467003+00:00 +2026-02-28,Gru,all,0,,20260408T165316Z,2026-04-08T19:04:37.467003+00:00 +2026-02-28,Jules (Google),all,3718,,20260408T165316Z,2026-04-08T19:04:37.467003+00:00 +2026-02-28,Junie (JetBrains),all,0,,20260408T165316Z,2026-04-08T19:04:37.467003+00:00 +2026-02-28,Kilo Code,all,233,,20260408T165316Z,2026-04-08T19:04:37.467003+00:00 +2026-02-28,Lovable,all,5,,20260408T165316Z,2026-04-08T19:04:37.467003+00:00 +2026-02-28,OpenAI Codex,all,133,,20260408T165316Z,2026-04-08T19:04:37.467003+00:00 +2026-02-28,OpenCode,all,7,,20260408T165316Z,2026-04-08T19:04:37.467003+00:00 +2026-02-28,OpenHands,all,57,,20260408T165316Z,2026-04-08T19:04:37.467003+00:00 +2026-02-28,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T19:04:37.467003+00:00 +2026-02-28,Roo Code,all,40,,20260408T165316Z,2026-04-08T19:04:37.467003+00:00 +2026-02-28,Sketch,all,0,,20260408T165316Z,2026-04-08T19:04:37.467003+00:00 +2026-02-28,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T19:04:37.467003+00:00 +2026-02-28,Sweep AI,all,0,,20260408T165316Z,2026-04-08T19:04:37.467003+00:00 +2026-02-28,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T19:04:37.467003+00:00 +2026-03-01,Aider,all,32,,20260331T142611Z,2026-03-31T14:26:11.327873+00:00 +2026-03-01,Amp (Sourcegraph),all,0,,20260331T142611Z,2026-03-31T14:26:11.327873+00:00 +2026-03-01,ChatGPT,all,3,,20260331T142611Z,2026-03-31T14:26:11.327873+00:00 +2026-03-01,Claude Code,all,24708,,20260331T142611Z,2026-03-31T14:26:11.327873+00:00 +2026-03-01,Cline,all,14,,20260331T142611Z,2026-03-31T14:26:11.327873+00:00 +2026-03-01,Codegen,all,16,,20260331T142611Z,2026-03-31T14:26:11.327873+00:00 +2026-03-01,Coderabbit,all,25,,20260331T142611Z,2026-03-31T14:26:11.327873+00:00 +2026-03-01,Copilot,all,145,,20260331T142611Z,2026-03-31T14:26:11.327873+00:00 +2026-03-01,Copilot SWE Agent,all,17199,1,20260331T142611Z,2026-03-31T14:26:11.327873+00:00 +2026-03-01,Crush,all,0,,20260331T142611Z,2026-03-31T14:26:11.327873+00:00 +2026-03-01,Cursor,all,1410,,20260331T142611Z,2026-03-31T14:26:11.327873+00:00 +2026-03-01,DeepSource,all,0,,20260331T142611Z,2026-03-31T14:26:11.327873+00:00 +2026-03-01,Devin,all,50,1,20260331T142611Z,2026-03-31T14:26:11.327873+00:00 +2026-03-01,Gemini CLI,all,0,,20260331T142611Z,2026-03-31T14:26:11.327873+00:00 +2026-03-01,Gemini Code Assist,all,1,,20260331T142611Z,2026-03-31T14:26:11.327873+00:00 +2026-03-01,Gru,all,0,,20260331T142611Z,2026-03-31T14:26:11.327873+00:00 +2026-03-01,Jules (Google),all,3464,1,20260331T142611Z,2026-03-31T14:26:11.327873+00:00 +2026-03-01,Junie (JetBrains),all,0,,20260331T142611Z,2026-03-31T14:26:11.327873+00:00 +2026-03-01,Kilo Code,all,301,,20260331T142611Z,2026-03-31T14:26:11.327873+00:00 +2026-03-01,Lovable,all,1,1,20260331T142611Z,2026-03-31T14:26:11.327873+00:00 +2026-03-01,OpenAI Codex,all,54,,20260331T142611Z,2026-03-31T14:26:11.327873+00:00 +2026-03-01,OpenCode,all,0,,20260331T142611Z,2026-03-31T14:26:11.327873+00:00 +2026-03-01,OpenHands,all,91,,20260331T142611Z,2026-03-31T14:26:11.327873+00:00 +2026-03-01,Qwen Coder,all,0,,20260331T142611Z,2026-03-31T14:26:11.327873+00:00 +2026-03-01,Roo Code,all,17,,20260331T142611Z,2026-03-31T14:26:11.327873+00:00 +2026-03-01,Sketch,all,0,,20260331T142611Z,2026-03-31T14:26:11.327873+00:00 +2026-03-01,Sourcery AI,all,0,,20260331T142611Z,2026-03-31T14:26:11.327873+00:00 +2026-03-01,Sweep AI,all,0,,20260331T142611Z,2026-03-31T14:26:11.327873+00:00 +2026-03-01,Warp (Oz Agent),all,0,,20260331T142611Z,2026-03-31T14:26:11.327873+00:00 +2026-03-02,Aider,all,6,,20260331T142611Z,2026-03-31T14:30:25.251565+00:00 +2026-03-02,Amp (Sourcegraph),all,0,,20260331T142611Z,2026-03-31T14:30:25.251565+00:00 +2026-03-02,ChatGPT,all,4,,20260331T142611Z,2026-03-31T14:30:25.251565+00:00 +2026-03-02,Claude Code,all,18822,,20260331T142611Z,2026-03-31T14:30:25.251565+00:00 +2026-03-02,Cline,all,29,,20260331T142611Z,2026-03-31T14:30:25.251565+00:00 +2026-03-02,Codegen,all,3,,20260331T142611Z,2026-03-31T14:30:25.251565+00:00 +2026-03-02,Coderabbit,all,13,,20260331T142611Z,2026-03-31T14:30:25.251565+00:00 +2026-03-02,Copilot,all,289,1,20260331T142611Z,2026-03-31T14:30:25.251565+00:00 +2026-03-02,Copilot SWE Agent,all,17386,1,20260331T142611Z,2026-03-31T14:30:25.251565+00:00 +2026-03-02,Crush,all,0,,20260331T142611Z,2026-03-31T14:30:25.251565+00:00 +2026-03-02,Cursor,all,1460,,20260331T142611Z,2026-03-31T14:30:25.251565+00:00 +2026-03-02,DeepSource,all,7,,20260331T142611Z,2026-03-31T14:30:25.251565+00:00 +2026-03-02,Devin,all,54,1,20260331T142611Z,2026-03-31T14:30:25.251565+00:00 +2026-03-02,Gemini CLI,all,0,,20260331T142611Z,2026-03-31T14:30:25.251565+00:00 +2026-03-02,Gemini Code Assist,all,0,,20260331T142611Z,2026-03-31T14:30:25.251565+00:00 +2026-03-02,Gru,all,0,,20260331T142611Z,2026-03-31T14:30:25.251565+00:00 +2026-03-02,Jules (Google),all,3454,,20260331T142611Z,2026-03-31T14:30:25.251565+00:00 +2026-03-02,Junie (JetBrains),all,0,,20260331T142611Z,2026-03-31T14:30:25.251565+00:00 +2026-03-02,Kilo Code,all,113,,20260331T142611Z,2026-03-31T14:30:25.251565+00:00 +2026-03-02,Lovable,all,1,,20260331T142611Z,2026-03-31T14:30:25.251565+00:00 +2026-03-02,OpenAI Codex,all,138,,20260331T142611Z,2026-03-31T14:30:25.251565+00:00 +2026-03-02,OpenCode,all,0,,20260331T142611Z,2026-03-31T14:30:25.251565+00:00 +2026-03-02,OpenHands,all,134,,20260331T142611Z,2026-03-31T14:30:25.251565+00:00 +2026-03-02,Qwen Coder,all,0,,20260331T142611Z,2026-03-31T14:30:25.251565+00:00 +2026-03-02,Roo Code,all,42,,20260331T142611Z,2026-03-31T14:30:25.251565+00:00 +2026-03-02,Sketch,all,0,,20260331T142611Z,2026-03-31T14:30:25.251565+00:00 +2026-03-02,Sourcery AI,all,0,,20260331T142611Z,2026-03-31T14:30:25.251565+00:00 +2026-03-02,Sweep AI,all,0,,20260331T142611Z,2026-03-31T14:30:25.251565+00:00 +2026-03-02,Warp (Oz Agent),all,0,,20260331T142611Z,2026-03-31T14:30:25.251565+00:00 +2026-03-03,Aider,all,2,,20260331T142611Z,2026-03-31T14:33:38.265901+00:00 +2026-03-03,Amp (Sourcegraph),all,0,,20260331T142611Z,2026-03-31T14:33:38.265901+00:00 +2026-03-03,ChatGPT,all,7,,20260331T142611Z,2026-03-31T14:33:38.265901+00:00 +2026-03-03,Claude Code,all,21297,,20260331T142611Z,2026-03-31T14:33:38.265901+00:00 +2026-03-03,Cline,all,34,,20260331T142611Z,2026-03-31T14:33:38.265901+00:00 +2026-03-03,Codegen,all,11,,20260331T142611Z,2026-03-31T14:33:38.265901+00:00 +2026-03-03,Coderabbit,all,9,,20260331T142611Z,2026-03-31T14:33:38.265901+00:00 +2026-03-03,Copilot,all,252,1,20260331T142611Z,2026-03-31T14:33:38.265901+00:00 +2026-03-03,Copilot SWE Agent,all,17448,1,20260331T142611Z,2026-03-31T14:33:38.265901+00:00 +2026-03-03,Crush,all,0,,20260331T142611Z,2026-03-31T14:33:38.265901+00:00 +2026-03-03,Cursor,all,1470,,20260331T142611Z,2026-03-31T14:33:38.265901+00:00 +2026-03-03,DeepSource,all,3,,20260331T142611Z,2026-03-31T14:33:38.265901+00:00 +2026-03-03,Devin,all,106,,20260331T142611Z,2026-03-31T14:33:38.265901+00:00 +2026-03-03,Gemini CLI,all,48,,20260331T142611Z,2026-03-31T14:33:38.265901+00:00 +2026-03-03,Gemini Code Assist,all,0,,20260331T142611Z,2026-03-31T14:33:38.265901+00:00 +2026-03-03,Gru,all,0,,20260331T142611Z,2026-03-31T14:33:38.265901+00:00 +2026-03-03,Jules (Google),all,3646,,20260331T142611Z,2026-03-31T14:33:38.265901+00:00 +2026-03-03,Junie (JetBrains),all,0,,20260331T142611Z,2026-03-31T14:33:38.265901+00:00 +2026-03-03,Kilo Code,all,252,,20260331T142611Z,2026-03-31T14:33:38.265901+00:00 +2026-03-03,Lovable,all,0,,20260331T142611Z,2026-03-31T14:33:38.265901+00:00 +2026-03-03,OpenAI Codex,all,127,,20260331T142611Z,2026-03-31T14:33:38.265901+00:00 +2026-03-03,OpenCode,all,0,,20260331T142611Z,2026-03-31T14:33:38.265901+00:00 +2026-03-03,OpenHands,all,156,,20260331T142611Z,2026-03-31T14:33:38.265901+00:00 +2026-03-03,Qwen Coder,all,0,,20260331T142611Z,2026-03-31T14:33:38.265901+00:00 +2026-03-03,Roo Code,all,35,,20260331T142611Z,2026-03-31T14:33:38.265901+00:00 +2026-03-03,Sketch,all,0,,20260331T142611Z,2026-03-31T14:33:38.265901+00:00 +2026-03-03,Sourcery AI,all,0,,20260331T142611Z,2026-03-31T14:33:38.265901+00:00 +2026-03-03,Sweep AI,all,0,,20260331T142611Z,2026-03-31T14:33:38.265901+00:00 +2026-03-03,Warp (Oz Agent),all,0,,20260331T142611Z,2026-03-31T14:33:38.265901+00:00 +2026-03-04,Aider,all,1,,20260331T142611Z,2026-03-31T14:36:51.884057+00:00 +2026-03-04,Amp (Sourcegraph),all,1,,20260331T142611Z,2026-03-31T14:36:51.884057+00:00 +2026-03-04,ChatGPT,all,2,,20260331T142611Z,2026-03-31T14:36:51.884057+00:00 +2026-03-04,Claude Code,all,27170,,20260331T142611Z,2026-03-31T14:36:51.884057+00:00 +2026-03-04,Cline,all,18,,20260331T142611Z,2026-03-31T14:36:51.884057+00:00 +2026-03-04,Codegen,all,7,,20260331T142611Z,2026-03-31T14:36:51.884057+00:00 +2026-03-04,Coderabbit,all,31,,20260331T142611Z,2026-03-31T14:36:51.884057+00:00 +2026-03-04,Copilot,all,168,,20260331T142611Z,2026-03-31T14:36:51.884057+00:00 +2026-03-04,Copilot SWE Agent,all,16603,,20260331T142611Z,2026-03-31T14:36:51.884057+00:00 +2026-03-04,Crush,all,0,,20260331T142611Z,2026-03-31T14:36:51.884057+00:00 +2026-03-04,Cursor,all,1820,,20260331T142611Z,2026-03-31T14:36:51.884057+00:00 +2026-03-04,DeepSource,all,16,1,20260331T142611Z,2026-03-31T14:36:51.884057+00:00 +2026-03-04,Devin,all,118,,20260331T142611Z,2026-03-31T14:36:51.884057+00:00 +2026-03-04,Gemini CLI,all,17,,20260331T142611Z,2026-03-31T14:36:51.884057+00:00 +2026-03-04,Gemini Code Assist,all,0,1,20260331T142611Z,2026-03-31T14:36:51.884057+00:00 +2026-03-04,Gru,all,0,,20260331T142611Z,2026-03-31T14:36:51.884057+00:00 +2026-03-04,Jules (Google),all,3809,,20260331T142611Z,2026-03-31T14:36:51.884057+00:00 +2026-03-04,Junie (JetBrains),all,0,,20260331T142611Z,2026-03-31T14:36:51.884057+00:00 +2026-03-04,Kilo Code,all,152,,20260331T142611Z,2026-03-31T14:36:51.884057+00:00 +2026-03-04,Lovable,all,0,,20260331T142611Z,2026-03-31T14:36:51.884057+00:00 +2026-03-04,OpenAI Codex,all,40,,20260331T142611Z,2026-03-31T14:36:51.884057+00:00 +2026-03-04,OpenCode,all,0,,20260331T142611Z,2026-03-31T14:36:51.884057+00:00 +2026-03-04,OpenHands,all,156,,20260331T142611Z,2026-03-31T14:36:51.884057+00:00 +2026-03-04,Qwen Coder,all,0,1,20260331T142611Z,2026-03-31T14:36:51.884057+00:00 +2026-03-04,Roo Code,all,15,,20260331T142611Z,2026-03-31T14:36:51.884057+00:00 +2026-03-04,Sketch,all,0,,20260331T142611Z,2026-03-31T14:36:51.884057+00:00 +2026-03-04,Sourcery AI,all,0,,20260331T142611Z,2026-03-31T14:36:51.884057+00:00 +2026-03-04,Sweep AI,all,0,1,20260331T142611Z,2026-03-31T14:36:51.884057+00:00 +2026-03-04,Warp (Oz Agent),all,0,,20260331T142611Z,2026-03-31T14:36:51.884057+00:00 +2026-03-05,Aider,all,24,,20260331T142611Z,2026-03-31T14:41:07.643400+00:00 +2026-03-05,Amp (Sourcegraph),all,0,,20260331T142611Z,2026-03-31T14:41:07.643400+00:00 +2026-03-05,ChatGPT,all,11,,20260331T142611Z,2026-03-31T14:41:07.643400+00:00 +2026-03-05,Claude Code,all,27379,,20260331T142611Z,2026-03-31T14:41:07.643400+00:00 +2026-03-05,Cline,all,44,,20260331T142611Z,2026-03-31T14:41:07.643400+00:00 +2026-03-05,Codegen,all,17,,20260331T142611Z,2026-03-31T14:41:07.643400+00:00 +2026-03-05,Coderabbit,all,26,,20260331T142611Z,2026-03-31T14:41:07.643400+00:00 +2026-03-05,Copilot,all,210,,20260331T142611Z,2026-03-31T14:41:07.643400+00:00 +2026-03-05,Copilot SWE Agent,all,15796,1,20260331T142611Z,2026-03-31T14:41:07.643400+00:00 +2026-03-05,Crush,all,0,,20260331T142611Z,2026-03-31T14:41:07.643400+00:00 +2026-03-05,Cursor,all,1943,,20260331T142611Z,2026-03-31T14:41:07.643400+00:00 +2026-03-05,DeepSource,all,9,,20260331T142611Z,2026-03-31T14:41:07.643400+00:00 +2026-03-05,Devin,all,109,,20260331T142611Z,2026-03-31T14:41:07.643400+00:00 +2026-03-05,Gemini CLI,all,4,,20260331T142611Z,2026-03-31T14:41:07.643400+00:00 +2026-03-05,Gemini Code Assist,all,0,,20260331T142611Z,2026-03-31T14:41:07.643400+00:00 +2026-03-05,Gru,all,0,,20260331T142611Z,2026-03-31T14:41:07.643400+00:00 +2026-03-05,Jules (Google),all,3918,,20260331T142611Z,2026-03-31T14:41:07.643400+00:00 +2026-03-05,Junie (JetBrains),all,0,,20260331T142611Z,2026-03-31T14:41:07.643400+00:00 +2026-03-05,Kilo Code,all,151,,20260331T142611Z,2026-03-31T14:41:07.643400+00:00 +2026-03-05,Lovable,all,0,,20260331T142611Z,2026-03-31T14:41:07.643400+00:00 +2026-03-05,OpenAI Codex,all,57,,20260331T142611Z,2026-03-31T14:41:07.643400+00:00 +2026-03-05,OpenCode,all,1,,20260331T142611Z,2026-03-31T14:41:07.643400+00:00 +2026-03-05,OpenHands,all,192,,20260331T142611Z,2026-03-31T14:41:07.643400+00:00 +2026-03-05,Qwen Coder,all,0,,20260331T142611Z,2026-03-31T14:41:07.643400+00:00 +2026-03-05,Roo Code,all,0,,20260331T142611Z,2026-03-31T14:41:07.643400+00:00 +2026-03-05,Sketch,all,0,,20260331T142611Z,2026-03-31T14:41:07.643400+00:00 +2026-03-05,Sourcery AI,all,0,1,20260331T142611Z,2026-03-31T14:41:07.643400+00:00 +2026-03-05,Sweep AI,all,0,,20260331T142611Z,2026-03-31T14:41:07.643400+00:00 +2026-03-05,Warp (Oz Agent),all,0,,20260331T142611Z,2026-03-31T14:41:07.643400+00:00 +2026-03-06,Aider,all,15,,20260331T142611Z,2026-03-31T14:44:22.507620+00:00 +2026-03-06,Amp (Sourcegraph),all,0,,20260331T142611Z,2026-03-31T14:44:22.507620+00:00 +2026-03-06,ChatGPT,all,6,,20260331T142611Z,2026-03-31T14:44:22.507620+00:00 +2026-03-06,Claude Code,all,28983,,20260331T142611Z,2026-03-31T14:44:22.507620+00:00 +2026-03-06,Cline,all,38,,20260331T142611Z,2026-03-31T14:44:22.507620+00:00 +2026-03-06,Codegen,all,22,,20260331T142611Z,2026-03-31T14:44:22.507620+00:00 +2026-03-06,Coderabbit,all,11,,20260331T142611Z,2026-03-31T14:44:22.507620+00:00 +2026-03-06,Copilot,all,263,,20260331T142611Z,2026-03-31T14:44:22.507620+00:00 +2026-03-06,Copilot SWE Agent,all,16967,,20260331T142611Z,2026-03-31T14:44:22.507620+00:00 +2026-03-06,Crush,all,0,,20260331T142611Z,2026-03-31T14:44:22.507620+00:00 +2026-03-06,Cursor,all,1652,,20260331T142611Z,2026-03-31T14:44:22.507620+00:00 +2026-03-06,DeepSource,all,6,,20260331T142611Z,2026-03-31T14:44:22.507620+00:00 +2026-03-06,Devin,all,117,,20260331T142611Z,2026-03-31T14:44:22.507620+00:00 +2026-03-06,Gemini CLI,all,2,,20260331T142611Z,2026-03-31T14:44:22.507620+00:00 +2026-03-06,Gemini Code Assist,all,26,,20260331T142611Z,2026-03-31T14:44:22.507620+00:00 +2026-03-06,Gru,all,0,,20260331T142611Z,2026-03-31T14:44:22.507620+00:00 +2026-03-06,Jules (Google),all,3512,,20260331T142611Z,2026-03-31T14:44:22.507620+00:00 +2026-03-06,Junie (JetBrains),all,19,,20260331T142611Z,2026-03-31T14:44:22.507620+00:00 +2026-03-06,Kilo Code,all,176,,20260331T142611Z,2026-03-31T14:44:22.507620+00:00 +2026-03-06,Lovable,all,4,,20260331T142611Z,2026-03-31T14:44:22.507620+00:00 +2026-03-06,OpenAI Codex,all,70,,20260331T142611Z,2026-03-31T14:44:22.507620+00:00 +2026-03-06,OpenCode,all,0,,20260331T142611Z,2026-03-31T14:44:22.507620+00:00 +2026-03-06,OpenHands,all,321,,20260331T142611Z,2026-03-31T14:44:22.507620+00:00 +2026-03-06,Qwen Coder,all,0,,20260331T142611Z,2026-03-31T14:44:22.507620+00:00 +2026-03-06,Roo Code,all,66,,20260331T142611Z,2026-03-31T14:44:22.507620+00:00 +2026-03-06,Sketch,all,0,,20260331T142611Z,2026-03-31T14:44:22.507620+00:00 +2026-03-06,Sourcery AI,all,0,,20260331T142611Z,2026-03-31T14:44:22.507620+00:00 +2026-03-06,Sweep AI,all,0,,20260331T142611Z,2026-03-31T14:44:22.507620+00:00 +2026-03-06,Warp (Oz Agent),all,0,,20260331T142611Z,2026-03-31T14:44:22.507620+00:00 +2026-03-07,Aider,all,8,,20260331T142611Z,2026-03-31T14:46:35.601784+00:00 +2026-03-07,Amp (Sourcegraph),all,0,,20260331T142611Z,2026-03-31T14:46:35.601784+00:00 +2026-03-07,ChatGPT,all,27,,20260331T142611Z,2026-03-31T14:46:35.601784+00:00 +2026-03-07,Claude Code,all,30374,,20260331T142611Z,2026-03-31T14:46:35.601784+00:00 +2026-03-07,Cline,all,70,,20260331T142611Z,2026-03-31T14:46:35.601784+00:00 +2026-03-07,Codegen,all,0,,20260331T142611Z,2026-03-31T14:46:35.601784+00:00 +2026-03-07,Coderabbit,all,17,,20260331T142611Z,2026-03-31T14:46:35.601784+00:00 +2026-03-07,Copilot,all,264,,20260331T142611Z,2026-03-31T14:46:35.601784+00:00 +2026-03-07,Copilot SWE Agent,all,17612,,20260331T142611Z,2026-03-31T14:46:35.601784+00:00 +2026-03-07,Crush,all,0,,20260331T142611Z,2026-03-31T14:46:35.601784+00:00 +2026-03-07,Cursor,all,1587,,20260331T142611Z,2026-03-31T14:46:35.601784+00:00 +2026-03-07,DeepSource,all,18,,20260331T142611Z,2026-03-31T14:46:35.601784+00:00 +2026-03-07,Devin,all,88,,20260331T142611Z,2026-03-31T14:46:35.601784+00:00 +2026-03-07,Gemini CLI,all,5,,20260331T142611Z,2026-03-31T14:46:35.601784+00:00 +2026-03-07,Gemini Code Assist,all,10,,20260331T142611Z,2026-03-31T14:46:35.601784+00:00 +2026-03-07,Gru,all,0,,20260331T142611Z,2026-03-31T14:46:35.601784+00:00 +2026-03-07,Jules (Google),all,3713,,20260331T142611Z,2026-03-31T14:46:35.601784+00:00 +2026-03-07,Junie (JetBrains),all,6,,20260331T142611Z,2026-03-31T14:46:35.601784+00:00 +2026-03-07,Kilo Code,all,162,,20260331T142611Z,2026-03-31T14:46:35.601784+00:00 +2026-03-07,Lovable,all,1,,20260331T142611Z,2026-03-31T14:46:35.601784+00:00 +2026-03-07,OpenAI Codex,all,114,,20260331T142611Z,2026-03-31T14:46:35.601784+00:00 +2026-03-07,OpenCode,all,0,,20260331T142611Z,2026-03-31T14:46:35.601784+00:00 +2026-03-07,OpenHands,all,308,,20260331T142611Z,2026-03-31T14:46:35.601784+00:00 +2026-03-07,Qwen Coder,all,0,,20260331T142611Z,2026-03-31T14:46:35.601784+00:00 +2026-03-07,Roo Code,all,16,,20260331T142611Z,2026-03-31T14:46:35.601784+00:00 +2026-03-07,Sketch,all,0,,20260331T142611Z,2026-03-31T14:46:35.601784+00:00 +2026-03-07,Sourcery AI,all,0,,20260331T142611Z,2026-03-31T14:46:35.601784+00:00 +2026-03-07,Sweep AI,all,0,,20260331T142611Z,2026-03-31T14:46:35.601784+00:00 +2026-03-07,Warp (Oz Agent),all,0,,20260331T142611Z,2026-03-31T14:46:35.601784+00:00 +2026-03-08,Aider,all,11,,20260331T142611Z,2026-03-31T14:48:48.952878+00:00 +2026-03-08,Amp (Sourcegraph),all,0,,20260331T142611Z,2026-03-31T14:48:48.952878+00:00 +2026-03-08,ChatGPT,all,10,,20260331T142611Z,2026-03-31T14:48:48.952878+00:00 +2026-03-08,Claude Code,all,30648,,20260331T142611Z,2026-03-31T14:48:48.952878+00:00 +2026-03-08,Cline,all,42,,20260331T142611Z,2026-03-31T14:48:48.952878+00:00 +2026-03-08,Codegen,all,1,,20260331T142611Z,2026-03-31T14:48:48.952878+00:00 +2026-03-08,Coderabbit,all,15,,20260331T142611Z,2026-03-31T14:48:48.952878+00:00 +2026-03-08,Copilot,all,297,,20260331T142611Z,2026-03-31T14:48:48.952878+00:00 +2026-03-08,Copilot SWE Agent,all,16283,,20260331T142611Z,2026-03-31T14:48:48.952878+00:00 +2026-03-08,Crush,all,0,,20260331T142611Z,2026-03-31T14:48:48.952878+00:00 +2026-03-08,Cursor,all,1672,,20260331T142611Z,2026-03-31T14:48:48.952878+00:00 +2026-03-08,DeepSource,all,1,,20260331T142611Z,2026-03-31T14:48:48.952878+00:00 +2026-03-08,Devin,all,65,,20260331T142611Z,2026-03-31T14:48:48.952878+00:00 +2026-03-08,Gemini CLI,all,15,,20260331T142611Z,2026-03-31T14:48:48.952878+00:00 +2026-03-08,Gemini Code Assist,all,0,,20260331T142611Z,2026-03-31T14:48:48.952878+00:00 +2026-03-08,Gru,all,0,,20260331T142611Z,2026-03-31T14:48:48.952878+00:00 +2026-03-08,Jules (Google),all,3883,,20260331T142611Z,2026-03-31T14:48:48.952878+00:00 +2026-03-08,Junie (JetBrains),all,0,,20260331T142611Z,2026-03-31T14:48:48.952878+00:00 +2026-03-08,Kilo Code,all,190,,20260331T142611Z,2026-03-31T14:48:48.952878+00:00 +2026-03-08,Lovable,all,17,,20260331T142611Z,2026-03-31T14:48:48.952878+00:00 +2026-03-08,OpenAI Codex,all,261,,20260331T142611Z,2026-03-31T14:48:48.952878+00:00 +2026-03-08,OpenCode,all,0,,20260331T142611Z,2026-03-31T14:48:48.952878+00:00 +2026-03-08,OpenHands,all,169,,20260331T142611Z,2026-03-31T14:48:48.952878+00:00 +2026-03-08,Qwen Coder,all,0,,20260331T142611Z,2026-03-31T14:48:48.952878+00:00 +2026-03-08,Roo Code,all,33,,20260331T142611Z,2026-03-31T14:48:48.952878+00:00 +2026-03-08,Sketch,all,0,,20260331T142611Z,2026-03-31T14:48:48.952878+00:00 +2026-03-08,Sourcery AI,all,0,,20260331T142611Z,2026-03-31T14:48:48.952878+00:00 +2026-03-08,Sweep AI,all,0,,20260331T142611Z,2026-03-31T14:48:48.952878+00:00 +2026-03-08,Warp (Oz Agent),all,0,,20260331T142611Z,2026-03-31T14:48:48.952878+00:00 +2026-03-09,Aider,all,16,,20260331T142611Z,2026-03-31T14:51:03.305951+00:00 +2026-03-09,Amp (Sourcegraph),all,0,,20260331T142611Z,2026-03-31T14:51:03.305951+00:00 +2026-03-09,ChatGPT,all,20,,20260331T142611Z,2026-03-31T14:51:03.305951+00:00 +2026-03-09,Claude Code,all,33223,,20260331T142611Z,2026-03-31T14:51:03.305951+00:00 +2026-03-09,Cline,all,41,,20260331T142611Z,2026-03-31T14:51:03.305951+00:00 +2026-03-09,Codegen,all,36,,20260331T142611Z,2026-03-31T14:51:03.305951+00:00 +2026-03-09,Coderabbit,all,23,,20260331T142611Z,2026-03-31T14:51:03.305951+00:00 +2026-03-09,Copilot,all,244,,20260331T142611Z,2026-03-31T14:51:03.305951+00:00 +2026-03-09,Copilot SWE Agent,all,17600,,20260331T142611Z,2026-03-31T14:51:03.305951+00:00 +2026-03-09,Crush,all,0,,20260331T142611Z,2026-03-31T14:51:03.305951+00:00 +2026-03-09,Cursor,all,1500,,20260331T142611Z,2026-03-31T14:51:03.305951+00:00 +2026-03-09,DeepSource,all,5,,20260331T142611Z,2026-03-31T14:51:03.305951+00:00 +2026-03-09,Devin,all,106,1,20260331T142611Z,2026-03-31T14:51:03.305951+00:00 +2026-03-09,Gemini CLI,all,0,,20260331T142611Z,2026-03-31T14:51:03.305951+00:00 +2026-03-09,Gemini Code Assist,all,0,,20260331T142611Z,2026-03-31T14:51:03.305951+00:00 +2026-03-09,Gru,all,0,,20260331T142611Z,2026-03-31T14:51:03.305951+00:00 +2026-03-09,Jules (Google),all,3819,,20260331T142611Z,2026-03-31T14:51:03.305951+00:00 +2026-03-09,Junie (JetBrains),all,29,,20260331T142611Z,2026-03-31T14:51:03.305951+00:00 +2026-03-09,Kilo Code,all,108,,20260331T142611Z,2026-03-31T14:51:03.305951+00:00 +2026-03-09,Lovable,all,3,,20260331T142611Z,2026-03-31T14:51:03.305951+00:00 +2026-03-09,OpenAI Codex,all,218,,20260331T142611Z,2026-03-31T14:51:03.305951+00:00 +2026-03-09,OpenCode,all,0,,20260331T142611Z,2026-03-31T14:51:03.305951+00:00 +2026-03-09,OpenHands,all,181,,20260331T142611Z,2026-03-31T14:51:03.305951+00:00 +2026-03-09,Qwen Coder,all,0,,20260331T142611Z,2026-03-31T14:51:03.305951+00:00 +2026-03-09,Roo Code,all,12,,20260331T142611Z,2026-03-31T14:51:03.305951+00:00 +2026-03-09,Sketch,all,0,,20260331T142611Z,2026-03-31T14:51:03.305951+00:00 +2026-03-09,Sourcery AI,all,0,,20260331T142611Z,2026-03-31T14:51:03.305951+00:00 +2026-03-09,Sweep AI,all,0,,20260331T142611Z,2026-03-31T14:51:03.305951+00:00 +2026-03-09,Warp (Oz Agent),all,0,,20260331T142611Z,2026-03-31T14:51:03.305951+00:00 +2026-03-10,Aider,all,14,,20260331T142611Z,2026-03-31T14:53:17.323531+00:00 +2026-03-10,Amp (Sourcegraph),all,1,,20260331T142611Z,2026-03-31T14:53:17.323531+00:00 +2026-03-10,ChatGPT,all,6,,20260331T142611Z,2026-03-31T14:53:17.323531+00:00 +2026-03-10,Claude Code,all,32083,,20260331T142611Z,2026-03-31T14:53:17.323531+00:00 +2026-03-10,Cline,all,272,,20260331T142611Z,2026-03-31T14:53:17.323531+00:00 +2026-03-10,Codegen,all,0,,20260331T142611Z,2026-03-31T14:53:17.323531+00:00 +2026-03-10,Coderabbit,all,17,,20260331T142611Z,2026-03-31T14:53:17.323531+00:00 +2026-03-10,Copilot,all,188,,20260331T142611Z,2026-03-31T14:53:17.323531+00:00 +2026-03-10,Copilot SWE Agent,all,18790,,20260331T142611Z,2026-03-31T14:53:17.323531+00:00 +2026-03-10,Crush,all,0,,20260331T142611Z,2026-03-31T14:53:17.323531+00:00 +2026-03-10,Cursor,all,1365,,20260331T142611Z,2026-03-31T14:53:17.323531+00:00 +2026-03-10,DeepSource,all,7,1,20260331T142611Z,2026-03-31T14:53:17.323531+00:00 +2026-03-10,Devin,all,195,1,20260331T142611Z,2026-03-31T14:53:17.323531+00:00 +2026-03-10,Gemini CLI,all,0,,20260331T142611Z,2026-03-31T14:53:17.323531+00:00 +2026-03-10,Gemini Code Assist,all,0,,20260331T142611Z,2026-03-31T14:53:17.323531+00:00 +2026-03-10,Gru,all,0,,20260331T142611Z,2026-03-31T14:53:17.323531+00:00 +2026-03-10,Jules (Google),all,4305,,20260331T142611Z,2026-03-31T14:53:17.323531+00:00 +2026-03-10,Junie (JetBrains),all,25,,20260331T142611Z,2026-03-31T14:53:17.323531+00:00 +2026-03-10,Kilo Code,all,183,,20260331T142611Z,2026-03-31T14:53:17.323531+00:00 +2026-03-10,Lovable,all,0,,20260331T142611Z,2026-03-31T14:53:17.323531+00:00 +2026-03-10,OpenAI Codex,all,265,,20260331T142611Z,2026-03-31T14:53:17.323531+00:00 +2026-03-10,OpenCode,all,0,,20260331T142611Z,2026-03-31T14:53:17.323531+00:00 +2026-03-10,OpenHands,all,314,,20260331T142611Z,2026-03-31T14:53:17.323531+00:00 +2026-03-10,Qwen Coder,all,27,,20260331T142611Z,2026-03-31T14:53:17.323531+00:00 +2026-03-10,Roo Code,all,14,,20260331T142611Z,2026-03-31T14:53:17.323531+00:00 +2026-03-10,Sketch,all,0,,20260331T142611Z,2026-03-31T14:53:17.323531+00:00 +2026-03-10,Sourcery AI,all,0,1,20260331T142611Z,2026-03-31T14:53:17.323531+00:00 +2026-03-10,Sweep AI,all,0,,20260331T142611Z,2026-03-31T14:53:17.323531+00:00 +2026-03-10,Warp (Oz Agent),all,0,,20260331T142611Z,2026-03-31T14:53:17.323531+00:00 +2026-03-11,Aider,all,17,,20260331T142611Z,2026-03-31T14:56:30.607543+00:00 +2026-03-11,Amp (Sourcegraph),all,0,,20260331T142611Z,2026-03-31T14:56:30.607543+00:00 +2026-03-11,ChatGPT,all,3,,20260331T142611Z,2026-03-31T14:56:30.607543+00:00 +2026-03-11,Claude Code,all,32613,,20260331T142611Z,2026-03-31T14:56:30.607543+00:00 +2026-03-11,Cline,all,598,,20260331T142611Z,2026-03-31T14:56:30.607543+00:00 +2026-03-11,Codegen,all,22,,20260331T142611Z,2026-03-31T14:56:30.607543+00:00 +2026-03-11,Coderabbit,all,38,,20260331T142611Z,2026-03-31T14:56:30.607543+00:00 +2026-03-11,Copilot,all,231,,20260331T142611Z,2026-03-31T14:56:30.607543+00:00 +2026-03-11,Copilot SWE Agent,all,18265,,20260331T142611Z,2026-03-31T14:56:30.607543+00:00 +2026-03-11,Crush,all,0,,20260331T142611Z,2026-03-31T14:56:30.607543+00:00 +2026-03-11,Cursor,all,1476,,20260331T142611Z,2026-03-31T14:56:30.607543+00:00 +2026-03-11,DeepSource,all,4,,20260331T142611Z,2026-03-31T14:56:30.607543+00:00 +2026-03-11,Devin,all,238,,20260331T142611Z,2026-03-31T14:56:30.607543+00:00 +2026-03-11,Gemini CLI,all,0,,20260331T142611Z,2026-03-31T14:56:30.607543+00:00 +2026-03-11,Gemini Code Assist,all,1,,20260331T142611Z,2026-03-31T14:56:30.607543+00:00 +2026-03-11,Gru,all,0,,20260331T142611Z,2026-03-31T14:56:30.607543+00:00 +2026-03-11,Jules (Google),all,3869,,20260331T142611Z,2026-03-31T14:56:30.607543+00:00 +2026-03-11,Junie (JetBrains),all,25,,20260331T142611Z,2026-03-31T14:56:30.607543+00:00 +2026-03-11,Kilo Code,all,202,,20260331T142611Z,2026-03-31T14:56:30.607543+00:00 +2026-03-11,Lovable,all,6,,20260409T204843Z,2026-04-09T20:57:03.090738+00:00 +2026-03-11,OpenAI Codex,all,366,,20260331T142611Z,2026-03-31T14:56:30.607543+00:00 +2026-03-11,OpenCode,all,0,,20260331T142611Z,2026-03-31T14:56:30.607543+00:00 +2026-03-11,OpenHands,all,267,,20260331T142611Z,2026-03-31T14:56:30.607543+00:00 +2026-03-11,Qwen Coder,all,45,,20260331T142611Z,2026-03-31T14:56:30.607543+00:00 +2026-03-11,Roo Code,all,17,,20260331T142611Z,2026-03-31T14:56:30.607543+00:00 +2026-03-11,Sketch,all,0,,20260331T142611Z,2026-03-31T14:56:30.607543+00:00 +2026-03-11,Sourcery AI,all,0,,20260331T142611Z,2026-03-31T14:56:30.607543+00:00 +2026-03-11,Sweep AI,all,0,,20260331T142611Z,2026-03-31T14:56:30.607543+00:00 +2026-03-11,Warp (Oz Agent),all,8,,20260331T142611Z,2026-03-31T14:56:30.607543+00:00 +2026-03-12,Aider,all,31,,20260331T142611Z,2026-03-31T14:58:54.249896+00:00 +2026-03-12,Amp (Sourcegraph),all,0,,20260331T142611Z,2026-03-31T14:58:54.249896+00:00 +2026-03-12,ChatGPT,all,40,,20260331T142611Z,2026-03-31T14:58:54.249896+00:00 +2026-03-12,Claude Code,all,31261,,20260331T142611Z,2026-03-31T14:58:54.249896+00:00 +2026-03-12,Cline,all,308,,20260331T142611Z,2026-03-31T14:58:54.249896+00:00 +2026-03-12,Codegen,all,11,,20260331T142611Z,2026-03-31T14:58:54.249896+00:00 +2026-03-12,Coderabbit,all,43,,20260331T142611Z,2026-03-31T14:58:54.249896+00:00 +2026-03-12,Copilot,all,239,,20260331T142611Z,2026-03-31T14:58:54.249896+00:00 +2026-03-12,Copilot SWE Agent,all,18020,,20260331T142611Z,2026-03-31T14:58:54.249896+00:00 +2026-03-12,Crush,all,0,,20260331T142611Z,2026-03-31T14:58:54.249896+00:00 +2026-03-12,Cursor,all,1480,,20260331T142611Z,2026-03-31T14:58:54.249896+00:00 +2026-03-12,DeepSource,all,4,1,20260331T142611Z,2026-03-31T14:58:54.249896+00:00 +2026-03-12,Devin,all,151,,20260331T142611Z,2026-03-31T14:58:54.249896+00:00 +2026-03-12,Gemini CLI,all,0,,20260331T142611Z,2026-03-31T14:58:54.249896+00:00 +2026-03-12,Gemini Code Assist,all,0,,20260331T142611Z,2026-03-31T14:58:54.249896+00:00 +2026-03-12,Gru,all,0,,20260331T142611Z,2026-03-31T14:58:54.249896+00:00 +2026-03-12,Jules (Google),all,3989,,20260331T142611Z,2026-03-31T14:58:54.249896+00:00 +2026-03-12,Junie (JetBrains),all,18,,20260331T142611Z,2026-03-31T14:58:54.249896+00:00 +2026-03-12,Kilo Code,all,88,,20260331T142611Z,2026-03-31T14:58:54.249896+00:00 +2026-03-12,Lovable,all,0,,20260331T142611Z,2026-03-31T14:58:54.249896+00:00 +2026-03-12,OpenAI Codex,all,326,,20260331T142611Z,2026-03-31T14:58:54.249896+00:00 +2026-03-12,OpenCode,all,0,,20260331T142611Z,2026-03-31T14:58:54.249896+00:00 +2026-03-12,OpenHands,all,208,,20260331T142611Z,2026-03-31T14:58:54.249896+00:00 +2026-03-12,Qwen Coder,all,1,,20260331T142611Z,2026-03-31T14:58:54.249896+00:00 +2026-03-12,Roo Code,all,8,,20260331T142611Z,2026-03-31T14:58:54.249896+00:00 +2026-03-12,Sketch,all,0,,20260331T142611Z,2026-03-31T14:58:54.249896+00:00 +2026-03-12,Sourcery AI,all,0,,20260331T142611Z,2026-03-31T14:58:54.249896+00:00 +2026-03-12,Sweep AI,all,0,,20260331T142611Z,2026-03-31T14:58:54.249896+00:00 +2026-03-12,Warp (Oz Agent),all,0,,20260331T142611Z,2026-03-31T14:58:54.249896+00:00 +2026-03-13,Aider,all,60,,20260331T142611Z,2026-03-31T15:01:06.713061+00:00 +2026-03-13,Amp (Sourcegraph),all,1,,20260331T142611Z,2026-03-31T15:01:06.713061+00:00 +2026-03-13,ChatGPT,all,26,,20260331T142611Z,2026-03-31T15:01:06.713061+00:00 +2026-03-13,Claude Code,all,32495,,20260331T142611Z,2026-03-31T15:01:06.713061+00:00 +2026-03-13,Cline,all,207,,20260331T142611Z,2026-03-31T15:01:06.713061+00:00 +2026-03-13,Codegen,all,32,,20260331T142611Z,2026-03-31T15:01:06.713061+00:00 +2026-03-13,Coderabbit,all,31,,20260331T142611Z,2026-03-31T15:01:06.713061+00:00 +2026-03-13,Copilot,all,238,1,20260331T142611Z,2026-03-31T15:01:06.713061+00:00 +2026-03-13,Copilot SWE Agent,all,16966,,20260331T142611Z,2026-03-31T15:01:06.713061+00:00 +2026-03-13,Crush,all,0,,20260331T142611Z,2026-03-31T15:01:06.713061+00:00 +2026-03-13,Cursor,all,1309,,20260331T142611Z,2026-03-31T15:01:06.713061+00:00 +2026-03-13,DeepSource,all,3,,20260331T142611Z,2026-03-31T15:01:06.713061+00:00 +2026-03-13,Devin,all,66,,20260331T142611Z,2026-03-31T15:01:06.713061+00:00 +2026-03-13,Gemini CLI,all,0,,20260331T142611Z,2026-03-31T15:01:06.713061+00:00 +2026-03-13,Gemini Code Assist,all,0,,20260331T142611Z,2026-03-31T15:01:06.713061+00:00 +2026-03-13,Gru,all,0,,20260331T142611Z,2026-03-31T15:01:06.713061+00:00 +2026-03-13,Jules (Google),all,4279,,20260331T142611Z,2026-03-31T15:01:06.713061+00:00 +2026-03-13,Junie (JetBrains),all,33,,20260331T142611Z,2026-03-31T15:01:06.713061+00:00 +2026-03-13,Kilo Code,all,142,,20260331T142611Z,2026-03-31T15:01:06.713061+00:00 +2026-03-13,Lovable,all,0,,20260331T142611Z,2026-03-31T15:01:06.713061+00:00 +2026-03-13,OpenAI Codex,all,285,,20260331T142611Z,2026-03-31T15:01:06.713061+00:00 +2026-03-13,OpenCode,all,0,,20260331T142611Z,2026-03-31T15:01:06.713061+00:00 +2026-03-13,OpenHands,all,218,,20260331T142611Z,2026-03-31T15:01:06.713061+00:00 +2026-03-13,Qwen Coder,all,0,,20260331T142611Z,2026-03-31T15:01:06.713061+00:00 +2026-03-13,Roo Code,all,24,,20260331T142611Z,2026-03-31T15:01:06.713061+00:00 +2026-03-13,Sketch,all,0,,20260331T142611Z,2026-03-31T15:01:06.713061+00:00 +2026-03-13,Sourcery AI,all,0,,20260331T142611Z,2026-03-31T15:01:06.713061+00:00 +2026-03-13,Sweep AI,all,0,,20260331T142611Z,2026-03-31T15:01:06.713061+00:00 +2026-03-13,Warp (Oz Agent),all,0,,20260331T142611Z,2026-03-31T15:01:06.713061+00:00 +2026-03-14,Aider,all,83,,20260331T142611Z,2026-03-31T15:03:20.486272+00:00 +2026-03-14,Amp (Sourcegraph),all,0,,20260331T142611Z,2026-03-31T15:03:20.486272+00:00 +2026-03-14,ChatGPT,all,37,,20260331T142611Z,2026-03-31T15:03:20.486272+00:00 +2026-03-14,Claude Code,all,33530,,20260331T142611Z,2026-03-31T15:03:20.486272+00:00 +2026-03-14,Cline,all,109,,20260331T142611Z,2026-03-31T15:03:20.486272+00:00 +2026-03-14,Codegen,all,7,,20260331T142611Z,2026-03-31T15:03:20.486272+00:00 +2026-03-14,Coderabbit,all,22,,20260331T142611Z,2026-03-31T15:03:20.486272+00:00 +2026-03-14,Copilot,all,260,,20260331T142611Z,2026-03-31T15:03:20.486272+00:00 +2026-03-14,Copilot SWE Agent,all,17628,,20260331T142611Z,2026-03-31T15:03:20.486272+00:00 +2026-03-14,Crush,all,0,,20260331T142611Z,2026-03-31T15:03:20.486272+00:00 +2026-03-14,Cursor,all,1327,,20260331T142611Z,2026-03-31T15:03:20.486272+00:00 +2026-03-14,DeepSource,all,2,,20260331T142611Z,2026-03-31T15:03:20.486272+00:00 +2026-03-14,Devin,all,141,1,20260331T142611Z,2026-03-31T15:03:20.486272+00:00 +2026-03-14,Gemini CLI,all,0,,20260331T142611Z,2026-03-31T15:03:20.486272+00:00 +2026-03-14,Gemini Code Assist,all,0,,20260331T142611Z,2026-03-31T15:03:20.486272+00:00 +2026-03-14,Gru,all,0,,20260331T142611Z,2026-03-31T15:03:20.486272+00:00 +2026-03-14,Jules (Google),all,4040,,20260331T142611Z,2026-03-31T15:03:20.486272+00:00 +2026-03-14,Junie (JetBrains),all,4,,20260331T142611Z,2026-03-31T15:03:20.486272+00:00 +2026-03-14,Kilo Code,all,143,,20260331T142611Z,2026-03-31T15:03:20.486272+00:00 +2026-03-14,Lovable,all,0,,20260331T142611Z,2026-03-31T15:03:20.486272+00:00 +2026-03-14,OpenAI Codex,all,239,,20260331T142611Z,2026-03-31T15:03:20.486272+00:00 +2026-03-14,OpenCode,all,0,,20260331T142611Z,2026-03-31T15:03:20.486272+00:00 +2026-03-14,OpenHands,all,297,,20260331T142611Z,2026-03-31T15:03:20.486272+00:00 +2026-03-14,Qwen Coder,all,0,,20260331T142611Z,2026-03-31T15:03:20.486272+00:00 +2026-03-14,Roo Code,all,1,,20260331T142611Z,2026-03-31T15:03:20.486272+00:00 +2026-03-14,Sketch,all,0,,20260331T142611Z,2026-03-31T15:03:20.486272+00:00 +2026-03-14,Sourcery AI,all,0,,20260331T142611Z,2026-03-31T15:03:20.486272+00:00 +2026-03-14,Sweep AI,all,0,,20260331T142611Z,2026-03-31T15:03:20.486272+00:00 +2026-03-14,Warp (Oz Agent),all,36,,20260331T142611Z,2026-03-31T15:03:20.486272+00:00 +2026-03-15,Aider,all,29,,20260331T162341Z,2026-03-31T16:23:41.121357+00:00 +2026-03-15,Amp (Sourcegraph),all,0,,20260331T162341Z,2026-03-31T16:23:41.121357+00:00 +2026-03-15,ChatGPT,all,13,,20260331T162341Z,2026-03-31T16:23:41.121357+00:00 +2026-03-15,Claude Code,all,40519,,20260331T162341Z,2026-03-31T16:23:41.121357+00:00 +2026-03-15,Cline,all,237,,20260331T162341Z,2026-03-31T16:23:41.121357+00:00 +2026-03-15,Codegen,all,9,,20260331T162341Z,2026-03-31T16:23:41.121357+00:00 +2026-03-15,Coderabbit,all,23,,20260331T162341Z,2026-03-31T16:23:41.121357+00:00 +2026-03-15,Copilot,all,314,,20260331T162341Z,2026-03-31T16:23:41.121357+00:00 +2026-03-15,Crush,all,0,,20260331T162341Z,2026-03-31T16:23:41.121357+00:00 +2026-03-15,Cursor,all,1678,,20260331T162341Z,2026-03-31T16:23:41.121357+00:00 +2026-03-15,DeepSource,all,0,,20260331T162341Z,2026-03-31T16:23:41.121357+00:00 +2026-03-15,Devin,all,144,,20260331T162341Z,2026-03-31T16:23:41.121357+00:00 +2026-03-15,Gemini CLI,all,3,,20260331T162341Z,2026-03-31T16:23:41.121357+00:00 +2026-03-15,Gemini Code Assist,all,0,,20260331T162341Z,2026-03-31T16:23:41.121357+00:00 +2026-03-15,Gru,all,0,,20260331T162341Z,2026-03-31T16:23:41.121357+00:00 +2026-03-15,Jules (Google),all,4350,,20260331T162341Z,2026-03-31T16:23:41.121357+00:00 +2026-03-15,Junie (JetBrains),all,6,,20260331T162341Z,2026-03-31T16:23:41.121357+00:00 +2026-03-15,Kilo Code,all,124,,20260331T162341Z,2026-03-31T16:23:41.121357+00:00 +2026-03-15,Lovable,all,0,,20260331T162341Z,2026-03-31T16:23:41.121357+00:00 +2026-03-15,OpenAI Codex,all,294,,20260331T162341Z,2026-03-31T16:23:41.121357+00:00 +2026-03-15,OpenCode,all,0,,20260331T162341Z,2026-03-31T16:23:41.121357+00:00 +2026-03-15,OpenHands,all,371,,20260331T162341Z,2026-03-31T16:23:41.121357+00:00 +2026-03-15,Qwen Coder,all,2,,20260331T162341Z,2026-03-31T16:23:41.121357+00:00 +2026-03-15,Roo Code,all,13,,20260331T162341Z,2026-03-31T16:23:41.121357+00:00 +2026-03-15,Sketch,all,0,,20260331T162341Z,2026-03-31T16:23:41.121357+00:00 +2026-03-15,Sourcery AI,all,0,,20260331T162341Z,2026-03-31T16:23:41.121357+00:00 +2026-03-15,Sweep AI,all,0,,20260331T162341Z,2026-03-31T16:23:41.121357+00:00 +2026-03-15,Warp (Oz Agent),all,42,,20260331T162341Z,2026-03-31T16:23:41.121357+00:00 +2026-03-16,Aider,all,14,,20260331T162341Z,2026-03-31T16:25:52.805443+00:00 +2026-03-16,Amp (Sourcegraph),all,0,,20260331T162341Z,2026-03-31T16:25:52.805443+00:00 +2026-03-16,ChatGPT,all,10,,20260331T162341Z,2026-03-31T16:25:52.805443+00:00 +2026-03-16,Claude Code,all,42546,,20260331T162341Z,2026-03-31T16:25:52.805443+00:00 +2026-03-16,Cline,all,180,,20260331T162341Z,2026-03-31T16:25:52.805443+00:00 +2026-03-16,Codegen,all,19,,20260331T162341Z,2026-03-31T16:25:52.805443+00:00 +2026-03-16,Coderabbit,all,24,,20260331T162341Z,2026-03-31T16:25:52.805443+00:00 +2026-03-16,Copilot,all,380,,20260331T162341Z,2026-03-31T16:25:52.805443+00:00 +2026-03-16,Crush,all,0,,20260331T162341Z,2026-03-31T16:25:52.805443+00:00 +2026-03-16,Cursor,all,1663,,20260331T162341Z,2026-03-31T16:25:52.805443+00:00 +2026-03-16,DeepSource,all,2,,20260331T162341Z,2026-03-31T16:25:52.805443+00:00 +2026-03-16,Devin,all,103,,20260331T162341Z,2026-03-31T16:25:52.805443+00:00 +2026-03-16,Gemini CLI,all,1,,20260331T162341Z,2026-03-31T16:25:52.805443+00:00 +2026-03-16,Gemini Code Assist,all,0,,20260331T162341Z,2026-03-31T16:25:52.805443+00:00 +2026-03-16,Gru,all,0,,20260331T162341Z,2026-03-31T16:25:52.805443+00:00 +2026-03-16,Jules (Google),all,4336,,20260331T162341Z,2026-03-31T16:25:52.805443+00:00 +2026-03-16,Junie (JetBrains),all,31,,20260331T162341Z,2026-03-31T16:25:52.805443+00:00 +2026-03-16,Kilo Code,all,126,,20260331T162341Z,2026-03-31T16:25:52.805443+00:00 +2026-03-16,Lovable,all,0,,20260331T162341Z,2026-03-31T16:25:52.805443+00:00 +2026-03-16,OpenAI Codex,all,380,,20260331T162341Z,2026-03-31T16:25:52.805443+00:00 +2026-03-16,OpenCode,all,7,,20260331T162341Z,2026-03-31T16:25:52.805443+00:00 +2026-03-16,OpenHands,all,154,,20260331T162341Z,2026-03-31T16:25:52.805443+00:00 +2026-03-16,Qwen Coder,all,0,,20260331T162341Z,2026-03-31T16:25:52.805443+00:00 +2026-03-16,Roo Code,all,38,,20260331T162341Z,2026-03-31T16:25:52.805443+00:00 +2026-03-16,Sketch,all,0,,20260331T162341Z,2026-03-31T16:25:52.805443+00:00 +2026-03-16,Sourcery AI,all,0,,20260331T162341Z,2026-03-31T16:25:52.805443+00:00 +2026-03-16,Sweep AI,all,0,,20260331T162341Z,2026-03-31T16:25:52.805443+00:00 +2026-03-16,Warp (Oz Agent),all,13,,20260331T162341Z,2026-03-31T16:25:52.805443+00:00 +2026-03-17,Aider,all,7,,20260331T162341Z,2026-03-31T16:28:04.555331+00:00 +2026-03-17,Amp (Sourcegraph),all,3,,20260331T162341Z,2026-03-31T16:28:04.555331+00:00 +2026-03-17,ChatGPT,all,3,,20260331T162341Z,2026-03-31T16:28:04.555331+00:00 +2026-03-17,Claude Code,all,38764,,20260331T162341Z,2026-03-31T16:28:04.555331+00:00 +2026-03-17,Cline,all,267,,20260331T162341Z,2026-03-31T16:28:04.555331+00:00 +2026-03-17,Codegen,all,5,,20260331T162341Z,2026-03-31T16:28:04.555331+00:00 +2026-03-17,Coderabbit,all,24,,20260331T162341Z,2026-03-31T16:28:04.555331+00:00 +2026-03-17,Copilot,all,310,,20260331T162341Z,2026-03-31T16:28:04.555331+00:00 +2026-03-17,Crush,all,0,,20260331T162341Z,2026-03-31T16:28:04.555331+00:00 +2026-03-17,Cursor,all,1634,,20260331T162341Z,2026-03-31T16:28:04.555331+00:00 +2026-03-17,DeepSource,all,4,,20260331T162341Z,2026-03-31T16:28:04.555331+00:00 +2026-03-17,Devin,all,141,,20260331T162341Z,2026-03-31T16:28:04.555331+00:00 +2026-03-17,Gemini CLI,all,0,,20260331T162341Z,2026-03-31T16:28:04.555331+00:00 +2026-03-17,Gemini Code Assist,all,0,,20260331T162341Z,2026-03-31T16:28:04.555331+00:00 +2026-03-17,Gru,all,0,,20260331T162341Z,2026-03-31T16:28:04.555331+00:00 +2026-03-17,Jules (Google),all,4057,,20260331T162341Z,2026-03-31T16:28:04.555331+00:00 +2026-03-17,Junie (JetBrains),all,22,,20260331T162341Z,2026-03-31T16:28:04.555331+00:00 +2026-03-17,Kilo Code,all,155,,20260331T162341Z,2026-03-31T16:28:04.555331+00:00 +2026-03-17,Lovable,all,0,,20260331T162341Z,2026-03-31T16:28:04.555331+00:00 +2026-03-17,OpenAI Codex,all,409,,20260331T162341Z,2026-03-31T16:28:04.555331+00:00 +2026-03-17,OpenCode,all,0,,20260331T162341Z,2026-03-31T16:28:04.555331+00:00 +2026-03-17,OpenHands,all,276,,20260331T162341Z,2026-03-31T16:28:04.555331+00:00 +2026-03-17,Qwen Coder,all,0,,20260331T162341Z,2026-03-31T16:28:04.555331+00:00 +2026-03-17,Roo Code,all,61,,20260331T162341Z,2026-03-31T16:28:04.555331+00:00 +2026-03-17,Sketch,all,0,,20260331T162341Z,2026-03-31T16:28:04.555331+00:00 +2026-03-17,Sourcery AI,all,0,,20260331T162341Z,2026-03-31T16:28:04.555331+00:00 +2026-03-17,Sweep AI,all,0,,20260331T162341Z,2026-03-31T16:28:04.555331+00:00 +2026-03-17,Warp (Oz Agent),all,27,,20260331T162341Z,2026-03-31T16:28:04.555331+00:00 +2026-03-18,Aider,all,2,,20260331T162341Z,2026-03-31T16:30:16.906111+00:00 +2026-03-18,Amp (Sourcegraph),all,0,,20260331T162341Z,2026-03-31T16:30:16.906111+00:00 +2026-03-18,ChatGPT,all,0,,20260331T162341Z,2026-03-31T16:30:16.906111+00:00 +2026-03-18,Claude Code,all,38705,,20260331T162341Z,2026-03-31T16:30:16.906111+00:00 +2026-03-18,Cline,all,528,,20260331T162341Z,2026-03-31T16:30:16.906111+00:00 +2026-03-18,Codegen,all,11,,20260331T162341Z,2026-03-31T16:30:16.906111+00:00 +2026-03-18,Coderabbit,all,25,,20260331T162341Z,2026-03-31T16:30:16.906111+00:00 +2026-03-18,Copilot,all,138,,20260331T162341Z,2026-03-31T16:30:16.906111+00:00 +2026-03-18,Crush,all,0,,20260331T162341Z,2026-03-31T16:30:16.906111+00:00 +2026-03-18,Cursor,all,1291,,20260331T162341Z,2026-03-31T16:30:16.906111+00:00 +2026-03-18,DeepSource,all,6,,20260331T162341Z,2026-03-31T16:30:16.906111+00:00 +2026-03-18,Devin,all,98,,20260331T162341Z,2026-03-31T16:30:16.906111+00:00 +2026-03-18,Gemini CLI,all,0,,20260331T162341Z,2026-03-31T16:30:16.906111+00:00 +2026-03-18,Gemini Code Assist,all,1,,20260331T162341Z,2026-03-31T16:30:16.906111+00:00 +2026-03-18,Gru,all,0,1,20260331T162341Z,2026-03-31T16:30:16.906111+00:00 +2026-03-18,Jules (Google),all,3805,,20260331T162341Z,2026-03-31T16:30:16.906111+00:00 +2026-03-18,Junie (JetBrains),all,22,,20260331T162341Z,2026-03-31T16:30:16.906111+00:00 +2026-03-18,Kilo Code,all,153,,20260331T162341Z,2026-03-31T16:30:16.906111+00:00 +2026-03-18,Lovable,all,4,,20260331T162341Z,2026-03-31T16:30:16.906111+00:00 +2026-03-18,OpenAI Codex,all,339,,20260331T162341Z,2026-03-31T16:30:16.906111+00:00 +2026-03-18,OpenCode,all,0,,20260331T162341Z,2026-03-31T16:30:16.906111+00:00 +2026-03-18,OpenHands,all,290,,20260331T162341Z,2026-03-31T16:30:16.906111+00:00 +2026-03-18,Qwen Coder,all,3,,20260331T162341Z,2026-03-31T16:30:16.906111+00:00 +2026-03-18,Roo Code,all,81,,20260331T162341Z,2026-03-31T16:30:16.906111+00:00 +2026-03-18,Sketch,all,0,,20260331T162341Z,2026-03-31T16:30:16.906111+00:00 +2026-03-18,Sourcery AI,all,0,,20260331T162341Z,2026-03-31T16:30:16.906111+00:00 +2026-03-18,Sweep AI,all,0,,20260331T162341Z,2026-03-31T16:30:16.906111+00:00 +2026-03-18,Warp (Oz Agent),all,5,,20260331T162341Z,2026-03-31T16:30:16.906111+00:00 +2026-03-19,Aider,all,25,,20260331T162341Z,2026-03-31T16:32:29.729635+00:00 +2026-03-19,Amp (Sourcegraph),all,0,,20260331T162341Z,2026-03-31T16:32:29.729635+00:00 +2026-03-19,ChatGPT,all,9,,20260331T162341Z,2026-03-31T16:32:29.729635+00:00 +2026-03-19,Claude Code,all,36132,,20260331T162341Z,2026-03-31T16:32:29.729635+00:00 +2026-03-19,Cline,all,141,,20260331T162341Z,2026-03-31T16:32:29.729635+00:00 +2026-03-19,Codegen,all,40,,20260331T162341Z,2026-03-31T16:32:29.729635+00:00 +2026-03-19,Coderabbit,all,31,,20260331T162341Z,2026-03-31T16:32:29.729635+00:00 +2026-03-19,Copilot,all,258,,20260331T162341Z,2026-03-31T16:32:29.729635+00:00 +2026-03-19,Crush,all,0,,20260331T162341Z,2026-03-31T16:32:29.729635+00:00 +2026-03-19,Cursor,all,1455,,20260331T162341Z,2026-03-31T16:32:29.729635+00:00 +2026-03-19,DeepSource,all,3,,20260331T162341Z,2026-03-31T16:32:29.729635+00:00 +2026-03-19,Devin,all,146,,20260331T162341Z,2026-03-31T16:32:29.729635+00:00 +2026-03-19,Gemini CLI,all,0,,20260331T162341Z,2026-03-31T16:32:29.729635+00:00 +2026-03-19,Gemini Code Assist,all,0,,20260331T162341Z,2026-03-31T16:32:29.729635+00:00 +2026-03-19,Gru,all,0,,20260331T162341Z,2026-03-31T16:32:29.729635+00:00 +2026-03-19,Jules (Google),all,3565,,20260331T162341Z,2026-03-31T16:32:29.729635+00:00 +2026-03-19,Junie (JetBrains),all,16,,20260331T162341Z,2026-03-31T16:32:29.729635+00:00 +2026-03-19,Kilo Code,all,129,1,20260331T162341Z,2026-03-31T16:32:29.729635+00:00 +2026-03-19,Lovable,all,0,,20260331T162341Z,2026-03-31T16:32:29.729635+00:00 +2026-03-19,OpenAI Codex,all,353,,20260331T162341Z,2026-03-31T16:32:29.729635+00:00 +2026-03-19,OpenCode,all,0,,20260331T162341Z,2026-03-31T16:32:29.729635+00:00 +2026-03-19,OpenHands,all,319,,20260331T162341Z,2026-03-31T16:32:29.729635+00:00 +2026-03-19,Qwen Coder,all,0,,20260331T162341Z,2026-03-31T16:32:29.729635+00:00 +2026-03-19,Roo Code,all,92,,20260331T162341Z,2026-03-31T16:32:29.729635+00:00 +2026-03-19,Sketch,all,0,,20260331T162341Z,2026-03-31T16:32:29.729635+00:00 +2026-03-19,Sourcery AI,all,0,,20260331T162341Z,2026-03-31T16:32:29.729635+00:00 +2026-03-19,Sweep AI,all,0,,20260331T162341Z,2026-03-31T16:32:29.729635+00:00 +2026-03-19,Warp (Oz Agent),all,0,,20260331T162341Z,2026-03-31T16:32:29.729635+00:00 +2026-03-20,Aider,all,8,,20260331T162341Z,2026-03-31T16:34:42.301313+00:00 +2026-03-20,Amp (Sourcegraph),all,0,,20260331T162341Z,2026-03-31T16:34:42.301313+00:00 +2026-03-20,ChatGPT,all,0,,20260331T162341Z,2026-03-31T16:34:42.301313+00:00 +2026-03-20,Claude Code,all,37174,,20260331T162341Z,2026-03-31T16:34:42.301313+00:00 +2026-03-20,Cline,all,65,,20260331T162341Z,2026-03-31T16:34:42.301313+00:00 +2026-03-20,Codegen,all,0,,20260331T162341Z,2026-03-31T16:34:42.301313+00:00 +2026-03-20,Coderabbit,all,35,,20260331T162341Z,2026-03-31T16:34:42.301313+00:00 +2026-03-20,Copilot,all,386,,20260331T162341Z,2026-03-31T16:34:42.301313+00:00 +2026-03-20,Crush,all,0,,20260331T162341Z,2026-03-31T16:34:42.301313+00:00 +2026-03-20,Cursor,all,1627,,20260331T162341Z,2026-03-31T16:34:42.301313+00:00 +2026-03-20,DeepSource,all,17,,20260331T162341Z,2026-03-31T16:34:42.301313+00:00 +2026-03-20,Devin,all,93,,20260331T162341Z,2026-03-31T16:34:42.301313+00:00 +2026-03-20,Gemini CLI,all,0,,20260331T162341Z,2026-03-31T16:34:42.301313+00:00 +2026-03-20,Gemini Code Assist,all,0,,20260331T162341Z,2026-03-31T16:34:42.301313+00:00 +2026-03-20,Gru,all,0,,20260331T162341Z,2026-03-31T16:34:42.301313+00:00 +2026-03-20,Jules (Google),all,3523,,20260331T162341Z,2026-03-31T16:34:42.301313+00:00 +2026-03-20,Junie (JetBrains),all,40,,20260331T162341Z,2026-03-31T16:34:42.301313+00:00 +2026-03-20,Kilo Code,all,91,,20260331T162341Z,2026-03-31T16:34:42.301313+00:00 +2026-03-20,Lovable,all,0,,20260331T162341Z,2026-03-31T16:34:42.301313+00:00 +2026-03-20,OpenAI Codex,all,261,,20260331T162341Z,2026-03-31T16:34:42.301313+00:00 +2026-03-20,OpenCode,all,3,,20260331T162341Z,2026-03-31T16:34:42.301313+00:00 +2026-03-20,OpenHands,all,335,,20260331T162341Z,2026-03-31T16:34:42.301313+00:00 +2026-03-20,Qwen Coder,all,0,,20260331T162341Z,2026-03-31T16:34:42.301313+00:00 +2026-03-20,Roo Code,all,24,,20260331T162341Z,2026-03-31T16:34:42.301313+00:00 +2026-03-20,Sketch,all,0,,20260331T162341Z,2026-03-31T16:34:42.301313+00:00 +2026-03-20,Sourcery AI,all,0,,20260331T162341Z,2026-03-31T16:34:42.301313+00:00 +2026-03-20,Sweep AI,all,0,,20260331T162341Z,2026-03-31T16:34:42.301313+00:00 +2026-03-20,Warp (Oz Agent),all,0,,20260331T162341Z,2026-03-31T16:34:42.301313+00:00 +2026-03-21,Aider,all,13,,20260331T162341Z,2026-03-31T16:36:54.621669+00:00 +2026-03-21,Amp (Sourcegraph),all,0,,20260331T162341Z,2026-03-31T16:36:54.621669+00:00 +2026-03-21,ChatGPT,all,2,,20260331T162341Z,2026-03-31T16:36:54.621669+00:00 +2026-03-21,Claude Code,all,38657,,20260331T162341Z,2026-03-31T16:36:54.621669+00:00 +2026-03-21,Cline,all,73,,20260331T162341Z,2026-03-31T16:36:54.621669+00:00 +2026-03-21,Codegen,all,0,,20260331T162341Z,2026-03-31T16:36:54.621669+00:00 +2026-03-21,Coderabbit,all,44,,20260331T162341Z,2026-03-31T16:36:54.621669+00:00 +2026-03-21,Copilot,all,285,,20260331T162341Z,2026-03-31T16:36:54.621669+00:00 +2026-03-21,Crush,all,0,,20260331T162341Z,2026-03-31T16:36:54.621669+00:00 +2026-03-21,Cursor,all,1194,,20260331T162341Z,2026-03-31T16:36:54.621669+00:00 +2026-03-21,DeepSource,all,59,,20260331T162341Z,2026-03-31T16:36:54.621669+00:00 +2026-03-21,Devin,all,136,,20260331T162341Z,2026-03-31T16:36:54.621669+00:00 +2026-03-21,Gemini CLI,all,0,,20260331T162341Z,2026-03-31T16:36:54.621669+00:00 +2026-03-21,Gemini Code Assist,all,0,,20260331T162341Z,2026-03-31T16:36:54.621669+00:00 +2026-03-21,Gru,all,0,,20260331T162341Z,2026-03-31T16:36:54.621669+00:00 +2026-03-21,Jules (Google),all,3305,,20260331T162341Z,2026-03-31T16:36:54.621669+00:00 +2026-03-21,Junie (JetBrains),all,4,,20260331T162341Z,2026-03-31T16:36:54.621669+00:00 +2026-03-21,Kilo Code,all,77,,20260331T162341Z,2026-03-31T16:36:54.621669+00:00 +2026-03-21,Lovable,all,0,,20260331T162341Z,2026-03-31T16:36:54.621669+00:00 +2026-03-21,OpenAI Codex,all,320,,20260331T162341Z,2026-03-31T16:36:54.621669+00:00 +2026-03-21,OpenCode,all,0,,20260331T162341Z,2026-03-31T16:36:54.621669+00:00 +2026-03-21,OpenHands,all,258,,20260331T162341Z,2026-03-31T16:36:54.621669+00:00 +2026-03-21,Qwen Coder,all,2,,20260331T162341Z,2026-03-31T16:36:54.621669+00:00 +2026-03-21,Roo Code,all,46,,20260331T162341Z,2026-03-31T16:36:54.621669+00:00 +2026-03-21,Sketch,all,0,,20260331T162341Z,2026-03-31T16:36:54.621669+00:00 +2026-03-21,Sourcery AI,all,0,,20260331T162341Z,2026-03-31T16:36:54.621669+00:00 +2026-03-21,Sweep AI,all,0,,20260331T162341Z,2026-03-31T16:36:54.621669+00:00 +2026-03-21,Warp (Oz Agent),all,0,,20260331T162341Z,2026-03-31T16:36:54.621669+00:00 +2026-03-22,Aider,all,5,,20260331T162341Z,2026-03-31T16:39:06.086044+00:00 +2026-03-22,Amp (Sourcegraph),all,0,,20260331T162341Z,2026-03-31T16:39:06.086044+00:00 +2026-03-22,ChatGPT,all,0,,20260331T162341Z,2026-03-31T16:39:06.086044+00:00 +2026-03-22,Claude Code,all,42256,,20260331T162341Z,2026-03-31T16:39:06.086044+00:00 +2026-03-22,Cline,all,20,,20260331T162341Z,2026-03-31T16:39:06.086044+00:00 +2026-03-22,Codegen,all,0,,20260331T162341Z,2026-03-31T16:39:06.086044+00:00 +2026-03-22,Coderabbit,all,18,,20260331T162341Z,2026-03-31T16:39:06.086044+00:00 +2026-03-22,Copilot,all,136,,20260331T162341Z,2026-03-31T16:39:06.086044+00:00 +2026-03-22,Crush,all,0,,20260331T162341Z,2026-03-31T16:39:06.086044+00:00 +2026-03-22,Cursor,all,1223,,20260331T162341Z,2026-03-31T16:39:06.086044+00:00 +2026-03-22,DeepSource,all,42,,20260331T162341Z,2026-03-31T16:39:06.086044+00:00 +2026-03-22,Devin,all,128,,20260331T162341Z,2026-03-31T16:39:06.086044+00:00 +2026-03-22,Gemini CLI,all,0,,20260331T162341Z,2026-03-31T16:39:06.086044+00:00 +2026-03-22,Gemini Code Assist,all,0,,20260331T162341Z,2026-03-31T16:39:06.086044+00:00 +2026-03-22,Gru,all,0,,20260331T162341Z,2026-03-31T16:39:06.086044+00:00 +2026-03-22,Jules (Google),all,3705,,20260331T162341Z,2026-03-31T16:39:06.086044+00:00 +2026-03-22,Junie (JetBrains),all,7,,20260331T162341Z,2026-03-31T16:39:06.086044+00:00 +2026-03-22,Kilo Code,all,44,,20260331T162341Z,2026-03-31T16:39:06.086044+00:00 +2026-03-22,Lovable,all,0,,20260331T162341Z,2026-03-31T16:39:06.086044+00:00 +2026-03-22,OpenAI Codex,all,311,,20260331T162341Z,2026-03-31T16:39:06.086044+00:00 +2026-03-22,OpenCode,all,2,,20260331T162341Z,2026-03-31T16:39:06.086044+00:00 +2026-03-22,OpenHands,all,292,,20260331T162341Z,2026-03-31T16:39:06.086044+00:00 +2026-03-22,Qwen Coder,all,0,,20260331T162341Z,2026-03-31T16:39:06.086044+00:00 +2026-03-22,Roo Code,all,69,,20260331T162341Z,2026-03-31T16:39:06.086044+00:00 +2026-03-22,Sketch,all,0,,20260331T162341Z,2026-03-31T16:39:06.086044+00:00 +2026-03-22,Sourcery AI,all,0,,20260331T162341Z,2026-03-31T16:39:06.086044+00:00 +2026-03-22,Sweep AI,all,0,,20260331T162341Z,2026-03-31T16:39:06.086044+00:00 +2026-03-22,Warp (Oz Agent),all,0,,20260331T162341Z,2026-03-31T16:39:06.086044+00:00 +2026-03-23,Aider,all,8,,20260331T162341Z,2026-03-31T16:41:17.719458+00:00 +2026-03-23,Amp (Sourcegraph),all,0,,20260331T162341Z,2026-03-31T16:41:17.719458+00:00 +2026-03-23,ChatGPT,all,20,,20260331T162341Z,2026-03-31T16:41:17.719458+00:00 +2026-03-23,Claude Code,all,42559,,20260331T162341Z,2026-03-31T16:41:17.719458+00:00 +2026-03-23,Cline,all,60,,20260331T162341Z,2026-03-31T16:41:17.719458+00:00 +2026-03-23,Codegen,all,3,,20260331T162341Z,2026-03-31T16:41:17.719458+00:00 +2026-03-23,Coderabbit,all,18,,20260331T162341Z,2026-03-31T16:41:17.719458+00:00 +2026-03-23,Copilot,all,283,,20260331T162341Z,2026-03-31T16:41:17.719458+00:00 +2026-03-23,Crush,all,0,,20260331T162341Z,2026-03-31T16:41:17.719458+00:00 +2026-03-23,Cursor,all,1448,,20260331T162341Z,2026-03-31T16:41:17.719458+00:00 +2026-03-23,DeepSource,all,28,,20260331T162341Z,2026-03-31T16:41:17.719458+00:00 +2026-03-23,Devin,all,93,,20260331T162341Z,2026-03-31T16:41:17.719458+00:00 +2026-03-23,Gemini CLI,all,0,,20260331T162341Z,2026-03-31T16:41:17.719458+00:00 +2026-03-23,Gemini Code Assist,all,0,,20260331T162341Z,2026-03-31T16:41:17.719458+00:00 +2026-03-23,Gru,all,0,,20260331T162341Z,2026-03-31T16:41:17.719458+00:00 +2026-03-23,Jules (Google),all,3690,,20260331T162341Z,2026-03-31T16:41:17.719458+00:00 +2026-03-23,Junie (JetBrains),all,31,,20260331T162341Z,2026-03-31T16:41:17.719458+00:00 +2026-03-23,Kilo Code,all,85,,20260331T162341Z,2026-03-31T16:41:17.719458+00:00 +2026-03-23,Lovable,all,1,,20260331T162341Z,2026-03-31T16:41:17.719458+00:00 +2026-03-23,OpenAI Codex,all,254,,20260331T162341Z,2026-03-31T16:41:17.719458+00:00 +2026-03-23,OpenCode,all,1,,20260331T162341Z,2026-03-31T16:41:17.719458+00:00 +2026-03-23,OpenHands,all,150,,20260331T162341Z,2026-03-31T16:41:17.719458+00:00 +2026-03-23,Qwen Coder,all,0,,20260331T162341Z,2026-03-31T16:41:17.719458+00:00 +2026-03-23,Roo Code,all,80,,20260331T162341Z,2026-03-31T16:41:17.719458+00:00 +2026-03-23,Sketch,all,0,,20260331T162341Z,2026-03-31T16:41:17.719458+00:00 +2026-03-23,Sourcery AI,all,0,,20260331T162341Z,2026-03-31T16:41:17.719458+00:00 +2026-03-23,Sweep AI,all,0,,20260331T162341Z,2026-03-31T16:41:17.719458+00:00 +2026-03-23,Warp (Oz Agent),all,0,,20260331T162341Z,2026-03-31T16:41:17.719458+00:00 +2026-03-24,Aider,all,6,,20260331T162341Z,2026-03-31T16:43:29.623924+00:00 +2026-03-24,Amp (Sourcegraph),all,0,,20260331T162341Z,2026-03-31T16:43:29.623924+00:00 +2026-03-24,ChatGPT,all,3,,20260331T162341Z,2026-03-31T16:43:29.623924+00:00 +2026-03-24,Claude Code,all,42051,,20260331T162341Z,2026-03-31T16:43:29.623924+00:00 +2026-03-24,Cline,all,53,,20260331T162341Z,2026-03-31T16:43:29.623924+00:00 +2026-03-24,Codegen,all,17,,20260331T162341Z,2026-03-31T16:43:29.623924+00:00 +2026-03-24,Coderabbit,all,21,,20260331T162341Z,2026-03-31T16:43:29.623924+00:00 +2026-03-24,Copilot,all,282,,20260331T162341Z,2026-03-31T16:43:29.623924+00:00 +2026-03-24,Crush,all,0,,20260331T162341Z,2026-03-31T16:43:29.623924+00:00 +2026-03-24,Cursor,all,1329,,20260331T162341Z,2026-03-31T16:43:29.623924+00:00 +2026-03-24,DeepSource,all,31,,20260331T162341Z,2026-03-31T16:43:29.623924+00:00 +2026-03-24,Devin,all,100,,20260331T162341Z,2026-03-31T16:43:29.623924+00:00 +2026-03-24,Gemini CLI,all,0,,20260331T162341Z,2026-03-31T16:43:29.623924+00:00 +2026-03-24,Gemini Code Assist,all,0,,20260331T162341Z,2026-03-31T16:43:29.623924+00:00 +2026-03-24,Gru,all,0,,20260331T162341Z,2026-03-31T16:43:29.623924+00:00 +2026-03-24,Jules (Google),all,3974,,20260331T162341Z,2026-03-31T16:43:29.623924+00:00 +2026-03-24,Junie (JetBrains),all,44,,20260331T162341Z,2026-03-31T16:43:29.623924+00:00 +2026-03-24,Kilo Code,all,144,,20260331T162341Z,2026-03-31T16:43:29.623924+00:00 +2026-03-24,Lovable,all,0,,20260331T162341Z,2026-03-31T16:43:29.623924+00:00 +2026-03-24,OpenAI Codex,all,278,,20260331T162341Z,2026-03-31T16:43:29.623924+00:00 +2026-03-24,OpenCode,all,3,,20260331T162341Z,2026-03-31T16:43:29.623924+00:00 +2026-03-24,OpenHands,all,159,,20260331T162341Z,2026-03-31T16:43:29.623924+00:00 +2026-03-24,Qwen Coder,all,4,,20260331T162341Z,2026-03-31T16:43:29.623924+00:00 +2026-03-24,Roo Code,all,6,,20260331T162341Z,2026-03-31T16:43:29.623924+00:00 +2026-03-24,Sketch,all,0,,20260331T162341Z,2026-03-31T16:43:29.623924+00:00 +2026-03-24,Sourcery AI,all,0,,20260331T162341Z,2026-03-31T16:43:29.623924+00:00 +2026-03-24,Sweep AI,all,0,,20260331T162341Z,2026-03-31T16:43:29.623924+00:00 +2026-03-24,Warp (Oz Agent),all,0,,20260331T162341Z,2026-03-31T16:43:29.623924+00:00 +2026-03-25,Aider,all,0,,20260331T162341Z,2026-03-31T16:45:43.044745+00:00 +2026-03-25,Amp (Sourcegraph),all,0,,20260331T162341Z,2026-03-31T16:45:43.044745+00:00 +2026-03-25,ChatGPT,all,0,,20260331T162341Z,2026-03-31T16:45:43.044745+00:00 +2026-03-25,Claude Code,all,40144,,20260331T162341Z,2026-03-31T16:45:43.044745+00:00 +2026-03-25,Cline,all,94,,20260331T162341Z,2026-03-31T16:45:43.044745+00:00 +2026-03-25,Codegen,all,10,,20260331T162341Z,2026-03-31T16:45:43.044745+00:00 +2026-03-25,Coderabbit,all,22,,20260331T162341Z,2026-03-31T16:45:43.044745+00:00 +2026-03-25,Copilot,all,362,,20260331T162341Z,2026-03-31T16:45:43.044745+00:00 +2026-03-25,Crush,all,0,,20260331T162341Z,2026-03-31T16:45:43.044745+00:00 +2026-03-25,Cursor,all,1355,,20260331T162341Z,2026-03-31T16:45:43.044745+00:00 +2026-03-25,DeepSource,all,18,,20260331T162341Z,2026-03-31T16:45:43.044745+00:00 +2026-03-25,Devin,all,105,,20260331T162341Z,2026-03-31T16:45:43.044745+00:00 +2026-03-25,Gemini CLI,all,0,,20260331T162341Z,2026-03-31T16:45:43.044745+00:00 +2026-03-25,Gemini Code Assist,all,0,,20260331T162341Z,2026-03-31T16:45:43.044745+00:00 +2026-03-25,Gru,all,0,,20260331T162341Z,2026-03-31T16:45:43.044745+00:00 +2026-03-25,Jules (Google),all,3633,,20260331T162341Z,2026-03-31T16:45:43.044745+00:00 +2026-03-25,Junie (JetBrains),all,7,,20260331T162341Z,2026-03-31T16:45:43.044745+00:00 +2026-03-25,Kilo Code,all,153,,20260331T162341Z,2026-03-31T16:45:43.044745+00:00 +2026-03-25,Lovable,all,0,,20260331T162341Z,2026-03-31T16:45:43.044745+00:00 +2026-03-25,OpenAI Codex,all,421,,20260331T162341Z,2026-03-31T16:45:43.044745+00:00 +2026-03-25,OpenCode,all,0,,20260331T162341Z,2026-03-31T16:45:43.044745+00:00 +2026-03-25,OpenHands,all,421,,20260331T162341Z,2026-03-31T16:45:43.044745+00:00 +2026-03-25,Qwen Coder,all,1,,20260331T162341Z,2026-03-31T16:45:43.044745+00:00 +2026-03-25,Roo Code,all,46,,20260331T162341Z,2026-03-31T16:45:43.044745+00:00 +2026-03-25,Sketch,all,0,,20260331T162341Z,2026-03-31T16:45:43.044745+00:00 +2026-03-25,Sourcery AI,all,0,,20260331T162341Z,2026-03-31T16:45:43.044745+00:00 +2026-03-25,Sweep AI,all,0,,20260331T162341Z,2026-03-31T16:45:43.044745+00:00 +2026-03-25,Warp (Oz Agent),all,0,,20260331T162341Z,2026-03-31T16:45:43.044745+00:00 +2026-03-26,Aider,all,34,,20260331T162341Z,2026-03-31T16:47:56.545417+00:00 +2026-03-26,Amp (Sourcegraph),all,0,,20260331T162341Z,2026-03-31T16:47:56.545417+00:00 +2026-03-26,ChatGPT,all,4,,20260331T162341Z,2026-03-31T16:47:56.545417+00:00 +2026-03-26,Claude Code,all,39927,,20260331T162341Z,2026-03-31T16:47:56.545417+00:00 +2026-03-26,Cline,all,96,,20260331T162341Z,2026-03-31T16:47:56.545417+00:00 +2026-03-26,Codegen,all,1,,20260331T162341Z,2026-03-31T16:47:56.545417+00:00 +2026-03-26,Coderabbit,all,60,,20260331T162341Z,2026-03-31T16:47:56.545417+00:00 +2026-03-26,Copilot,all,270,,20260331T162341Z,2026-03-31T16:47:56.545417+00:00 +2026-03-26,Crush,all,0,,20260331T162341Z,2026-03-31T16:47:56.545417+00:00 +2026-03-26,Cursor,all,1642,,20260331T162341Z,2026-03-31T16:47:56.545417+00:00 +2026-03-26,DeepSource,all,5,,20260331T162341Z,2026-03-31T16:47:56.545417+00:00 +2026-03-26,Devin,all,93,,20260331T162341Z,2026-03-31T16:47:56.545417+00:00 +2026-03-26,Gemini CLI,all,0,,20260331T162341Z,2026-03-31T16:47:56.545417+00:00 +2026-03-26,Gemini Code Assist,all,0,,20260331T162341Z,2026-03-31T16:47:56.545417+00:00 +2026-03-26,Gru,all,0,,20260331T162341Z,2026-03-31T16:47:56.545417+00:00 +2026-03-26,Jules (Google),all,3650,,20260331T162341Z,2026-03-31T16:47:56.545417+00:00 +2026-03-26,Junie (JetBrains),all,28,,20260331T162341Z,2026-03-31T16:47:56.545417+00:00 +2026-03-26,Kilo Code,all,151,,20260331T162341Z,2026-03-31T16:47:56.545417+00:00 +2026-03-26,Lovable,all,0,,20260331T162341Z,2026-03-31T16:47:56.545417+00:00 +2026-03-26,OpenAI Codex,all,466,,20260331T162341Z,2026-03-31T16:47:56.545417+00:00 +2026-03-26,OpenCode,all,0,,20260331T162341Z,2026-03-31T16:47:56.545417+00:00 +2026-03-26,OpenHands,all,293,,20260331T162341Z,2026-03-31T16:47:56.545417+00:00 +2026-03-26,Qwen Coder,all,9,,20260331T162341Z,2026-03-31T16:47:56.545417+00:00 +2026-03-26,Roo Code,all,53,,20260331T162341Z,2026-03-31T16:47:56.545417+00:00 +2026-03-26,Sketch,all,0,,20260331T162341Z,2026-03-31T16:47:56.545417+00:00 +2026-03-26,Sourcery AI,all,0,,20260331T162341Z,2026-03-31T16:47:56.545417+00:00 +2026-03-26,Sweep AI,all,0,,20260331T162341Z,2026-03-31T16:47:56.545417+00:00 +2026-03-26,Warp (Oz Agent),all,0,,20260331T162341Z,2026-03-31T16:47:56.545417+00:00 +2026-03-27,Aider,all,0,,20260331T162341Z,2026-03-31T16:50:08.416502+00:00 +2026-03-27,Amp (Sourcegraph),all,0,,20260331T162341Z,2026-03-31T16:50:08.416502+00:00 +2026-03-27,ChatGPT,all,0,,20260331T162341Z,2026-03-31T16:50:08.416502+00:00 +2026-03-27,Claude Code,all,38321,,20260331T162341Z,2026-03-31T16:50:08.416502+00:00 +2026-03-27,Cline,all,64,,20260331T162341Z,2026-03-31T16:50:08.416502+00:00 +2026-03-27,Codegen,all,0,,20260331T162341Z,2026-03-31T16:50:08.416502+00:00 +2026-03-27,Coderabbit,all,39,,20260331T162341Z,2026-03-31T16:50:08.416502+00:00 +2026-03-27,Copilot,all,278,,20260331T162341Z,2026-03-31T16:50:08.416502+00:00 +2026-03-27,Crush,all,0,,20260331T162341Z,2026-03-31T16:50:08.416502+00:00 +2026-03-27,Cursor,all,1096,,20260331T162341Z,2026-03-31T16:50:08.416502+00:00 +2026-03-27,DeepSource,all,11,,20260331T162341Z,2026-03-31T16:50:08.416502+00:00 +2026-03-27,Devin,all,88,,20260331T162341Z,2026-03-31T16:50:08.416502+00:00 +2026-03-27,Gemini CLI,all,0,,20260331T162341Z,2026-03-31T16:50:08.416502+00:00 +2026-03-27,Gemini Code Assist,all,0,,20260331T162341Z,2026-03-31T16:50:08.416502+00:00 +2026-03-27,Gru,all,0,,20260331T162341Z,2026-03-31T16:50:08.416502+00:00 +2026-03-27,Jules (Google),all,3374,,20260331T162341Z,2026-03-31T16:50:08.416502+00:00 +2026-03-27,Junie (JetBrains),all,21,,20260331T162341Z,2026-03-31T16:50:08.416502+00:00 +2026-03-27,Kilo Code,all,49,,20260331T162341Z,2026-03-31T16:50:08.416502+00:00 +2026-03-27,Lovable,all,1,,20260331T162341Z,2026-03-31T16:50:08.416502+00:00 +2026-03-27,OpenAI Codex,all,490,,20260331T162341Z,2026-03-31T16:50:08.416502+00:00 +2026-03-27,OpenCode,all,0,,20260331T162341Z,2026-03-31T16:50:08.416502+00:00 +2026-03-27,OpenHands,all,383,1,20260331T162341Z,2026-03-31T16:50:08.416502+00:00 +2026-03-27,Qwen Coder,all,57,,20260331T162341Z,2026-03-31T16:50:08.416502+00:00 +2026-03-27,Roo Code,all,93,,20260331T162341Z,2026-03-31T16:50:08.416502+00:00 +2026-03-27,Sketch,all,0,,20260331T162341Z,2026-03-31T16:50:08.416502+00:00 +2026-03-27,Sourcery AI,all,0,,20260331T162341Z,2026-03-31T16:50:08.416502+00:00 +2026-03-27,Sweep AI,all,0,,20260331T162341Z,2026-03-31T16:50:08.416502+00:00 +2026-03-27,Warp (Oz Agent),all,0,,20260331T162341Z,2026-03-31T16:50:08.416502+00:00 +2026-03-28,Aider,all,2,,20260331T162341Z,2026-03-31T16:52:19.666094+00:00 +2026-03-28,Amp (Sourcegraph),all,0,,20260331T162341Z,2026-03-31T16:52:19.666094+00:00 +2026-03-28,ChatGPT,all,1,,20260331T162341Z,2026-03-31T16:52:19.666094+00:00 +2026-03-28,Claude Code,all,42621,,20260331T162341Z,2026-03-31T16:52:19.666094+00:00 +2026-03-28,Cline,all,25,,20260331T162341Z,2026-03-31T16:52:19.666094+00:00 +2026-03-28,Codegen,all,0,,20260331T162341Z,2026-03-31T16:52:19.666094+00:00 +2026-03-28,Coderabbit,all,41,,20260331T162341Z,2026-03-31T16:52:19.666094+00:00 +2026-03-28,Copilot,all,315,,20260331T162341Z,2026-03-31T16:52:19.666094+00:00 +2026-03-28,Crush,all,0,,20260331T162341Z,2026-03-31T16:52:19.666094+00:00 +2026-03-28,Cursor,all,943,,20260331T162341Z,2026-03-31T16:52:19.666094+00:00 +2026-03-28,DeepSource,all,20,,20260331T162341Z,2026-03-31T16:52:19.666094+00:00 +2026-03-28,Devin,all,111,,20260331T162341Z,2026-03-31T16:52:19.666094+00:00 +2026-03-28,Gemini CLI,all,0,,20260331T162341Z,2026-03-31T16:52:19.666094+00:00 +2026-03-28,Gemini Code Assist,all,0,,20260331T162341Z,2026-03-31T16:52:19.666094+00:00 +2026-03-28,Gru,all,0,,20260331T162341Z,2026-03-31T16:52:19.666094+00:00 +2026-03-28,Jules (Google),all,3288,,20260331T162341Z,2026-03-31T16:52:19.666094+00:00 +2026-03-28,Junie (JetBrains),all,2,,20260331T162341Z,2026-03-31T16:52:19.666094+00:00 +2026-03-28,Kilo Code,all,188,,20260331T162341Z,2026-03-31T16:52:19.666094+00:00 +2026-03-28,Lovable,all,0,,20260331T162341Z,2026-03-31T16:52:19.666094+00:00 +2026-03-28,OpenAI Codex,all,413,,20260331T162341Z,2026-03-31T16:52:19.666094+00:00 +2026-03-28,OpenCode,all,5,,20260331T162341Z,2026-03-31T16:52:19.666094+00:00 +2026-03-28,OpenHands,all,357,,20260331T162341Z,2026-03-31T16:52:19.666094+00:00 +2026-03-28,Qwen Coder,all,0,,20260331T162341Z,2026-03-31T16:52:19.666094+00:00 +2026-03-28,Roo Code,all,153,,20260331T162341Z,2026-03-31T16:52:19.666094+00:00 +2026-03-28,Sketch,all,0,,20260331T162341Z,2026-03-31T16:52:19.666094+00:00 +2026-03-28,Sourcery AI,all,0,,20260331T162341Z,2026-03-31T16:52:19.666094+00:00 +2026-03-28,Sweep AI,all,1,,20260331T162341Z,2026-03-31T16:52:19.666094+00:00 +2026-03-28,Warp (Oz Agent),all,0,,20260331T162341Z,2026-03-31T16:52:19.666094+00:00 +2026-03-29,Aider,all,16,,20260331T162341Z,2026-03-31T16:54:30.069189+00:00 +2026-03-29,Amp (Sourcegraph),all,0,,20260331T162341Z,2026-03-31T16:54:30.069189+00:00 +2026-03-29,ChatGPT,all,0,,20260331T162341Z,2026-03-31T16:54:30.069189+00:00 +2026-03-29,Claude Code,all,36493,,20260331T162341Z,2026-03-31T16:54:30.069189+00:00 +2026-03-29,Cline,all,106,,20260331T162341Z,2026-03-31T16:54:30.069189+00:00 +2026-03-29,Codegen,all,0,,20260331T162341Z,2026-03-31T16:54:30.069189+00:00 +2026-03-29,Coderabbit,all,58,,20260331T162341Z,2026-03-31T16:54:30.069189+00:00 +2026-03-29,Copilot,all,267,,20260331T162341Z,2026-03-31T16:54:30.069189+00:00 +2026-03-29,Crush,all,0,,20260331T162341Z,2026-03-31T16:54:30.069189+00:00 +2026-03-29,Cursor,all,1053,,20260331T162341Z,2026-03-31T16:54:30.069189+00:00 +2026-03-29,DeepSource,all,57,,20260331T162341Z,2026-03-31T16:54:30.069189+00:00 +2026-03-29,Devin,all,92,,20260331T162341Z,2026-03-31T16:54:30.069189+00:00 +2026-03-29,Gemini CLI,all,0,,20260331T162341Z,2026-03-31T16:54:30.069189+00:00 +2026-03-29,Gemini Code Assist,all,2,,20260331T162341Z,2026-03-31T16:54:30.069189+00:00 +2026-03-29,Gru,all,0,,20260331T162341Z,2026-03-31T16:54:30.069189+00:00 +2026-03-29,Jules (Google),all,3228,,20260331T162341Z,2026-03-31T16:54:30.069189+00:00 +2026-03-29,Junie (JetBrains),all,12,,20260331T162341Z,2026-03-31T16:54:30.069189+00:00 +2026-03-29,Kilo Code,all,186,,20260331T162341Z,2026-03-31T16:54:30.069189+00:00 +2026-03-29,Lovable,all,0,,20260331T162341Z,2026-03-31T16:54:30.069189+00:00 +2026-03-29,OpenAI Codex,all,530,,20260331T162341Z,2026-03-31T16:54:30.069189+00:00 +2026-03-29,OpenCode,all,0,,20260331T162341Z,2026-03-31T16:54:30.069189+00:00 +2026-03-29,OpenHands,all,377,,20260331T162341Z,2026-03-31T16:54:30.069189+00:00 +2026-03-29,Qwen Coder,all,0,,20260331T162341Z,2026-03-31T16:54:30.069189+00:00 +2026-03-29,Roo Code,all,89,,20260331T162341Z,2026-03-31T16:54:30.069189+00:00 +2026-03-29,Sketch,all,0,,20260331T162341Z,2026-03-31T16:54:30.069189+00:00 +2026-03-29,Sourcery AI,all,0,,20260331T162341Z,2026-03-31T16:54:30.069189+00:00 +2026-03-29,Sweep AI,all,1,,20260331T162341Z,2026-03-31T16:54:30.069189+00:00 +2026-03-29,Warp (Oz Agent),all,0,,20260331T162341Z,2026-03-31T16:54:30.069189+00:00 +2026-03-30,Aider,all,9,,20260331T170326Z,2026-03-31T17:03:26.626712+00:00 +2026-03-30,Amp (Sourcegraph),all,0,,20260331T170326Z,2026-03-31T17:03:26.626712+00:00 +2026-03-30,ChatGPT,all,0,,20260331T170326Z,2026-03-31T17:03:26.626712+00:00 +2026-03-30,Claude Code,all,37949,,20260331T170326Z,2026-03-31T17:03:26.626712+00:00 +2026-03-30,Cline,all,38,,20260331T170326Z,2026-03-31T17:03:26.626712+00:00 +2026-03-30,Codegen,all,0,,20260331T170326Z,2026-03-31T17:03:26.626712+00:00 +2026-03-30,Coderabbit,all,46,,20260331T170326Z,2026-03-31T17:03:26.626712+00:00 +2026-03-30,Copilot,all,289,1,20260331T170326Z,2026-03-31T17:03:26.626712+00:00 +2026-03-30,Crush,all,0,,20260331T170326Z,2026-03-31T17:03:26.626712+00:00 +2026-03-30,Cursor,all,1260,,20260331T170326Z,2026-03-31T17:03:26.626712+00:00 +2026-03-30,DeepSource,all,2,,20260331T170326Z,2026-03-31T17:03:26.626712+00:00 +2026-03-30,Devin,all,91,,20260331T170326Z,2026-03-31T17:03:26.626712+00:00 +2026-03-30,Gemini CLI,all,0,,20260331T170326Z,2026-03-31T17:03:26.626712+00:00 +2026-03-30,Gemini Code Assist,all,7,,20260331T170326Z,2026-03-31T17:03:26.626712+00:00 +2026-03-30,Gru,all,0,,20260331T170326Z,2026-03-31T17:03:26.626712+00:00 +2026-03-30,Jules (Google),all,3069,,20260331T170326Z,2026-03-31T17:03:26.626712+00:00 +2026-03-30,Junie (JetBrains),all,40,,20260331T170326Z,2026-03-31T17:03:26.626712+00:00 +2026-03-30,Kilo Code,all,124,,20260331T170326Z,2026-03-31T17:03:26.626712+00:00 +2026-03-30,Lovable,all,0,,20260331T170326Z,2026-03-31T17:03:26.626712+00:00 +2026-03-30,OpenAI Codex,all,366,,20260331T170326Z,2026-03-31T17:03:26.626712+00:00 +2026-03-30,OpenCode,all,0,,20260331T170326Z,2026-03-31T17:03:26.626712+00:00 +2026-03-30,OpenHands,all,166,,20260331T170326Z,2026-03-31T17:03:26.626712+00:00 +2026-03-30,Qwen Coder,all,0,,20260331T170326Z,2026-03-31T17:03:26.626712+00:00 +2026-03-30,Roo Code,all,66,,20260331T170326Z,2026-03-31T17:03:26.626712+00:00 +2026-03-30,Sketch,all,0,,20260331T170326Z,2026-03-31T17:03:26.626712+00:00 +2026-03-30,Sourcery AI,all,0,,20260331T170326Z,2026-03-31T17:03:26.626712+00:00 +2026-03-30,Sweep AI,all,0,,20260331T170326Z,2026-03-31T17:03:26.626712+00:00 +2026-03-30,Warp (Oz Agent),all,0,,20260331T170326Z,2026-03-31T17:03:26.626712+00:00 +2026-03-31,Aider,all,8,,20260331T162341Z,2026-03-31T16:56:41.238455+00:00 +2026-03-31,Amp (Sourcegraph),all,0,,20260331T162341Z,2026-03-31T16:56:41.238455+00:00 +2026-03-31,ChatGPT,all,4,,20260331T162341Z,2026-03-31T16:56:41.238455+00:00 +2026-03-31,Claude Code,all,24037,,20260331T162341Z,2026-03-31T16:56:41.238455+00:00 +2026-03-31,Cline,all,26,,20260331T162341Z,2026-03-31T16:56:41.238455+00:00 +2026-03-31,Codegen,all,0,,20260331T162341Z,2026-03-31T16:56:41.238455+00:00 +2026-03-31,Coderabbit,all,40,,20260331T162341Z,2026-03-31T16:56:41.238455+00:00 +2026-03-31,Copilot,all,152,,20260331T162341Z,2026-03-31T16:56:41.238455+00:00 +2026-03-31,Crush,all,0,,20260331T162341Z,2026-03-31T16:56:41.238455+00:00 +2026-03-31,Cursor,all,643,,20260331T162341Z,2026-03-31T16:56:41.238455+00:00 +2026-03-31,DeepSource,all,3,,20260331T162341Z,2026-03-31T16:56:41.238455+00:00 +2026-03-31,Devin,all,49,,20260331T162341Z,2026-03-31T16:56:41.238455+00:00 +2026-03-31,Gemini CLI,all,0,,20260331T162341Z,2026-03-31T16:56:41.238455+00:00 +2026-03-31,Gemini Code Assist,all,0,,20260331T162341Z,2026-03-31T16:56:41.238455+00:00 +2026-03-31,Gru,all,0,,20260331T162341Z,2026-03-31T16:56:41.238455+00:00 +2026-03-31,Jules (Google),all,1902,,20260331T162341Z,2026-03-31T16:56:41.238455+00:00 +2026-03-31,Junie (JetBrains),all,14,,20260331T162341Z,2026-03-31T16:56:41.238455+00:00 +2026-03-31,Kilo Code,all,117,,20260331T162341Z,2026-03-31T16:56:41.238455+00:00 +2026-03-31,Lovable,all,1,,20260331T162341Z,2026-03-31T16:56:41.238455+00:00 +2026-03-31,OpenAI Codex,all,359,,20260331T162341Z,2026-03-31T16:56:41.238455+00:00 +2026-03-31,OpenCode,all,0,,20260331T162341Z,2026-03-31T16:56:41.238455+00:00 +2026-03-31,OpenHands,all,164,,20260331T162341Z,2026-03-31T16:56:41.238455+00:00 +2026-03-31,Qwen Coder,all,1,,20260331T162341Z,2026-03-31T16:56:41.238455+00:00 +2026-03-31,Roo Code,all,60,,20260331T162341Z,2026-03-31T16:56:41.238455+00:00 +2026-03-31,Sketch,all,0,,20260331T162341Z,2026-03-31T16:56:41.238455+00:00 +2026-03-31,Sourcery AI,all,0,,20260331T162341Z,2026-03-31T16:56:41.238455+00:00 +2026-03-31,Sweep AI,all,1,,20260331T162341Z,2026-03-31T16:56:41.238455+00:00 +2026-03-31,Warp (Oz Agent),all,0,,20260331T162341Z,2026-03-31T16:56:41.238455+00:00 +2026-04-01,Aider,all,0,,20260408T165316Z,2026-04-08T19:07:49.985080+00:00 +2026-04-01,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T19:07:49.985080+00:00 +2026-04-01,ChatGPT,all,5,,20260408T165316Z,2026-04-08T19:07:49.985080+00:00 +2026-04-01,Claude Code,all,37945,,20260408T165316Z,2026-04-08T19:07:49.985080+00:00 +2026-04-01,Cline,all,76,,20260408T165316Z,2026-04-08T19:07:49.985080+00:00 +2026-04-01,Codegen,all,0,,20260408T165316Z,2026-04-08T19:07:49.985080+00:00 +2026-04-01,Coderabbit,all,59,,20260408T165316Z,2026-04-08T19:07:49.985080+00:00 +2026-04-01,Copilot,all,323,,20260408T165316Z,2026-04-08T19:07:49.985080+00:00 +2026-04-01,Crush,all,0,,20260408T165316Z,2026-04-08T19:07:49.985080+00:00 +2026-04-01,Cursor,all,1566,,20260408T165316Z,2026-04-08T19:07:49.985080+00:00 +2026-04-01,DeepSource,all,2,,20260408T165316Z,2026-04-08T19:07:49.985080+00:00 +2026-04-01,Devin,all,79,,20260408T165316Z,2026-04-08T19:07:49.985080+00:00 +2026-04-01,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T19:07:49.985080+00:00 +2026-04-01,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T19:07:49.985080+00:00 +2026-04-01,Gru,all,0,,20260408T165316Z,2026-04-08T19:07:49.985080+00:00 +2026-04-01,Jules (Google),all,3139,,20260408T165316Z,2026-04-08T19:07:49.985080+00:00 +2026-04-01,Junie (JetBrains),all,20,,20260408T165316Z,2026-04-08T19:07:49.985080+00:00 +2026-04-01,Kilo Code,all,83,,20260408T165316Z,2026-04-08T19:07:49.985080+00:00 +2026-04-01,Lovable,all,0,,20260408T165316Z,2026-04-08T19:07:49.985080+00:00 +2026-04-01,OpenAI Codex,all,381,,20260408T165316Z,2026-04-08T19:07:49.985080+00:00 +2026-04-01,OpenCode,all,0,,20260408T165316Z,2026-04-08T19:07:49.985080+00:00 +2026-04-01,OpenHands,all,274,,20260408T165316Z,2026-04-08T19:07:49.985080+00:00 +2026-04-01,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T19:07:49.985080+00:00 +2026-04-01,Roo Code,all,31,,20260408T165316Z,2026-04-08T19:07:49.985080+00:00 +2026-04-01,Sketch,all,0,,20260408T165316Z,2026-04-08T19:07:49.985080+00:00 +2026-04-01,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T19:07:49.985080+00:00 +2026-04-01,Sweep AI,all,0,,20260408T165316Z,2026-04-08T19:07:49.985080+00:00 +2026-04-01,Warp (Oz Agent),all,4,,20260408T165316Z,2026-04-08T19:07:49.985080+00:00 +2026-04-02,Aider,all,3,,20260408T165316Z,2026-04-08T19:10:00.488663+00:00 +2026-04-02,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T19:10:00.488663+00:00 +2026-04-02,ChatGPT,all,13,,20260408T165316Z,2026-04-08T19:10:00.488663+00:00 +2026-04-02,Claude Code,all,36632,,20260408T165316Z,2026-04-08T19:10:00.488663+00:00 +2026-04-02,Cline,all,126,,20260408T165316Z,2026-04-08T19:10:00.488663+00:00 +2026-04-02,Codegen,all,0,,20260408T165316Z,2026-04-08T19:10:00.488663+00:00 +2026-04-02,Coderabbit,all,52,,20260408T165316Z,2026-04-08T19:10:00.488663+00:00 +2026-04-02,Copilot,all,262,,20260408T165316Z,2026-04-08T19:10:00.488663+00:00 +2026-04-02,Crush,all,3,,20260408T165316Z,2026-04-08T19:10:00.488663+00:00 +2026-04-02,Cursor,all,1299,,20260408T165316Z,2026-04-08T19:10:00.488663+00:00 +2026-04-02,DeepSource,all,4,,20260408T165316Z,2026-04-08T19:10:00.488663+00:00 +2026-04-02,Devin,all,118,,20260408T165316Z,2026-04-08T19:10:00.488663+00:00 +2026-04-02,Gemini CLI,all,8,,20260408T165316Z,2026-04-08T19:10:00.488663+00:00 +2026-04-02,Gemini Code Assist,all,1,,20260408T165316Z,2026-04-08T19:10:00.488663+00:00 +2026-04-02,Gru,all,0,,20260408T165316Z,2026-04-08T19:10:00.488663+00:00 +2026-04-02,Jules (Google),all,3301,,20260408T165316Z,2026-04-08T19:10:00.488663+00:00 +2026-04-02,Junie (JetBrains),all,12,,20260408T165316Z,2026-04-08T19:10:00.488663+00:00 +2026-04-02,Kilo Code,all,164,,20260408T165316Z,2026-04-08T19:10:00.488663+00:00 +2026-04-02,Lovable,all,0,,20260408T165316Z,2026-04-08T19:10:00.488663+00:00 +2026-04-02,OpenAI Codex,all,489,,20260408T165316Z,2026-04-08T19:10:00.488663+00:00 +2026-04-02,OpenCode,all,0,,20260408T165316Z,2026-04-08T19:10:00.488663+00:00 +2026-04-02,OpenHands,all,216,,20260408T165316Z,2026-04-08T19:10:00.488663+00:00 +2026-04-02,Qwen Coder,all,1,,20260408T165316Z,2026-04-08T19:10:00.488663+00:00 +2026-04-02,Roo Code,all,29,,20260408T165316Z,2026-04-08T19:10:00.488663+00:00 +2026-04-02,Sketch,all,0,,20260408T165316Z,2026-04-08T19:10:00.488663+00:00 +2026-04-02,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T19:10:00.488663+00:00 +2026-04-02,Sweep AI,all,0,,20260408T165316Z,2026-04-08T19:10:00.488663+00:00 +2026-04-02,Warp (Oz Agent),all,1,,20260408T165316Z,2026-04-08T19:10:00.488663+00:00 +2026-04-03,Aider,all,72,,20260408T165316Z,2026-04-08T19:12:11.716388+00:00 +2026-04-03,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T19:12:11.716388+00:00 +2026-04-03,ChatGPT,all,4,,20260408T165316Z,2026-04-08T19:12:11.716388+00:00 +2026-04-03,Claude Code,all,36581,,20260408T165316Z,2026-04-08T19:12:11.716388+00:00 +2026-04-03,Cline,all,119,,20260408T165316Z,2026-04-08T19:12:11.716388+00:00 +2026-04-03,Codegen,all,0,,20260408T165316Z,2026-04-08T19:12:11.716388+00:00 +2026-04-03,Coderabbit,all,56,,20260408T165316Z,2026-04-08T19:12:11.716388+00:00 +2026-04-03,Copilot,all,397,,20260408T165316Z,2026-04-08T19:12:11.716388+00:00 +2026-04-03,Crush,all,0,,20260408T165316Z,2026-04-08T19:12:11.716388+00:00 +2026-04-03,Cursor,all,1324,,20260408T165316Z,2026-04-08T19:12:11.716388+00:00 +2026-04-03,DeepSource,all,0,,20260408T165316Z,2026-04-08T19:12:11.716388+00:00 +2026-04-03,Devin,all,139,,20260408T165316Z,2026-04-08T19:12:11.716388+00:00 +2026-04-03,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T19:12:11.716388+00:00 +2026-04-03,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T19:12:11.716388+00:00 +2026-04-03,Gru,all,0,,20260408T165316Z,2026-04-08T19:12:11.716388+00:00 +2026-04-03,Jules (Google),all,3156,,20260408T165316Z,2026-04-08T19:12:11.716388+00:00 +2026-04-03,Junie (JetBrains),all,10,,20260408T165316Z,2026-04-08T19:12:11.716388+00:00 +2026-04-03,Kilo Code,all,62,,20260408T165316Z,2026-04-08T19:12:11.716388+00:00 +2026-04-03,Lovable,all,0,,20260408T165316Z,2026-04-08T19:12:11.716388+00:00 +2026-04-03,OpenAI Codex,all,573,,20260408T165316Z,2026-04-08T19:12:11.716388+00:00 +2026-04-03,OpenCode,all,0,,20260408T165316Z,2026-04-08T19:12:11.716388+00:00 +2026-04-03,OpenHands,all,259,,20260408T165316Z,2026-04-08T19:12:11.716388+00:00 +2026-04-03,Qwen Coder,all,5,,20260408T165316Z,2026-04-08T19:12:11.716388+00:00 +2026-04-03,Roo Code,all,45,,20260408T165316Z,2026-04-08T19:12:11.716388+00:00 +2026-04-03,Sketch,all,0,,20260408T165316Z,2026-04-08T19:12:11.716388+00:00 +2026-04-03,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T19:12:11.716388+00:00 +2026-04-03,Sweep AI,all,0,,20260408T165316Z,2026-04-08T19:12:11.716388+00:00 +2026-04-03,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T19:12:11.716388+00:00 +2026-04-04,Aider,all,8,,20260408T165316Z,2026-04-08T19:14:22.788824+00:00 +2026-04-04,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T19:14:22.788824+00:00 +2026-04-04,ChatGPT,all,0,,20260408T165316Z,2026-04-08T19:14:22.788824+00:00 +2026-04-04,Claude Code,all,39395,,20260408T165316Z,2026-04-08T19:14:22.788824+00:00 +2026-04-04,Cline,all,110,,20260408T165316Z,2026-04-08T19:14:22.788824+00:00 +2026-04-04,Codegen,all,0,,20260408T165316Z,2026-04-08T19:14:22.788824+00:00 +2026-04-04,Coderabbit,all,47,,20260408T165316Z,2026-04-08T19:14:22.788824+00:00 +2026-04-04,Copilot,all,402,,20260408T165316Z,2026-04-08T19:14:22.788824+00:00 +2026-04-04,Crush,all,0,,20260408T165316Z,2026-04-08T19:14:22.788824+00:00 +2026-04-04,Cursor,all,1521,,20260408T165316Z,2026-04-08T19:14:22.788824+00:00 +2026-04-04,DeepSource,all,3,,20260408T165316Z,2026-04-08T19:14:22.788824+00:00 +2026-04-04,Devin,all,72,,20260408T165316Z,2026-04-08T19:14:22.788824+00:00 +2026-04-04,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T19:14:22.788824+00:00 +2026-04-04,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T19:14:22.788824+00:00 +2026-04-04,Gru,all,0,,20260408T165316Z,2026-04-08T19:14:22.788824+00:00 +2026-04-04,Jules (Google),all,3125,,20260408T165316Z,2026-04-08T19:14:22.788824+00:00 +2026-04-04,Junie (JetBrains),all,6,,20260408T165316Z,2026-04-08T19:14:22.788824+00:00 +2026-04-04,Kilo Code,all,48,,20260408T165316Z,2026-04-08T19:14:22.788824+00:00 +2026-04-04,Lovable,all,0,,20260408T165316Z,2026-04-08T19:14:22.788824+00:00 +2026-04-04,OpenAI Codex,all,470,,20260408T165316Z,2026-04-08T19:14:22.788824+00:00 +2026-04-04,OpenCode,all,0,,20260408T165316Z,2026-04-08T19:14:22.788824+00:00 +2026-04-04,OpenHands,all,287,,20260408T165316Z,2026-04-08T19:14:22.788824+00:00 +2026-04-04,Qwen Coder,all,5,,20260408T165316Z,2026-04-08T19:14:22.788824+00:00 +2026-04-04,Roo Code,all,44,,20260408T165316Z,2026-04-08T19:14:22.788824+00:00 +2026-04-04,Sketch,all,0,,20260408T165316Z,2026-04-08T19:14:22.788824+00:00 +2026-04-04,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T19:14:22.788824+00:00 +2026-04-04,Sweep AI,all,0,,20260408T165316Z,2026-04-08T19:14:22.788824+00:00 +2026-04-04,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T19:14:22.788824+00:00 +2026-04-05,Aider,all,1,,20260408T165316Z,2026-04-08T19:16:34.030149+00:00 +2026-04-05,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T19:16:34.030149+00:00 +2026-04-05,ChatGPT,all,0,,20260408T165316Z,2026-04-08T19:16:34.030149+00:00 +2026-04-05,Claude Code,all,40155,,20260408T165316Z,2026-04-08T19:16:34.030149+00:00 +2026-04-05,Cline,all,77,,20260408T165316Z,2026-04-08T19:16:34.030149+00:00 +2026-04-05,Codegen,all,0,,20260408T165316Z,2026-04-08T19:16:34.030149+00:00 +2026-04-05,Coderabbit,all,51,,20260408T165316Z,2026-04-08T19:16:34.030149+00:00 +2026-04-05,Copilot,all,306,,20260408T165316Z,2026-04-08T19:16:34.030149+00:00 +2026-04-05,Crush,all,0,,20260408T165316Z,2026-04-08T19:16:34.030149+00:00 +2026-04-05,Cursor,all,1338,,20260408T165316Z,2026-04-08T19:16:34.030149+00:00 +2026-04-05,DeepSource,all,4,,20260408T165316Z,2026-04-08T19:16:34.030149+00:00 +2026-04-05,Devin,all,178,1,20260408T165316Z,2026-04-08T19:16:34.030149+00:00 +2026-04-05,Gemini CLI,all,5,,20260408T165316Z,2026-04-08T19:16:34.030149+00:00 +2026-04-05,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T19:16:34.030149+00:00 +2026-04-05,Gru,all,0,,20260408T165316Z,2026-04-08T19:16:34.030149+00:00 +2026-04-05,Jules (Google),all,3020,,20260408T165316Z,2026-04-08T19:16:34.030149+00:00 +2026-04-05,Junie (JetBrains),all,2,,20260408T165316Z,2026-04-08T19:16:34.030149+00:00 +2026-04-05,Kilo Code,all,80,,20260408T165316Z,2026-04-08T19:16:34.030149+00:00 +2026-04-05,Lovable,all,0,,20260408T165316Z,2026-04-08T19:16:34.030149+00:00 +2026-04-05,OpenAI Codex,all,498,,20260408T165316Z,2026-04-08T19:16:34.030149+00:00 +2026-04-05,OpenCode,all,0,,20260408T165316Z,2026-04-08T19:16:34.030149+00:00 +2026-04-05,OpenHands,all,168,,20260408T165316Z,2026-04-08T19:16:34.030149+00:00 +2026-04-05,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T19:16:34.030149+00:00 +2026-04-05,Roo Code,all,83,,20260408T165316Z,2026-04-08T19:16:34.030149+00:00 +2026-04-05,Sketch,all,0,,20260408T165316Z,2026-04-08T19:16:34.030149+00:00 +2026-04-05,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T19:16:34.030149+00:00 +2026-04-05,Sweep AI,all,0,,20260408T165316Z,2026-04-08T19:16:34.030149+00:00 +2026-04-05,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T19:16:34.030149+00:00 +2026-04-06,Aider,all,2,,20260408T165316Z,2026-04-08T19:18:45.963012+00:00 +2026-04-06,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T19:18:45.963012+00:00 +2026-04-06,ChatGPT,all,8,,20260408T165316Z,2026-04-08T19:18:45.963012+00:00 +2026-04-06,Claude Code,all,43247,,20260408T165316Z,2026-04-08T19:18:45.963012+00:00 +2026-04-06,Cline,all,87,,20260408T165316Z,2026-04-08T19:18:45.963012+00:00 +2026-04-06,Codegen,all,0,,20260408T165316Z,2026-04-08T19:18:45.963012+00:00 +2026-04-06,Coderabbit,all,67,,20260408T165316Z,2026-04-08T19:18:45.963012+00:00 +2026-04-06,Copilot,all,370,,20260408T165316Z,2026-04-08T19:18:45.963012+00:00 +2026-04-06,Crush,all,0,,20260408T165316Z,2026-04-08T19:18:45.963012+00:00 +2026-04-06,Cursor,all,1496,,20260408T165316Z,2026-04-08T19:18:45.963012+00:00 +2026-04-06,DeepSource,all,3,,20260408T165316Z,2026-04-08T19:18:45.963012+00:00 +2026-04-06,Devin,all,86,,20260408T165316Z,2026-04-08T19:18:45.963012+00:00 +2026-04-06,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T19:18:45.963012+00:00 +2026-04-06,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T19:18:45.963012+00:00 +2026-04-06,Gru,all,0,,20260408T165316Z,2026-04-08T19:18:45.963012+00:00 +2026-04-06,Jules (Google),all,3252,,20260408T165316Z,2026-04-08T19:18:45.963012+00:00 +2026-04-06,Junie (JetBrains),all,1,,20260408T165316Z,2026-04-08T19:18:45.963012+00:00 +2026-04-06,Kilo Code,all,59,,20260408T165316Z,2026-04-08T19:18:45.963012+00:00 +2026-04-06,Lovable,all,0,,20260408T165316Z,2026-04-08T19:18:45.963012+00:00 +2026-04-06,OpenAI Codex,all,597,,20260408T165316Z,2026-04-08T19:18:45.963012+00:00 +2026-04-06,OpenCode,all,0,,20260408T165316Z,2026-04-08T19:18:45.963012+00:00 +2026-04-06,OpenHands,all,239,,20260408T165316Z,2026-04-08T19:18:45.963012+00:00 +2026-04-06,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T19:18:45.963012+00:00 +2026-04-06,Roo Code,all,48,,20260408T165316Z,2026-04-08T19:18:45.963012+00:00 +2026-04-06,Sketch,all,0,,20260408T165316Z,2026-04-08T19:18:45.963012+00:00 +2026-04-06,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T19:18:45.963012+00:00 +2026-04-06,Sweep AI,all,0,,20260408T165316Z,2026-04-08T19:18:45.963012+00:00 +2026-04-06,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T19:18:45.963012+00:00 +2026-04-07,Aider,all,2,,20260408T165316Z,2026-04-08T19:20:56.994116+00:00 +2026-04-07,Amp (Sourcegraph),all,0,,20260408T165316Z,2026-04-08T19:20:56.994116+00:00 +2026-04-07,ChatGPT,all,10,,20260408T165316Z,2026-04-08T19:20:56.994116+00:00 +2026-04-07,Claude Code,all,43606,,20260408T165316Z,2026-04-08T19:20:56.994116+00:00 +2026-04-07,Cline,all,108,,20260408T165316Z,2026-04-08T19:20:56.994116+00:00 +2026-04-07,Codegen,all,0,,20260408T165316Z,2026-04-08T19:20:56.994116+00:00 +2026-04-07,Coderabbit,all,51,,20260408T165316Z,2026-04-08T19:20:56.994116+00:00 +2026-04-07,Copilot,all,358,,20260408T165316Z,2026-04-08T19:20:56.994116+00:00 +2026-04-07,Crush,all,5,,20260408T165316Z,2026-04-08T19:20:56.994116+00:00 +2026-04-07,Cursor,all,2740,,20260408T165316Z,2026-04-08T19:20:56.994116+00:00 +2026-04-07,DeepSource,all,3,,20260408T165316Z,2026-04-08T19:20:56.994116+00:00 +2026-04-07,Devin,all,230,,20260408T165316Z,2026-04-08T19:20:56.994116+00:00 +2026-04-07,Gemini CLI,all,0,,20260408T165316Z,2026-04-08T19:20:56.994116+00:00 +2026-04-07,Gemini Code Assist,all,0,,20260408T165316Z,2026-04-08T19:20:56.994116+00:00 +2026-04-07,Gru,all,0,,20260408T165316Z,2026-04-08T19:20:56.994116+00:00 +2026-04-07,Jules (Google),all,3226,,20260408T165316Z,2026-04-08T19:20:56.994116+00:00 +2026-04-07,Junie (JetBrains),all,22,,20260408T165316Z,2026-04-08T19:20:56.994116+00:00 +2026-04-07,Kilo Code,all,69,,20260408T165316Z,2026-04-08T19:20:56.994116+00:00 +2026-04-07,Lovable,all,1,,20260408T165316Z,2026-04-08T19:20:56.994116+00:00 +2026-04-07,OpenAI Codex,all,603,,20260408T165316Z,2026-04-08T19:20:56.994116+00:00 +2026-04-07,OpenCode,all,0,,20260408T165316Z,2026-04-08T19:20:56.994116+00:00 +2026-04-07,OpenHands,all,258,,20260408T165316Z,2026-04-08T19:20:56.994116+00:00 +2026-04-07,Qwen Coder,all,0,,20260408T165316Z,2026-04-08T19:20:56.994116+00:00 +2026-04-07,Roo Code,all,100,,20260408T165316Z,2026-04-08T19:20:56.994116+00:00 +2026-04-07,Sketch,all,0,,20260408T165316Z,2026-04-08T19:20:56.994116+00:00 +2026-04-07,Sourcery AI,all,0,,20260408T165316Z,2026-04-08T19:20:56.994116+00:00 +2026-04-07,Sweep AI,all,0,,20260408T165316Z,2026-04-08T19:20:56.994116+00:00 +2026-04-07,Warp (Oz Agent),all,0,,20260408T165316Z,2026-04-08T19:20:56.994116+00:00 +2026-04-08,Aider,all,2,,20260409T204843Z,2026-04-09T20:57:07.529509+00:00 +2026-04-08,Amp (Sourcegraph),all,0,,20260409T204843Z,2026-04-09T20:57:07.529509+00:00 +2026-04-08,ChatGPT,all,1,,20260409T204843Z,2026-04-09T20:57:07.529509+00:00 +2026-04-08,Claude Code,all,38768,,20260409T204843Z,2026-04-09T20:57:07.529509+00:00 +2026-04-08,Cline,all,102,,20260409T204843Z,2026-04-09T20:57:07.529509+00:00 +2026-04-08,Codegen,all,0,,20260409T204843Z,2026-04-09T20:57:07.529509+00:00 +2026-04-08,Coderabbit,all,75,,20260409T204843Z,2026-04-09T20:57:07.529509+00:00 +2026-04-08,Copilot,all,371,,20260409T204843Z,2026-04-09T20:57:07.529509+00:00 +2026-04-08,Crush,all,0,,20260409T204843Z,2026-04-09T20:57:07.529509+00:00 +2026-04-08,Cursor,all,1578,,20260409T204843Z,2026-04-09T20:57:07.529509+00:00 +2026-04-08,DeepSource,all,5,,20260409T214616Z,2026-04-09T21:46:16.167225+00:00 +2026-04-08,Devin,all,181,,20260409T204843Z,2026-04-09T20:57:07.529509+00:00 +2026-04-08,Gemini CLI,all,6,,20260409T204843Z,2026-04-09T20:57:07.529509+00:00 +2026-04-08,Gemini Code Assist,all,0,,20260409T204843Z,2026-04-09T20:57:07.529509+00:00 +2026-04-08,Gru,all,0,,20260409T204843Z,2026-04-09T20:57:07.529509+00:00 +2026-04-08,Jules (Google),all,3262,,20260409T204843Z,2026-04-09T20:57:07.529509+00:00 +2026-04-08,Junie (JetBrains),all,30,,20260409T204843Z,2026-04-09T20:57:07.529509+00:00 +2026-04-08,Kilo Code,all,35,,20260409T204843Z,2026-04-09T20:57:07.529509+00:00 +2026-04-08,Lovable,all,0,,20260409T204843Z,2026-04-09T20:57:07.529509+00:00 +2026-04-08,OpenAI Codex,all,478,,20260409T204843Z,2026-04-09T20:57:07.529509+00:00 +2026-04-08,OpenCode,all,0,,20260409T204843Z,2026-04-09T20:57:07.529509+00:00 +2026-04-08,OpenHands,all,146,,20260409T204843Z,2026-04-09T20:57:07.529509+00:00 +2026-04-08,Qwen Coder,all,0,,20260409T204843Z,2026-04-09T20:57:07.529509+00:00 +2026-04-08,Roo Code,all,106,,20260409T204843Z,2026-04-09T20:57:07.529509+00:00 +2026-04-08,Sketch,all,0,,20260409T204843Z,2026-04-09T20:57:07.529509+00:00 +2026-04-08,Sourcery AI,all,0,,20260409T214616Z,2026-04-09T21:46:16.167225+00:00 +2026-04-08,Sweep AI,all,0,,20260409T214616Z,2026-04-09T21:46:16.167225+00:00 +2026-04-08,Warp (Oz Agent),all,0,,20260409T204843Z,2026-04-09T20:57:07.529509+00:00 +2026-03-15,Copilot SWE Agent,all,16445,1,20260410T053920Z,2026-04-10T05:39:20.977423+00:00 +2026-03-15,Copilot SWE Agent (new),all,18925,,20260410T053920Z,2026-04-10T05:39:20.977423+00:00 +2026-03-16,Copilot SWE Agent,all,16521,,20260410T053920Z,2026-04-10T05:39:46.280478+00:00 +2026-03-16,Copilot SWE Agent (new),all,19278,,20260410T053920Z,2026-04-10T05:39:46.280478+00:00 +2026-03-17,Copilot SWE Agent,all,16658,,20260410T053920Z,2026-04-10T05:40:11.415787+00:00 +2026-03-17,Copilot SWE Agent (new),all,19392,,20260410T053920Z,2026-04-10T05:40:11.415787+00:00 +2026-03-18,Copilot SWE Agent,all,15857,1,20260410T053920Z,2026-04-10T05:40:39.498037+00:00 +2026-03-18,Copilot SWE Agent (new),all,18669,,20260410T053920Z,2026-04-10T05:40:39.498037+00:00 +2026-03-19,Copilot SWE Agent,all,14698,,20260410T053920Z,2026-04-10T05:41:04.382266+00:00 +2026-03-19,Copilot SWE Agent (new),all,16995,,20260410T053920Z,2026-04-10T05:41:04.382266+00:00 +2026-03-20,Copilot SWE Agent,all,14728,,20260410T053920Z,2026-04-10T05:41:29.265653+00:00 +2026-03-20,Copilot SWE Agent (new),all,17458,,20260410T053920Z,2026-04-10T05:41:29.265653+00:00 +2026-03-21,Copilot SWE Agent,all,13318,,20260410T053920Z,2026-04-10T05:41:54.152318+00:00 +2026-03-21,Copilot SWE Agent (new),all,15627,,20260410T053920Z,2026-04-10T05:41:54.152318+00:00 +2026-03-22,Copilot SWE Agent,all,13968,,20260410T053920Z,2026-04-10T05:42:18.942867+00:00 +2026-03-22,Copilot SWE Agent (new),all,16345,,20260410T053920Z,2026-04-10T05:42:18.942867+00:00 +2026-03-23,Copilot SWE Agent,all,15499,,20260410T053920Z,2026-04-10T05:42:44.708898+00:00 +2026-03-23,Copilot SWE Agent (new),all,18041,,20260410T053920Z,2026-04-10T05:42:44.708898+00:00 +2026-03-24,Copilot SWE Agent,all,15070,,20260410T053920Z,2026-04-10T05:43:10.601747+00:00 +2026-03-24,Copilot SWE Agent (new),all,17634,,20260410T053920Z,2026-04-10T05:43:10.601747+00:00 +2026-03-25,Copilot SWE Agent,all,15186,,20260410T053920Z,2026-04-10T05:43:35.312887+00:00 +2026-03-25,Copilot SWE Agent (new),all,18028,,20260410T053920Z,2026-04-10T05:43:35.312887+00:00 +2026-03-26,Copilot SWE Agent,all,10358,,20260410T053920Z,2026-04-10T05:44:00.075680+00:00 +2026-03-26,Copilot SWE Agent (new),all,17588,,20260410T053920Z,2026-04-10T05:44:00.075680+00:00 +2026-03-27,Copilot SWE Agent,all,6868,,20260410T053920Z,2026-04-10T05:44:24.943619+00:00 +2026-03-27,Copilot SWE Agent (new),all,15389,,20260410T053920Z,2026-04-10T05:44:24.943619+00:00 +2026-03-28,Copilot SWE Agent,all,7154,,20260410T053920Z,2026-04-10T05:44:49.731845+00:00 +2026-03-28,Copilot SWE Agent (new),all,15633,,20260410T053920Z,2026-04-10T05:44:49.731845+00:00 +2026-03-29,Copilot SWE Agent,all,7061,,20260410T053920Z,2026-04-10T05:45:14.650165+00:00 +2026-03-29,Copilot SWE Agent (new),all,15787,,20260410T053920Z,2026-04-10T05:45:14.650165+00:00 +2026-03-30,Copilot SWE Agent,all,7680,,20260410T053920Z,2026-04-10T05:45:39.408772+00:00 +2026-03-30,Copilot SWE Agent (new),all,16909,,20260410T053920Z,2026-04-10T05:45:39.408772+00:00 +2026-03-31,Copilot SWE Agent,all,7939,,20260410T053920Z,2026-04-10T05:46:05.298747+00:00 +2026-03-31,Copilot SWE Agent (new),all,17779,,20260410T053920Z,2026-04-10T05:46:05.298747+00:00 +2026-04-01,Copilot SWE Agent,all,5466,,20260410T053920Z,2026-04-10T05:46:30.530719+00:00 +2026-04-01,Copilot SWE Agent (new),all,16373,,20260410T053920Z,2026-04-10T05:46:30.530719+00:00 +2026-04-02,Copilot SWE Agent,all,1,,20260410T053920Z,2026-04-10T05:46:55.258642+00:00 +2026-04-02,Copilot SWE Agent (new),all,16523,,20260410T053920Z,2026-04-10T05:46:55.258642+00:00 +2026-04-03,Copilot SWE Agent,all,1,,20260410T053920Z,2026-04-10T05:47:20.017498+00:00 +2026-04-03,Copilot SWE Agent (new),all,19225,,20260410T053920Z,2026-04-10T05:47:20.017498+00:00 +2026-04-04,Copilot SWE Agent,all,2,,20260410T053920Z,2026-04-10T05:47:44.971014+00:00 +2026-04-04,Copilot SWE Agent (new),all,19384,,20260410T053920Z,2026-04-10T05:47:44.971014+00:00 +2026-04-05,Copilot SWE Agent,all,7,,20260410T053920Z,2026-04-10T05:48:09.692428+00:00 +2026-04-05,Copilot SWE Agent (new),all,18317,,20260410T053920Z,2026-04-10T05:48:09.692428+00:00 +2026-04-06,Copilot SWE Agent,all,2,,20260410T053920Z,2026-04-10T05:48:34.542157+00:00 +2026-04-06,Copilot SWE Agent (new),all,19291,,20260410T053920Z,2026-04-10T05:48:34.542157+00:00 +2026-04-07,Copilot SWE Agent,all,1,,20260410T053920Z,2026-04-10T05:48:59.310127+00:00 +2026-04-07,Copilot SWE Agent (new),all,20026,,20260410T053920Z,2026-04-10T05:48:59.310127+00:00 +2026-04-08,Copilot SWE Agent,all,0,,20260410T053920Z,2026-04-10T05:49:24.075134+00:00 +2026-04-08,Copilot SWE Agent (new),all,19588,,20260410T053920Z,2026-04-10T05:49:24.075134+00:00 +2026-04-09,Claude Code,all,39715,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2026-04-09,Copilot,all,307,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2026-04-09,Copilot SWE Agent,all,0,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2026-04-09,Copilot SWE Agent (new),all,16959,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2026-04-09,Cursor,all,1553,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2026-04-09,Aider,all,14,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2026-04-09,Devin,all,101,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2026-04-09,Lovable,all,0,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2026-04-09,OpenHands,all,266,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2026-04-09,Gemini Code Assist,all,0,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2026-04-09,Coderabbit,all,39,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2026-04-09,ChatGPT,all,6,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2026-04-09,Gemini CLI,all,6,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2026-04-09,Jules (Google),all,2483,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2026-04-09,Cline,all,25,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2026-04-09,Sourcery AI,all,0,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2026-04-09,DeepSource,all,10,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2026-04-09,Sweep AI,all,0,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2026-04-09,Qwen Coder,all,1,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2026-04-09,Roo Code,all,11,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2026-04-09,OpenCode,all,0,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2026-04-09,OpenAI Codex,all,500,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2026-04-09,Amp (Sourcegraph),all,0,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2026-04-09,Warp (Oz Agent),all,0,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2026-04-09,Codegen,all,0,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2026-04-09,Gru,all,0,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2026-04-09,Junie (JetBrains),all,34,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2026-04-09,Crush,all,0,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2026-04-09,Sketch,all,0,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2026-04-09,Kilo Code,all,49,,20260410T053920Z,2026-04-10T05:49:48.843195+00:00 +2025-04-01,Copilot SWE Agent (new),all,4,,20260410T155207Z,2026-04-10T15:52:07.849393+00:00 +2025-04-02,Copilot SWE Agent (new),all,2,,20260410T155207Z,2026-04-10T15:52:20.321688+00:00 +2025-04-03,Copilot SWE Agent (new),all,5,,20260410T155207Z,2026-04-10T15:52:32.700207+00:00 +2025-04-04,Copilot SWE Agent (new),all,6,,20260410T155254Z,2026-04-10T15:52:54.759260+00:00 +2025-04-05,Copilot SWE Agent (new),all,2,,20260410T155254Z,2026-04-10T15:52:59.368065+00:00 +2025-04-06,Copilot SWE Agent (new),all,12,,20260410T155254Z,2026-04-10T15:53:03.930109+00:00 +2025-04-07,Copilot SWE Agent (new),all,5,,20260410T155254Z,2026-04-10T15:53:08.369369+00:00 +2025-04-07,Copilot SWE Agent (new),all,5,,20260410T155312Z,2026-04-10T15:53:12.390186+00:00 +2025-04-08,Copilot SWE Agent (new),all,7,,20260410T155254Z,2026-04-10T15:53:12.817141+00:00 +2025-04-08,Copilot SWE Agent (new),all,7,,20260410T155312Z,2026-04-10T15:53:16.795792+00:00 +2025-04-09,Copilot SWE Agent (new),all,13,,20260410T155254Z,2026-04-10T15:53:17.247754+00:00 +2025-04-09,Copilot SWE Agent (new),all,13,,20260410T155312Z,2026-04-10T15:53:21.252378+00:00 +2025-04-10,Copilot SWE Agent (new),all,10,,20260410T155254Z,2026-04-10T15:53:21.851581+00:00 +2025-04-10,Copilot SWE Agent (new),all,10,,20260410T155312Z,2026-04-10T15:53:25.732828+00:00 +2025-04-11,Copilot SWE Agent (new),all,7,,20260410T155254Z,2026-04-10T15:53:26.372025+00:00 +2025-04-11,Copilot SWE Agent (new),all,7,,20260410T155312Z,2026-04-10T15:53:30.350552+00:00 +2025-04-12,Copilot SWE Agent (new),all,4,,20260410T155254Z,2026-04-10T15:53:30.963274+00:00 +2025-04-12,Copilot SWE Agent (new),all,4,,20260410T155312Z,2026-04-10T15:53:34.960584+00:00 +2025-04-13,Copilot SWE Agent (new),all,3,,20260410T155254Z,2026-04-10T15:53:35.468344+00:00 +2025-04-13,Copilot SWE Agent (new),all,3,,20260410T155312Z,2026-04-10T15:53:39.466218+00:00 +2025-04-14,Copilot SWE Agent (new),all,5,,20260410T155254Z,2026-04-10T15:53:39.978575+00:00 +2025-04-14,Copilot SWE Agent (new),all,5,,20260410T155312Z,2026-04-10T15:53:43.952109+00:00 +2025-04-15,Copilot SWE Agent (new),all,4,,20260410T155254Z,2026-04-10T15:53:44.485238+00:00 +2025-04-15,Copilot SWE Agent (new),all,4,,20260410T155312Z,2026-04-10T15:53:48.383187+00:00 +2025-04-16,Copilot SWE Agent (new),all,14,,20260410T155254Z,2026-04-10T15:53:49.091005+00:00 +2025-04-16,Copilot SWE Agent (new),all,14,,20260410T155312Z,2026-04-10T15:53:52.870847+00:00 +2025-04-17,Copilot SWE Agent (new),all,8,,20260410T155254Z,2026-04-10T15:53:53.486809+00:00 +2025-04-17,Copilot SWE Agent (new),all,8,,20260410T155312Z,2026-04-10T15:53:57.378396+00:00 +2025-04-18,Copilot SWE Agent (new),all,23,,20260410T155254Z,2026-04-10T15:53:57.986394+00:00 +2025-04-18,Copilot SWE Agent (new),all,23,,20260410T155312Z,2026-04-10T15:54:01.897505+00:00 +2025-04-19,Copilot SWE Agent (new),all,8,,20260410T155254Z,2026-04-10T15:54:02.502645+00:00 +2025-04-19,Copilot SWE Agent (new),all,8,,20260410T155312Z,2026-04-10T15:54:06.379884+00:00 +2025-04-20,Copilot SWE Agent (new),all,4,,20260410T155254Z,2026-04-10T15:54:07.011082+00:00 +2025-04-20,Copilot SWE Agent (new),all,4,,20260410T155312Z,2026-04-10T15:54:10.896385+00:00 +2025-04-21,Copilot SWE Agent (new),all,8,,20260410T155254Z,2026-04-10T15:54:11.619582+00:00 +2025-04-21,Copilot SWE Agent (new),all,8,,20260410T155312Z,2026-04-10T15:54:15.407794+00:00 +2025-04-22,Copilot SWE Agent (new),all,10,,20260410T155254Z,2026-04-10T15:54:16.078655+00:00 +2025-04-22,Copilot SWE Agent (new),all,10,,20260410T155312Z,2026-04-10T15:54:19.867730+00:00 +2025-04-23,Copilot SWE Agent (new),all,9,,20260410T155254Z,2026-04-10T15:54:20.518710+00:00 +2025-04-23,Copilot SWE Agent (new),all,9,,20260410T155312Z,2026-04-10T15:54:24.405261+00:00 +2025-04-24,Copilot SWE Agent (new),all,35,,20260410T155254Z,2026-04-10T15:54:24.985369+00:00 +2025-04-24,Copilot SWE Agent (new),all,35,,20260410T155312Z,2026-04-10T15:54:28.800656+00:00 +2025-04-25,Copilot SWE Agent (new),all,19,,20260410T155254Z,2026-04-10T15:54:29.535634+00:00 +2025-04-25,Copilot SWE Agent (new),all,19,,20260410T155312Z,2026-04-10T15:54:33.251322+00:00 +2025-04-26,Copilot SWE Agent (new),all,23,,20260410T155254Z,2026-04-10T15:54:34.004008+00:00 +2025-04-26,Copilot SWE Agent (new),all,23,,20260410T155312Z,2026-04-10T15:54:37.828786+00:00 +2025-04-27,Copilot SWE Agent (new),all,10,,20260410T155254Z,2026-04-10T15:54:38.551387+00:00 +2025-04-27,Copilot SWE Agent (new),all,10,,20260410T155312Z,2026-04-10T15:54:42.340541+00:00 +2025-04-28,Copilot SWE Agent (new),all,17,,20260410T155254Z,2026-04-10T15:54:42.928831+00:00 +2025-04-28,Copilot SWE Agent (new),all,17,,20260410T155312Z,2026-04-10T15:54:46.796770+00:00 +2025-04-29,Copilot SWE Agent (new),all,57,,20260410T155254Z,2026-04-10T15:54:47.379529+00:00 +2025-04-29,Copilot SWE Agent (new),all,57,,20260410T155312Z,2026-04-10T15:54:51.234639+00:00 +2025-04-30,Copilot SWE Agent (new),all,37,,20260410T155254Z,2026-04-10T15:54:51.964103+00:00 +2025-04-30,Copilot SWE Agent (new),all,37,,20260410T155312Z,2026-04-10T15:54:55.752208+00:00 +2025-05-01,Copilot SWE Agent (new),all,7,,20260410T155254Z,2026-04-10T15:54:56.413391+00:00 +2025-05-01,Copilot SWE Agent (new),all,7,,20260410T155312Z,2026-04-10T15:55:00.359727+00:00 +2025-05-02,Copilot SWE Agent (new),all,15,,20260410T155254Z,2026-04-10T15:55:00.974468+00:00 +2025-05-02,Copilot SWE Agent (new),all,15,,20260410T155312Z,2026-04-10T15:55:04.801038+00:00 +2025-05-03,Copilot SWE Agent (new),all,1,,20260410T155254Z,2026-04-10T15:55:05.410480+00:00 +2025-05-03,Copilot SWE Agent (new),all,1,,20260410T155312Z,2026-04-10T15:55:09.239578+00:00 +2025-05-04,Copilot SWE Agent (new),all,11,,20260410T155254Z,2026-04-10T15:55:09.879264+00:00 +2025-05-04,Copilot SWE Agent (new),all,11,,20260410T155312Z,2026-04-10T15:55:13.677742+00:00 +2025-05-05,Copilot SWE Agent (new),all,7,,20260410T155254Z,2026-04-10T15:55:14.388856+00:00 +2025-05-05,Copilot SWE Agent (new),all,7,,20260410T155312Z,2026-04-10T15:55:18.308344+00:00 +2025-05-06,Copilot SWE Agent (new),all,120,,20260410T155254Z,2026-04-10T15:55:18.897577+00:00 +2025-05-06,Copilot SWE Agent (new),all,120,,20260410T155312Z,2026-04-10T15:55:22.888159+00:00 +2025-05-07,Copilot SWE Agent (new),all,32,,20260410T155254Z,2026-04-10T15:55:23.365133+00:00 +2025-05-07,Copilot SWE Agent (new),all,32,,20260410T155312Z,2026-04-10T15:55:27.392352+00:00 +2025-05-08,Copilot SWE Agent (new),all,16,,20260410T155254Z,2026-04-10T15:55:28.010766+00:00 +2025-05-08,Copilot SWE Agent (new),all,16,,20260410T155312Z,2026-04-10T15:55:31.832783+00:00 +2025-05-09,Copilot SWE Agent (new),all,26,,20260410T155254Z,2026-04-10T15:55:32.505290+00:00 +2025-05-09,Copilot SWE Agent (new),all,26,,20260410T155312Z,2026-04-10T15:55:36.250631+00:00 +2025-05-10,Copilot SWE Agent (new),all,10,,20260410T155254Z,2026-04-10T15:55:37.018099+00:00 +2025-05-10,Copilot SWE Agent (new),all,10,,20260410T155312Z,2026-04-10T15:55:40.714443+00:00 +2025-05-11,Copilot SWE Agent (new),all,27,,20260410T155254Z,2026-04-10T15:55:41.490320+00:00 +2025-05-11,Copilot SWE Agent (new),all,27,,20260410T155312Z,2026-04-10T15:55:45.171540+00:00 +2025-05-12,Copilot SWE Agent (new),all,7,,20260410T155254Z,2026-04-10T15:55:45.993676+00:00 +2025-05-12,Copilot SWE Agent (new),all,7,,20260410T155312Z,2026-04-10T15:55:49.715983+00:00 +2025-05-13,Copilot SWE Agent (new),all,30,,20260410T155254Z,2026-04-10T15:55:50.535647+00:00 +2025-05-13,Copilot SWE Agent (new),all,30,,20260410T155312Z,2026-04-10T15:55:54.170801+00:00 +2025-05-14,Copilot SWE Agent (new),all,31,,20260410T155254Z,2026-04-10T15:55:55.246146+00:00 +2025-05-14,Copilot SWE Agent (new),all,31,,20260410T155312Z,2026-04-10T15:55:58.627455+00:00 +2025-05-15,Copilot SWE Agent (new),all,105,,20260410T155254Z,2026-04-10T15:55:59.657357+00:00 +2025-05-15,Copilot SWE Agent (new),all,105,,20260410T155312Z,2026-04-10T15:56:03.332756+00:00 +2025-05-16,Copilot SWE Agent (new),all,14,,20260410T155254Z,2026-04-10T15:56:04.258384+00:00 +2025-05-16,Copilot SWE Agent (new),all,14,,20260410T155312Z,2026-04-10T15:56:07.840552+00:00 +2025-05-17,Copilot SWE Agent (new),all,10,,20260410T155254Z,2026-04-10T15:56:08.765463+00:00 +2025-05-17,Copilot SWE Agent (new),all,10,,20260410T155312Z,2026-04-10T15:56:12.451301+00:00 +2025-05-18,Copilot SWE Agent (new),all,34,,20260410T155254Z,2026-04-10T15:56:13.253025+00:00 +2025-05-18,Copilot SWE Agent (new),all,34,,20260410T155312Z,2026-04-10T15:56:17.111363+00:00 +2025-05-19,Copilot SWE Agent (new),all,198,,20260410T155254Z,2026-04-10T15:56:17.674229+00:00 +2025-05-19,Copilot SWE Agent (new),all,198,,20260410T155312Z,2026-04-10T15:56:21.668239+00:00 +2025-05-20,Copilot SWE Agent (new),all,682,,20260410T155254Z,2026-04-10T15:56:22.178955+00:00 +2025-05-20,Copilot SWE Agent (new),all,682,,20260410T155312Z,2026-04-10T15:56:26.165982+00:00 +2025-05-21,Copilot SWE Agent (new),all,777,,20260410T155254Z,2026-04-10T15:56:26.663480+00:00 +2025-05-21,Copilot SWE Agent (new),all,777,,20260410T155312Z,2026-04-10T15:56:30.702067+00:00 +2025-05-22,Copilot SWE Agent (new),all,736,,20260410T155254Z,2026-04-10T15:56:31.096061+00:00 +2025-05-22,Copilot SWE Agent (new),all,736,,20260410T155312Z,2026-04-10T15:56:35.120581+00:00 +2025-05-23,Copilot SWE Agent (new),all,591,,20260410T155254Z,2026-04-10T15:56:35.580098+00:00 +2025-05-23,Copilot SWE Agent (new),all,591,,20260410T155312Z,2026-04-10T15:56:39.611675+00:00 +2025-05-24,Copilot SWE Agent (new),all,583,,20260410T155254Z,2026-04-10T15:56:40.038401+00:00 +2025-05-24,Copilot SWE Agent (new),all,583,,20260410T155312Z,2026-04-10T15:56:44.079337+00:00 +2025-05-25,Copilot SWE Agent (new),all,500,,20260410T155254Z,2026-04-10T15:56:44.500140+00:00 +2025-05-25,Copilot SWE Agent (new),all,500,,20260410T155312Z,2026-04-10T15:56:48.552287+00:00 +2025-05-26,Copilot SWE Agent (new),all,803,,20260410T155254Z,2026-04-10T15:56:48.923245+00:00 +2025-05-26,Copilot SWE Agent (new),all,803,,20260410T155312Z,2026-04-10T15:56:52.972054+00:00 +2025-05-27,Copilot SWE Agent (new),all,925,,20260410T155254Z,2026-04-10T15:56:53.510400+00:00 +2025-05-27,Copilot SWE Agent (new),all,925,,20260410T155312Z,2026-04-10T15:56:57.508591+00:00 +2025-05-28,Copilot SWE Agent (new),all,833,,20260410T155254Z,2026-04-10T15:56:57.967988+00:00 +2025-05-28,Copilot SWE Agent (new),all,833,,20260410T155312Z,2026-04-10T15:57:01.928208+00:00 +2025-05-29,Copilot SWE Agent (new),all,708,,20260410T155254Z,2026-04-10T15:57:02.521841+00:00 +2025-05-29,Copilot SWE Agent (new),all,708,,20260410T155312Z,2026-04-10T15:57:06.355745+00:00 +2025-05-30,Copilot SWE Agent (new),all,961,,20260410T155254Z,2026-04-10T15:57:07.132173+00:00 +2025-05-30,Copilot SWE Agent (new),all,961,,20260410T155312Z,2026-04-10T15:57:10.856659+00:00 +2025-05-31,Copilot SWE Agent (new),all,773,,20260410T155254Z,2026-04-10T15:57:11.642584+00:00 +2025-05-31,Copilot SWE Agent (new),all,773,,20260410T155312Z,2026-04-10T15:57:15.325170+00:00 +2025-06-01,Copilot SWE Agent (new),all,715,,20260410T155254Z,2026-04-10T15:57:16.073628+00:00 +2025-06-01,Copilot SWE Agent (new),all,715,,20260410T155312Z,2026-04-10T15:57:19.740869+00:00 +2025-06-02,Copilot SWE Agent (new),all,721,,20260410T155254Z,2026-04-10T15:57:20.647184+00:00 +2025-06-02,Copilot SWE Agent (new),all,721,,20260410T155312Z,2026-04-10T15:57:24.155318+00:00 +2025-06-03,Copilot SWE Agent (new),all,697,,20260410T155254Z,2026-04-10T15:57:25.092081+00:00 +2025-06-03,Copilot SWE Agent (new),all,697,,20260410T155312Z,2026-04-10T15:57:28.635450+00:00 +2025-06-04,Copilot SWE Agent (new),all,1358,,20260410T155254Z,2026-04-10T15:57:29.639313+00:00 +2025-06-04,Copilot SWE Agent (new),all,1358,,20260410T155312Z,2026-04-10T15:57:33.142077+00:00 +2025-06-05,Copilot SWE Agent (new),all,2090,,20260410T155254Z,2026-04-10T15:57:34.265157+00:00 +2025-06-05,Copilot SWE Agent (new),all,2090,,20260410T155312Z,2026-04-10T15:57:37.648892+00:00 +2025-06-06,Copilot SWE Agent (new),all,1013,,20260410T155254Z,2026-04-10T15:57:38.978805+00:00 +2025-06-06,Copilot SWE Agent (new),all,1013,,20260410T155312Z,2026-04-10T15:57:42.175934+00:00 +2025-06-07,Copilot SWE Agent (new),all,860,,20260410T155254Z,2026-04-10T15:57:43.404347+00:00 +2025-06-07,Copilot SWE Agent (new),all,860,,20260410T155312Z,2026-04-10T15:57:46.658301+00:00 +2025-06-08,Copilot SWE Agent (new),all,648,,20260410T155254Z,2026-04-10T15:57:47.876312+00:00 +2025-06-08,Copilot SWE Agent (new),all,648,,20260410T155312Z,2026-04-10T15:57:51.153210+00:00 +2025-06-09,Copilot SWE Agent (new),all,1014,1,20260410T155254Z,2026-04-10T15:57:52.306393+00:00 +2025-06-09,Copilot SWE Agent (new),all,1017,,20260410T155312Z,2026-04-10T15:57:55.614234+00:00 +2025-06-10,Copilot SWE Agent (new),all,865,,20260410T155254Z,2026-04-10T15:57:56.771198+00:00 +2025-06-10,Copilot SWE Agent (new),all,865,,20260410T155312Z,2026-04-10T15:58:00.030505+00:00 +2025-06-11,Copilot SWE Agent (new),all,1352,,20260410T155254Z,2026-04-10T15:58:01.222045+00:00 +2025-06-11,Copilot SWE Agent (new),all,1352,,20260410T155312Z,2026-04-10T15:58:04.580262+00:00 +2025-06-12,Copilot SWE Agent (new),all,1032,,20260410T155254Z,2026-04-10T15:58:05.640933+00:00 +2025-06-12,Copilot SWE Agent (new),all,1032,,20260410T155312Z,2026-04-10T15:58:09.082923+00:00 +2025-06-13,Copilot SWE Agent (new),all,1398,,20260410T155254Z,2026-04-10T15:58:10.314023+00:00 +2025-06-13,Copilot SWE Agent (new),all,1398,,20260410T155312Z,2026-04-10T15:58:13.546789+00:00 +2025-06-14,Copilot SWE Agent (new),all,844,,20260410T155254Z,2026-04-10T15:58:14.816718+00:00 +2025-06-14,Copilot SWE Agent (new),all,844,,20260410T155312Z,2026-04-10T15:58:18.096251+00:00 +2025-06-15,Copilot SWE Agent (new),all,738,,20260410T155254Z,2026-04-10T15:58:19.423862+00:00 +2025-06-15,Copilot SWE Agent (new),all,738,,20260410T155312Z,2026-04-10T15:58:22.600632+00:00 +2025-06-16,Copilot SWE Agent (new),all,1153,,20260410T155254Z,2026-04-10T15:58:23.897297+00:00 +2025-06-16,Copilot SWE Agent (new),all,1153,,20260410T155312Z,2026-04-10T15:58:27.386097+00:00 +2025-06-17,Copilot SWE Agent (new),all,866,,20260410T155254Z,2026-04-10T15:58:28.436722+00:00 +2025-06-17,Copilot SWE Agent (new),all,866,,20260410T155312Z,2026-04-10T15:58:31.828840+00:00 +2025-06-18,Copilot SWE Agent (new),all,969,,20260410T155254Z,2026-04-10T15:58:33.046848+00:00 +2025-06-18,Copilot SWE Agent (new),all,969,,20260410T155312Z,2026-04-10T15:58:36.357272+00:00 +2025-06-19,Copilot SWE Agent (new),all,883,,20260410T155254Z,2026-04-10T15:58:37.549822+00:00 +2025-06-19,Copilot SWE Agent (new),all,883,,20260410T155312Z,2026-04-10T15:58:40.813494+00:00 +2025-06-20,Copilot SWE Agent (new),all,688,,20260410T155254Z,2026-04-10T15:58:42.058224+00:00 +2025-06-20,Copilot SWE Agent (new),all,688,,20260410T155312Z,2026-04-10T15:58:45.256892+00:00 +2025-06-21,Copilot SWE Agent (new),all,639,,20260410T155254Z,2026-04-10T15:58:46.501336+00:00 +2025-06-21,Copilot SWE Agent (new),all,639,,20260410T155312Z,2026-04-10T15:58:49.840142+00:00 +2025-06-22,Copilot SWE Agent (new),all,589,,20260410T155254Z,2026-04-10T15:58:50.884130+00:00 +2025-06-22,Copilot SWE Agent (new),all,589,,20260410T155312Z,2026-04-10T15:58:54.344938+00:00 +2025-06-23,Copilot SWE Agent (new),all,817,,20260410T155254Z,2026-04-10T15:58:55.354165+00:00 +2025-06-23,Copilot SWE Agent (new),all,817,,20260410T155312Z,2026-04-10T15:58:58.846763+00:00 +2025-06-24,Copilot SWE Agent (new),all,1072,,20260410T155254Z,2026-04-10T15:58:59.820202+00:00 +2025-06-24,Copilot SWE Agent (new),all,1072,,20260410T155312Z,2026-04-10T15:59:03.661224+00:00 +2025-06-25,Copilot SWE Agent (new),all,653,,20260410T155254Z,2026-04-10T15:59:04.253736+00:00 +2025-06-25,Copilot SWE Agent (new),all,653,,20260410T155312Z,2026-04-10T15:59:08.270358+00:00 +2025-06-26,Copilot SWE Agent (new),all,944,,20260410T155254Z,2026-04-10T15:59:08.785042+00:00 +2025-06-26,Copilot SWE Agent (new),all,944,,20260410T155312Z,2026-04-10T15:59:12.702568+00:00 +2025-06-27,Copilot SWE Agent (new),all,1052,,20260410T155254Z,2026-04-10T15:59:13.291131+00:00 +2025-06-27,Copilot SWE Agent (new),all,1052,,20260410T155312Z,2026-04-10T15:59:17.179705+00:00 +2025-06-28,Copilot SWE Agent (new),all,588,,20260410T155254Z,2026-04-10T15:59:17.733577+00:00 +2025-06-28,Copilot SWE Agent (new),all,588,,20260410T155312Z,2026-04-10T15:59:21.774415+00:00 +2025-06-29,Copilot SWE Agent (new),all,676,,20260410T155254Z,2026-04-10T15:59:22.263666+00:00 +2025-06-29,Copilot SWE Agent (new),all,676,,20260410T155312Z,2026-04-10T15:59:26.185371+00:00 +2025-06-30,Copilot SWE Agent (new),all,1460,,20260410T155254Z,2026-04-10T15:59:26.690504+00:00 +2025-06-30,Copilot SWE Agent (new),all,1460,,20260410T155312Z,2026-04-10T15:59:30.741610+00:00 +2025-07-01,Copilot SWE Agent (new),all,1347,,20260410T155254Z,2026-04-10T15:59:31.204404+00:00 +2025-07-01,Copilot SWE Agent (new),all,1347,,20260410T155312Z,2026-04-10T15:59:35.246138+00:00 +2025-07-02,Copilot SWE Agent (new),all,1164,,20260410T155254Z,2026-04-10T15:59:35.748429+00:00 +2025-07-02,Copilot SWE Agent (new),all,1164,,20260410T155312Z,2026-04-10T15:59:39.746510+00:00 +2025-07-03,Copilot SWE Agent (new),all,1703,,20260410T155254Z,2026-04-10T15:59:40.322890+00:00 +2025-07-03,Copilot SWE Agent (new),all,1703,,20260410T155312Z,2026-04-10T15:59:44.313230+00:00 +2025-07-04,Copilot SWE Agent (new),all,1306,,20260410T155254Z,2026-04-10T15:59:44.760220+00:00 +2025-07-04,Copilot SWE Agent (new),all,1306,,20260410T155312Z,2026-04-10T15:59:48.958447+00:00 +2025-07-05,Copilot SWE Agent (new),all,1056,,20260410T155254Z,2026-04-10T15:59:49.334596+00:00 +2025-07-05,Copilot SWE Agent (new),all,1056,,20260410T155312Z,2026-04-10T15:59:53.379790+00:00 +2025-07-06,Copilot SWE Agent (new),all,988,,20260410T155254Z,2026-04-10T15:59:53.940172+00:00 +2025-07-06,Copilot SWE Agent (new),all,988,,20260410T155312Z,2026-04-10T15:59:57.819687+00:00 +2025-07-07,Copilot SWE Agent (new),all,1494,,20260410T155254Z,2026-04-10T15:59:58.448084+00:00 +2025-07-07,Copilot SWE Agent (new),all,1494,,20260410T155312Z,2026-04-10T16:00:02.337525+00:00 +2025-07-08,Copilot SWE Agent (new),all,1841,,20260410T155254Z,2026-04-10T16:00:02.954325+00:00 +2025-07-08,Copilot SWE Agent (new),all,1841,,20260410T155312Z,2026-04-10T16:00:06.809943+00:00 +2025-07-09,Copilot SWE Agent (new),all,1874,,20260410T155254Z,2026-04-10T16:00:07.661712+00:00 +2025-07-09,Copilot SWE Agent (new),all,1874,,20260410T155312Z,2026-04-10T16:00:11.448296+00:00 +2025-07-10,Copilot SWE Agent (new),all,1408,,20260410T155254Z,2026-04-10T16:00:12.163548+00:00 +2025-07-10,Copilot SWE Agent (new),all,1408,,20260410T155312Z,2026-04-10T16:00:15.955190+00:00 +2025-07-11,Copilot SWE Agent (new),all,1907,,20260410T155254Z,2026-04-10T16:00:16.559068+00:00 +2025-07-11,Copilot SWE Agent (new),all,1907,,20260410T155312Z,2026-04-10T16:00:20.429137+00:00 +2025-07-12,Copilot SWE Agent (new),all,1416,,20260410T155254Z,2026-04-10T16:00:21.078437+00:00 +2025-07-12,Copilot SWE Agent (new),all,1416,,20260410T155312Z,2026-04-10T16:00:24.891044+00:00 +2025-07-13,Copilot SWE Agent (new),all,1711,,20260410T155254Z,2026-04-10T16:00:25.538969+00:00 +2025-07-13,Copilot SWE Agent (new),all,1711,,20260410T155312Z,2026-04-10T16:00:29.474730+00:00 +2025-07-14,Copilot SWE Agent (new),all,6055,,20260410T155254Z,2026-04-10T16:00:30.089202+00:00 +2025-07-14,Copilot SWE Agent (new),all,6055,,20260410T155312Z,2026-04-10T16:00:33.911297+00:00 +2025-07-15,Copilot SWE Agent (new),all,2011,,20260410T155254Z,2026-04-10T16:00:34.695845+00:00 +2025-07-15,Copilot SWE Agent (new),all,2011,,20260410T155312Z,2026-04-10T16:00:38.485874+00:00 +2025-07-16,Copilot SWE Agent (new),all,2162,,20260410T155254Z,2026-04-10T16:00:39.304188+00:00 +2025-07-16,Copilot SWE Agent (new),all,2162,,20260410T155312Z,2026-04-10T16:00:43.001300+00:00 +2025-07-17,Copilot SWE Agent (new),all,2440,,20260410T155254Z,2026-04-10T16:00:43.783728+00:00 +2025-07-17,Copilot SWE Agent (new),all,2440,,20260410T155312Z,2026-04-10T16:00:47.497940+00:00 +2025-07-18,Copilot SWE Agent (new),all,2866,,20260410T155254Z,2026-04-10T16:00:48.315061+00:00 +2025-07-18,Copilot SWE Agent (new),all,2866,,20260410T155312Z,2026-04-10T16:00:52.101574+00:00 +2025-07-19,Copilot SWE Agent (new),all,1916,,20260410T155254Z,2026-04-10T16:00:52.764535+00:00 +2025-07-19,Copilot SWE Agent (new),all,1916,,20260410T155312Z,2026-04-10T16:00:56.588679+00:00 +2025-07-20,Copilot SWE Agent (new),all,2183,,20260410T155254Z,2026-04-10T16:00:57.268487+00:00 +2025-07-20,Copilot SWE Agent (new),all,2183,,20260410T155312Z,2026-04-10T16:01:01.286734+00:00 +2025-07-21,Copilot SWE Agent (new),all,2654,,20260410T155254Z,2026-04-10T16:01:01.808742+00:00 +2025-07-21,Copilot SWE Agent (new),all,2654,,20260410T155312Z,2026-04-10T16:01:05.784631+00:00 +2025-07-22,Copilot SWE Agent (new),all,2159,,20260410T155254Z,2026-04-10T16:01:06.277743+00:00 +2025-07-22,Copilot SWE Agent (new),all,2159,,20260410T155312Z,2026-04-10T16:01:10.318370+00:00 +2025-07-23,Copilot SWE Agent (new),all,2766,,20260410T155254Z,2026-04-10T16:01:10.845598+00:00 +2025-07-23,Copilot SWE Agent (new),all,2766,,20260410T155312Z,2026-04-10T16:01:14.882449+00:00 +2025-07-24,Copilot SWE Agent (new),all,2508,,20260410T155254Z,2026-04-10T16:01:15.402880+00:00 +2025-07-24,Copilot SWE Agent (new),all,2508,,20260410T155312Z,2026-04-10T16:01:19.436512+00:00 +2025-07-25,Copilot SWE Agent (new),all,2909,,20260410T155254Z,2026-04-10T16:01:19.884861+00:00 +2025-07-25,Copilot SWE Agent (new),all,2909,,20260410T155312Z,2026-04-10T16:01:24.012772+00:00 +2025-07-26,Copilot SWE Agent (new),all,2118,,20260410T155254Z,2026-04-10T16:01:24.377266+00:00 +2025-07-26,Copilot SWE Agent (new),all,2118,,20260410T155312Z,2026-04-10T16:01:28.450550+00:00 +2025-07-27,Copilot SWE Agent (new),all,2467,,20260410T155254Z,2026-04-10T16:01:28.834541+00:00 +2025-07-27,Copilot SWE Agent (new),all,2467,,20260410T155312Z,2026-04-10T16:01:32.913773+00:00 +2025-07-28,Copilot SWE Agent (new),all,3059,,20260410T155254Z,2026-04-10T16:01:33.368280+00:00 +2025-07-28,Copilot SWE Agent (new),all,3059,,20260410T155312Z,2026-04-10T16:01:37.318611+00:00 +2025-07-29,Copilot SWE Agent (new),all,2778,,20260410T155254Z,2026-04-10T16:01:37.976985+00:00 +2025-07-29,Copilot SWE Agent (new),all,2778,,20260410T155312Z,2026-04-10T16:01:41.921740+00:00 +2025-07-30,Copilot SWE Agent (new),all,3131,,20260410T155254Z,2026-04-10T16:01:42.588920+00:00 +2025-07-30,Copilot SWE Agent (new),all,3131,,20260410T155312Z,2026-04-10T16:01:46.370424+00:00 +2025-07-31,Copilot SWE Agent (new),all,3401,,20260410T155254Z,2026-04-10T16:01:47.197291+00:00 +2025-07-31,Copilot SWE Agent (new),all,3401,,20260410T155312Z,2026-04-10T16:01:50.862209+00:00 +2025-08-01,Copilot SWE Agent (new),all,2916,,20260410T155254Z,2026-04-10T16:01:51.719143+00:00 +2025-08-01,Copilot SWE Agent (new),all,2916,,20260410T155312Z,2026-04-10T16:01:55.487521+00:00 +2025-08-02,Copilot SWE Agent (new),all,2130,,20260410T155254Z,2026-04-10T16:01:56.147764+00:00 +2025-08-02,Copilot SWE Agent (new),all,2130,,20260410T155312Z,2026-04-10T16:01:59.887363+00:00 +2025-08-03,Copilot SWE Agent (new),all,2406,,20260410T155254Z,2026-04-10T16:02:00.713125+00:00 +2025-08-03,Copilot SWE Agent (new),all,2406,,20260410T155312Z,2026-04-10T16:02:04.501410+00:00 +2025-08-04,Copilot SWE Agent (new),all,3491,,20260410T155254Z,2026-04-10T16:02:05.213501+00:00 +2025-08-04,Copilot SWE Agent (new),all,3491,,20260410T155312Z,2026-04-10T16:02:09.109216+00:00 +2025-08-05,Copilot SWE Agent (new),all,3387,,20260410T155254Z,2026-04-10T16:02:09.826553+00:00 +2025-08-05,Copilot SWE Agent (new),all,3387,,20260410T155312Z,2026-04-10T16:02:13.579142+00:00 +2025-08-06,Copilot SWE Agent (new),all,3158,,20260410T155254Z,2026-04-10T16:02:14.431121+00:00 +2025-08-06,Copilot SWE Agent (new),all,3158,,20260410T155312Z,2026-04-10T16:02:18.119421+00:00 +2025-08-07,Copilot SWE Agent (new),all,3452,,20260410T155254Z,2026-04-10T16:02:18.907502+00:00 +2025-08-07,Copilot SWE Agent (new),all,3452,,20260410T155312Z,2026-04-10T16:02:22.594572+00:00 +2025-08-08,Copilot SWE Agent (new),all,2900,,20260410T155254Z,2026-04-10T16:02:23.444231+00:00 +2025-08-08,Copilot SWE Agent (new),all,2900,,20260410T155312Z,2026-04-10T16:02:27.035386+00:00 +2025-08-09,Copilot SWE Agent (new),all,3271,,20260410T155254Z,2026-04-10T16:02:28.156112+00:00 +2025-08-09,Copilot SWE Agent (new),all,3271,,20260410T155312Z,2026-04-10T16:02:31.467410+00:00 +2025-08-10,Copilot SWE Agent (new),all,3196,,20260410T155254Z,2026-04-10T16:02:32.784700+00:00 +2025-08-10,Copilot SWE Agent (new),all,3196,,20260410T155312Z,2026-04-10T16:02:35.940299+00:00 +2025-08-11,Copilot SWE Agent (new),all,3819,,20260410T155254Z,2026-04-10T16:02:37.371920+00:00 +2025-08-11,Copilot SWE Agent (new),all,3819,,20260410T155312Z,2026-04-10T16:02:40.348560+00:00 +2025-08-12,Copilot SWE Agent (new),all,3836,,20260410T155254Z,2026-04-10T16:02:41.978602+00:00 +2025-08-12,Copilot SWE Agent (new),all,3836,,20260410T155312Z,2026-04-10T16:02:44.948267+00:00 +2025-08-13,Copilot SWE Agent (new),all,3704,,20260410T155254Z,2026-04-10T16:02:46.468983+00:00 +2025-08-13,Copilot SWE Agent (new),all,3704,,20260410T155312Z,2026-04-10T16:02:49.451517+00:00 +2025-08-14,Copilot SWE Agent (new),all,3518,,20260410T155254Z,2026-04-10T16:02:50.989044+00:00 +2025-08-14,Copilot SWE Agent (new),all,3518,,20260410T155312Z,2026-04-10T16:02:53.904799+00:00 +2025-08-15,Copilot SWE Agent (new),all,3526,,20260410T155254Z,2026-04-10T16:02:55.435774+00:00 +2025-08-15,Copilot SWE Agent (new),all,3526,,20260410T155312Z,2026-04-10T16:02:58.302829+00:00 +2025-08-16,Copilot SWE Agent (new),all,2948,,20260410T155254Z,2026-04-10T16:03:00.048560+00:00 +2025-08-16,Copilot SWE Agent (new),all,2948,,20260410T155312Z,2026-04-10T16:03:02.768067+00:00 +2025-08-17,Copilot SWE Agent (new),all,2968,,20260410T155254Z,2026-04-10T16:03:04.599653+00:00 +2025-08-17,Copilot SWE Agent (new),all,2968,,20260410T155312Z,2026-04-10T16:03:07.470076+00:00 +2025-08-18,Copilot SWE Agent (new),all,3007,,20260410T155254Z,2026-04-10T16:03:09.113763+00:00 +2025-08-18,Copilot SWE Agent (new),all,3007,,20260410T155312Z,2026-04-10T16:03:11.946603+00:00 +2025-08-19,Copilot SWE Agent (new),all,4254,,20260410T155254Z,2026-04-10T16:03:13.633051+00:00 +2025-08-19,Copilot SWE Agent (new),all,4254,,20260410T155312Z,2026-04-10T16:03:16.382253+00:00 +2025-08-20,Copilot SWE Agent (new),all,4889,,20260410T155254Z,2026-04-10T16:03:18.106758+00:00 +2025-08-20,Copilot SWE Agent (new),all,4889,,20260410T155312Z,2026-04-10T16:03:20.888273+00:00 +2025-08-21,Copilot SWE Agent (new),all,4728,,20260410T155254Z,2026-04-10T16:03:22.629224+00:00 +2025-08-21,Copilot SWE Agent (new),all,4728,,20260410T155312Z,2026-04-10T16:03:25.359799+00:00 +2025-08-22,Copilot SWE Agent (new),all,4512,,20260410T155254Z,2026-04-10T16:03:27.081938+00:00 +2025-08-22,Copilot SWE Agent (new),all,4512,,20260410T155312Z,2026-04-10T16:03:29.838080+00:00 +2025-08-23,Copilot SWE Agent (new),all,3702,,20260410T155254Z,2026-04-10T16:03:31.748463+00:00 +2025-08-23,Copilot SWE Agent (new),all,3702,,20260410T155312Z,2026-04-10T16:03:34.270128+00:00 +2025-08-24,Copilot SWE Agent (new),all,3594,,20260410T155254Z,2026-04-10T16:03:36.223004+00:00 +2025-08-24,Copilot SWE Agent (new),all,3594,,20260410T155312Z,2026-04-10T16:03:38.915539+00:00 +2025-08-25,Copilot SWE Agent (new),all,4100,,20260410T155254Z,2026-04-10T16:03:40.659297+00:00 +2025-08-25,Copilot SWE Agent (new),all,4100,,20260410T155312Z,2026-04-10T16:03:43.458947+00:00 +2025-08-26,Copilot SWE Agent (new),all,4161,,20260410T155254Z,2026-04-10T16:03:45.198104+00:00 +2025-08-26,Copilot SWE Agent (new),all,4161,,20260410T155312Z,2026-04-10T16:03:47.938902+00:00 +2025-08-27,Copilot SWE Agent (new),all,4137,,20260410T155254Z,2026-04-10T16:03:49.769774+00:00 +2025-08-27,Copilot SWE Agent (new),all,4137,,20260410T155312Z,2026-04-10T16:03:52.414804+00:00 +2025-08-28,Copilot SWE Agent (new),all,4483,,20260410T155254Z,2026-04-10T16:03:54.272218+00:00 +2025-08-28,Copilot SWE Agent (new),all,4483,,20260410T155312Z,2026-04-10T16:03:56.935548+00:00 +2025-08-29,Copilot SWE Agent (new),all,4275,,20260410T155254Z,2026-04-10T16:03:58.772475+00:00 +2025-08-29,Copilot SWE Agent (new),all,4275,,20260410T155312Z,2026-04-10T16:04:01.382462+00:00 +2025-08-30,Copilot SWE Agent (new),all,3937,,20260410T155254Z,2026-04-10T16:04:03.281994+00:00 +2025-08-30,Copilot SWE Agent (new),all,3937,,20260410T155312Z,2026-04-10T16:04:05.830091+00:00 +2025-08-31,Copilot SWE Agent (new),all,4249,,20260410T155254Z,2026-04-10T16:04:07.750312+00:00 +2025-08-31,Copilot SWE Agent (new),all,4249,,20260410T155312Z,2026-04-10T16:04:10.231183+00:00 +2025-09-01,Copilot SWE Agent (new),all,5144,,20260410T155254Z,2026-04-10T16:04:12.236901+00:00 +2025-09-01,Copilot SWE Agent (new),all,5144,,20260410T155312Z,2026-04-10T16:04:14.871129+00:00 +2025-09-02,Copilot SWE Agent (new),all,5892,,20260410T155254Z,2026-04-10T16:04:16.825690+00:00 +2025-09-02,Copilot SWE Agent (new),all,5892,,20260410T155312Z,2026-04-10T16:04:19.320651+00:00 +2025-09-03,Copilot SWE Agent (new),all,4798,,20260410T155254Z,2026-04-10T16:04:21.341581+00:00 +2025-09-03,Copilot SWE Agent (new),all,4798,,20260410T155312Z,2026-04-10T16:04:23.748145+00:00 +2025-09-04,Copilot SWE Agent (new),all,4414,,20260410T155254Z,2026-04-10T16:04:26.320791+00:00 +2025-09-04,Copilot SWE Agent (new),all,4414,,20260410T155312Z,2026-04-10T16:04:28.180115+00:00 +2025-09-05,Copilot SWE Agent (new),all,4350,,20260410T155254Z,2026-04-10T16:04:30.826611+00:00 +2025-09-05,Copilot SWE Agent (new),all,4350,,20260410T155312Z,2026-04-10T16:04:32.747703+00:00 +2025-09-06,Copilot SWE Agent (new),all,3906,,20260410T155254Z,2026-04-10T16:04:35.256952+00:00 +2025-09-06,Copilot SWE Agent (new),all,3906,,20260410T155312Z,2026-04-10T16:04:37.421935+00:00 +2025-09-07,Copilot SWE Agent (new),all,3820,,20260410T155254Z,2026-04-10T16:04:39.778245+00:00 +2025-09-07,Copilot SWE Agent (new),all,3820,,20260410T155312Z,2026-04-10T16:04:41.958545+00:00 +2025-09-08,Copilot SWE Agent (new),all,4982,,20260410T155254Z,2026-04-10T16:04:44.273906+00:00 +2025-09-08,Copilot SWE Agent (new),all,4982,,20260410T155312Z,2026-04-10T16:04:46.438920+00:00 +2025-09-09,Copilot SWE Agent (new),all,5054,,20260410T155254Z,2026-04-10T16:04:48.997676+00:00 +2025-09-09,Copilot SWE Agent (new),all,5054,,20260410T155312Z,2026-04-10T16:04:50.872974+00:00 +2025-09-10,Copilot SWE Agent (new),all,5109,,20260410T155254Z,2026-04-10T16:04:53.627853+00:00 +2025-09-10,Copilot SWE Agent (new),all,5109,,20260410T155312Z,2026-04-10T16:04:55.447150+00:00 +2025-09-11,Copilot SWE Agent (new),all,5039,,20260410T155254Z,2026-04-10T16:04:58.122609+00:00 +2025-09-11,Copilot SWE Agent (new),all,5039,,20260410T155312Z,2026-04-10T16:04:59.866061+00:00 +2025-09-12,Copilot SWE Agent (new),all,4881,,20260410T155254Z,2026-04-10T16:05:02.714902+00:00 +2025-09-12,Copilot SWE Agent (new),all,4881,,20260410T155312Z,2026-04-10T16:05:04.354537+00:00 +2025-09-13,Copilot SWE Agent (new),all,4072,,20260410T155254Z,2026-04-10T16:05:07.202000+00:00 +2025-09-13,Copilot SWE Agent (new),all,4072,,20260410T155312Z,2026-04-10T16:05:08.815580+00:00 +2025-09-14,Copilot SWE Agent (new),all,4397,,20260410T155254Z,2026-04-10T16:05:11.831264+00:00 +2025-09-14,Copilot SWE Agent (new),all,4397,,20260410T155312Z,2026-04-10T16:05:13.540696+00:00 +2025-09-15,Copilot SWE Agent (new),all,4644,,20260410T155254Z,2026-04-10T16:05:16.311494+00:00 +2025-09-15,Copilot SWE Agent (new),all,4644,,20260410T155312Z,2026-04-10T16:05:17.974759+00:00 +2025-09-16,Copilot SWE Agent (new),all,5178,,20260410T155254Z,2026-04-10T16:05:20.946854+00:00 +2025-09-16,Copilot SWE Agent (new),all,5178,,20260410T155312Z,2026-04-10T16:05:22.484157+00:00 +2025-09-17,Copilot SWE Agent (new),all,5245,,20260410T155254Z,2026-04-10T16:05:25.413315+00:00 +2025-09-17,Copilot SWE Agent (new),all,5245,,20260410T155312Z,2026-04-10T16:05:26.936185+00:00 +2025-09-18,Copilot SWE Agent (new),all,4260,,20260410T155254Z,2026-04-10T16:05:29.942305+00:00 +2025-09-18,Copilot SWE Agent (new),all,4260,,20260410T155312Z,2026-04-10T16:05:31.496518+00:00 +2025-09-19,Copilot SWE Agent (new),all,4492,,20260410T155254Z,2026-04-10T16:05:34.465296+00:00 +2025-09-19,Copilot SWE Agent (new),all,4492,,20260410T155312Z,2026-04-10T16:05:35.973363+00:00 +2025-09-20,Copilot SWE Agent (new),all,4179,,20260410T155254Z,2026-04-10T16:05:38.974838+00:00 +2025-09-20,Copilot SWE Agent (new),all,4179,,20260410T155312Z,2026-04-10T16:05:40.458280+00:00 +2025-09-21,Copilot SWE Agent (new),all,4235,,20260410T155254Z,2026-04-10T16:05:43.462939+00:00 +2025-09-21,Copilot SWE Agent (new),all,4235,,20260410T155312Z,2026-04-10T16:05:44.932584+00:00 +2025-09-22,Copilot SWE Agent (new),all,4972,,20260410T155254Z,2026-04-10T16:05:47.898823+00:00 +2025-09-22,Copilot SWE Agent (new),all,4972,,20260410T155312Z,2026-04-10T16:05:49.346521+00:00 +2025-09-23,Copilot SWE Agent (new),all,6175,,20260410T155254Z,2026-04-10T16:05:52.382502+00:00 +2025-09-23,Copilot SWE Agent (new),all,6175,,20260410T155312Z,2026-04-10T16:05:53.918049+00:00 +2025-09-24,Copilot SWE Agent (new),all,6893,,20260410T155254Z,2026-04-10T16:05:56.890088+00:00 +2025-09-24,Copilot SWE Agent (new),all,6893,,20260410T155312Z,2026-04-10T16:05:58.379606+00:00 +2025-09-25,Copilot SWE Agent (new),all,5505,,20260410T155254Z,2026-04-10T16:06:01.329218+00:00 +2025-09-25,Copilot SWE Agent (new),all,5505,,20260410T155312Z,2026-04-10T16:06:02.827658+00:00 +2025-09-26,Copilot SWE Agent (new),all,5093,,20260410T155254Z,2026-04-10T16:06:05.788831+00:00 +2025-09-26,Copilot SWE Agent (new),all,5093,,20260410T155312Z,2026-04-10T16:06:07.308733+00:00 +2025-09-27,Copilot SWE Agent (new),all,4913,,20260410T155254Z,2026-04-10T16:06:10.264922+00:00 +2025-09-27,Copilot SWE Agent (new),all,4913,,20260410T155312Z,2026-04-10T16:06:11.839408+00:00 +2025-09-28,Copilot SWE Agent (new),all,5073,,20260410T155254Z,2026-04-10T16:06:14.806981+00:00 +2025-09-28,Copilot SWE Agent (new),all,5073,,20260410T155312Z,2026-04-10T16:06:16.448239+00:00 +2025-09-29,Copilot SWE Agent (new),all,5519,,20260410T155254Z,2026-04-10T16:06:19.311534+00:00 +2025-09-29,Copilot SWE Agent (new),all,5519,,20260410T155312Z,2026-04-10T16:06:20.922979+00:00 +2025-09-30,Copilot SWE Agent (new),all,6762,,20260410T155254Z,2026-04-10T16:07:24.233969+00:00 +2025-09-30,Copilot SWE Agent (new),all,6762,,20260410T155312Z,2026-04-10T16:07:25.648260+00:00 +2025-10-01,Copilot SWE Agent (new),all,7388,,20260410T155254Z,2026-04-10T16:07:28.789538+00:00 +2025-10-01,Copilot SWE Agent (new),all,7388,,20260410T155312Z,2026-04-10T16:07:30.099101+00:00 +2025-10-02,Copilot SWE Agent (new),all,7771,,20260410T155254Z,2026-04-10T16:07:33.272567+00:00 +2025-10-02,Copilot SWE Agent (new),all,7771,,20260410T155312Z,2026-04-10T16:07:34.588731+00:00 +2025-10-03,Copilot SWE Agent (new),all,8489,,20260410T155254Z,2026-04-10T16:07:37.716211+00:00 +2025-10-03,Copilot SWE Agent (new),all,8489,,20260410T155312Z,2026-04-10T16:07:39.021277+00:00 +2025-10-04,Copilot SWE Agent (new),all,8356,,20260410T155254Z,2026-04-10T16:07:42.260773+00:00 +2025-10-04,Copilot SWE Agent (new),all,8356,,20260410T155312Z,2026-04-10T16:07:43.487442+00:00 +2025-10-05,Copilot SWE Agent (new),all,7653,,20260410T155254Z,2026-04-10T16:07:46.766083+00:00 +2025-10-05,Copilot SWE Agent (new),all,7653,,20260410T155312Z,2026-04-10T16:07:48.198283+00:00 +2025-10-06,Copilot SWE Agent (new),all,7123,,20260410T155254Z,2026-04-10T16:07:51.292002+00:00 +2025-10-06,Copilot SWE Agent (new),all,7123,,20260410T155312Z,2026-04-10T16:07:52.705455+00:00 +2025-10-07,Copilot SWE Agent (new),all,7660,,20260410T155254Z,2026-04-10T16:07:55.730310+00:00 +2025-10-07,Copilot SWE Agent (new),all,7660,,20260410T155312Z,2026-04-10T16:07:57.212343+00:00 +2025-10-08,Copilot SWE Agent (new),all,8196,,20260410T155254Z,2026-04-10T16:08:00.338360+00:00 +2025-10-08,Copilot SWE Agent (new),all,8196,,20260410T155312Z,2026-04-10T16:08:01.731117+00:00 +2025-10-09,Copilot SWE Agent (new),all,8199,,20260410T155254Z,2026-04-10T16:08:04.892660+00:00 +2025-10-09,Copilot SWE Agent (new),all,8199,,20260410T155312Z,2026-04-10T16:08:06.145679+00:00 +2025-10-10,Copilot SWE Agent (new),all,8055,,20260410T155254Z,2026-04-10T16:08:09.497331+00:00 +2025-10-10,Copilot SWE Agent (new),all,8055,,20260410T155312Z,2026-04-10T16:08:10.622723+00:00 +2025-10-11,Copilot SWE Agent (new),all,7782,,20260410T155254Z,2026-04-10T16:08:13.965919+00:00 +2025-10-11,Copilot SWE Agent (new),all,7782,,20260410T155312Z,2026-04-10T16:08:15.126805+00:00 +2025-10-12,Copilot SWE Agent (new),all,7734,,20260410T155254Z,2026-04-10T16:08:18.509649+00:00 +2025-10-12,Copilot SWE Agent (new),all,7734,,20260410T155312Z,2026-04-10T16:08:19.836687+00:00 +2025-10-13,Copilot SWE Agent (new),all,7940,,20260410T155254Z,2026-04-10T16:08:23.015099+00:00 +2025-10-13,Copilot SWE Agent (new),all,7940,,20260410T155312Z,2026-04-10T16:08:24.346056+00:00 +2025-10-14,Copilot SWE Agent (new),all,8998,,20260410T155254Z,2026-04-10T16:08:27.620705+00:00 +2025-10-14,Copilot SWE Agent (new),all,8998,,20260410T155312Z,2026-04-10T16:08:28.852548+00:00 +2025-10-15,Copilot SWE Agent (new),all,8733,,20260410T155254Z,2026-04-10T16:08:32.131532+00:00 +2025-10-15,Copilot SWE Agent (new),all,8733,,20260410T155312Z,2026-04-10T16:08:33.357120+00:00 +2025-10-16,Copilot SWE Agent (new),all,8662,,20260410T155254Z,2026-04-10T16:08:36.589402+00:00 +2025-10-16,Copilot SWE Agent (new),all,8662,,20260410T155312Z,2026-04-10T16:08:37.969007+00:00 +2025-10-17,Copilot SWE Agent (new),all,7441,,20260410T155254Z,2026-04-10T16:08:41.246645+00:00 +2025-10-17,Copilot SWE Agent (new),all,7441,,20260410T155312Z,2026-04-10T16:08:42.414070+00:00 +2025-10-18,Copilot SWE Agent (new),all,7251,,20260410T155254Z,2026-04-10T16:08:45.702935+00:00 +2025-10-18,Copilot SWE Agent (new),all,7251,,20260410T155312Z,2026-04-10T16:08:46.867971+00:00 +2025-10-19,Copilot SWE Agent (new),all,7232,,20260410T155254Z,2026-04-10T16:08:50.148223+00:00 +2025-10-19,Copilot SWE Agent (new),all,7232,,20260410T155312Z,2026-04-10T16:08:51.290200+00:00 +2025-10-20,Copilot SWE Agent (new),all,7951,,20260410T155254Z,2026-04-10T16:08:54.645757+00:00 +2025-10-20,Copilot SWE Agent (new),all,7951,,20260410T155312Z,2026-04-10T16:08:55.759310+00:00 +2025-10-21,Copilot SWE Agent (new),all,8092,,20260410T155254Z,2026-04-10T16:08:59.189463+00:00 +2025-10-21,Copilot SWE Agent (new),all,8092,,20260410T155312Z,2026-04-10T16:09:00.189421+00:00 +2025-10-22,Copilot SWE Agent (new),all,8603,,20260410T155254Z,2026-04-10T16:09:03.774250+00:00 +2025-10-22,Copilot SWE Agent (new),all,8603,,20260410T155312Z,2026-04-10T16:09:04.899321+00:00 +2025-10-23,Copilot SWE Agent (new),all,8835,,20260410T155254Z,2026-04-10T16:09:08.378531+00:00 +2025-10-23,Copilot SWE Agent (new),all,8835,,20260410T155312Z,2026-04-10T16:09:09.381868+00:00 +2025-10-24,Copilot SWE Agent (new),all,8295,,20260410T155254Z,2026-04-10T16:09:13.091686+00:00 +2025-10-24,Copilot SWE Agent (new),all,8295,,20260410T155312Z,2026-04-10T16:09:13.874138+00:00 +2025-10-25,Copilot SWE Agent (new),all,8633,,20260410T155254Z,2026-04-10T16:09:17.682869+00:00 +2025-10-25,Copilot SWE Agent (new),all,8633,,20260410T155312Z,2026-04-10T16:09:18.332674+00:00 +2025-10-26,Copilot SWE Agent (new),all,8722,,20260410T155254Z,2026-04-10T16:09:22.205912+00:00 +2025-10-26,Copilot SWE Agent (new),all,8722,,20260410T155312Z,2026-04-10T16:09:22.814899+00:00 +2025-10-27,Copilot SWE Agent (new),all,8818,,20260410T155254Z,2026-04-10T16:09:26.708136+00:00 +2025-10-27,Copilot SWE Agent (new),all,8818,,20260410T155312Z,2026-04-10T16:09:27.426656+00:00 +2025-10-28,Copilot SWE Agent (new),all,9498,,20260410T155254Z,2026-04-10T16:09:31.190696+00:00 +2025-10-28,Copilot SWE Agent (new),all,9498,,20260410T155312Z,2026-04-10T16:09:32.031793+00:00 +2025-10-29,Copilot SWE Agent (new),all,11245,,20260410T155254Z,2026-04-10T16:09:35.831637+00:00 +2025-10-29,Copilot SWE Agent (new),all,11245,,20260410T155312Z,2026-04-10T16:09:36.490309+00:00 +2025-10-30,Copilot SWE Agent (new),all,12028,,20260410T155254Z,2026-04-10T16:09:40.330655+00:00 +2025-10-30,Copilot SWE Agent (new),all,12028,,20260410T155312Z,2026-04-10T16:09:40.919784+00:00 +2025-10-31,Copilot SWE Agent (new),all,11852,,20260410T155254Z,2026-04-10T16:09:45.112277+00:00 +2025-10-31,Copilot SWE Agent (new),all,11852,,20260410T155312Z,2026-04-10T16:09:45.507541+00:00 +2025-11-01,Copilot SWE Agent (new),all,10466,,20260410T155254Z,2026-04-10T16:09:49.576598+00:00 +2025-11-01,Copilot SWE Agent (new),all,10466,,20260410T155312Z,2026-04-10T16:09:49.979926+00:00 +2025-11-02,Copilot SWE Agent (new),all,11935,,20260410T155254Z,2026-04-10T16:09:54.181679+00:00 +2025-11-02,Copilot SWE Agent (new),all,11935,,20260410T155312Z,2026-04-10T16:09:54.409666+00:00 +2025-11-03,Copilot SWE Agent (new),all,12713,,20260410T155312Z,2026-04-10T16:09:58.864187+00:00 +2025-11-03,Copilot SWE Agent (new),all,12713,,20260410T155254Z,2026-04-10T16:09:58.711293+00:00 +2025-11-04,Copilot SWE Agent (new),all,16401,,20260410T155312Z,2026-04-10T16:10:03.471900+00:00 +2025-11-04,Copilot SWE Agent (new),all,16401,,20260410T155254Z,2026-04-10T16:10:03.471957+00:00 +2025-11-05,Copilot SWE Agent (new),all,14632,,20260410T155312Z,2026-04-10T16:10:08.048946+00:00 +2025-11-05,Copilot SWE Agent (new),all,14632,,20260410T155254Z,2026-04-10T16:10:08.066262+00:00 +2025-11-06,Copilot SWE Agent (new),all,13781,,20260410T155254Z,2026-04-10T16:10:12.688735+00:00 +2025-11-06,Copilot SWE Agent (new),all,13781,,20260410T155312Z,2026-04-10T16:10:12.688671+00:00 +2025-11-07,Copilot SWE Agent (new),all,13083,,20260410T155312Z,2026-04-10T16:10:17.296039+00:00 +2025-11-07,Copilot SWE Agent (new),all,13083,,20260410T155254Z,2026-04-10T16:10:17.295945+00:00 +2025-11-08,Copilot SWE Agent (new),all,10503,,20260410T155254Z,2026-04-10T16:10:21.797249+00:00 +2025-11-08,Copilot SWE Agent (new),all,10503,,20260410T155312Z,2026-04-10T16:10:21.796980+00:00 +2025-11-09,Copilot SWE Agent (new),all,11324,,20260410T155312Z,2026-04-10T16:10:26.314204+00:00 +2025-11-09,Copilot SWE Agent (new),all,11324,,20260410T155254Z,2026-04-10T16:10:26.307563+00:00 +2025-11-10,Copilot SWE Agent (new),all,12378,,20260410T155254Z,2026-04-10T16:10:30.914325+00:00 +2025-11-10,Copilot SWE Agent (new),all,12378,,20260410T155312Z,2026-04-10T16:10:30.914180+00:00 +2025-11-11,Copilot SWE Agent (new),all,11489,,20260410T155254Z,2026-04-10T16:10:35.421306+00:00 +2025-11-11,Copilot SWE Agent (new),all,11489,,20260410T155312Z,2026-04-10T16:10:35.437634+00:00 +2025-11-12,Copilot SWE Agent (new),all,13143,,20260410T155254Z,2026-04-10T16:10:39.989134+00:00 +2025-11-12,Copilot SWE Agent (new),all,13143,,20260410T155312Z,2026-04-10T16:10:40.008363+00:00 +2025-11-13,Copilot SWE Agent (new),all,12087,,20260410T155312Z,2026-04-10T16:10:44.553284+00:00 +2025-11-13,Copilot SWE Agent (new),all,12087,,20260410T155254Z,2026-04-10T16:10:44.535235+00:00 +2025-11-14,Copilot SWE Agent (new),all,12304,,20260410T155254Z,2026-04-10T16:10:49.090635+00:00 +2025-11-14,Copilot SWE Agent (new),all,12304,,20260410T155312Z,2026-04-10T16:10:49.075513+00:00 +2025-11-15,Copilot SWE Agent (new),all,11362,,20260410T155312Z,2026-04-10T16:10:53.651764+00:00 +2025-11-15,Copilot SWE Agent (new),all,11362,,20260410T155254Z,2026-04-10T16:10:53.647900+00:00 +2025-11-16,Copilot SWE Agent (new),all,12089,,20260410T155254Z,2026-04-10T16:10:58.160468+00:00 +2025-11-16,Copilot SWE Agent (new),all,12089,,20260410T155312Z,2026-04-10T16:10:58.157631+00:00 +2025-11-17,Copilot SWE Agent (new),all,13439,,20260410T155312Z,2026-04-10T16:11:02.862144+00:00 +2025-11-17,Copilot SWE Agent (new),all,13439,,20260410T155254Z,2026-04-10T16:11:02.861293+00:00 +2025-11-18,Copilot SWE Agent (new),all,11741,,20260410T155254Z,2026-04-10T16:11:07.499544+00:00 +2025-11-18,Copilot SWE Agent (new),all,11741,,20260410T155312Z,2026-04-10T16:11:07.457506+00:00 +2025-11-19,Copilot SWE Agent (new),all,12112,,20260410T155312Z,2026-04-10T16:11:12.082765+00:00 +2025-11-19,Copilot SWE Agent (new),all,12112,,20260410T155254Z,2026-04-10T16:11:12.082434+00:00 +2025-11-20,Copilot SWE Agent (new),all,12930,,20260410T155312Z,2026-04-10T16:11:16.611872+00:00 +2025-11-20,Copilot SWE Agent (new),all,12930,,20260410T155254Z,2026-04-10T16:11:16.724249+00:00 +2025-11-21,Copilot SWE Agent (new),all,14654,,20260410T155254Z,2026-04-10T16:11:21.164697+00:00 +2025-11-21,Copilot SWE Agent (new),all,14654,,20260410T155312Z,2026-04-10T16:11:21.126427+00:00 +2025-11-22,Copilot SWE Agent (new),all,13211,,20260410T155254Z,2026-04-10T16:11:25.658915+00:00 +2025-11-22,Copilot SWE Agent (new),all,13211,,20260410T155312Z,2026-04-10T16:11:25.689070+00:00 +2025-11-23,Copilot SWE Agent (new),all,13076,,20260410T155312Z,2026-04-10T16:11:30.148542+00:00 +2025-11-23,Copilot SWE Agent (new),all,13076,,20260410T155254Z,2026-04-10T16:11:30.146524+00:00 +2025-11-24,Copilot SWE Agent (new),all,13760,,20260410T155254Z,2026-04-10T16:11:34.643538+00:00 +2025-11-24,Copilot SWE Agent (new),all,13760,,20260410T155312Z,2026-04-10T16:11:34.625827+00:00 +2025-11-25,Copilot SWE Agent (new),all,11608,,20260410T155312Z,2026-04-10T16:11:39.251623+00:00 +2025-11-25,Copilot SWE Agent (new),all,11608,,20260410T155254Z,2026-04-10T16:11:39.233147+00:00 +2025-11-26,Copilot SWE Agent (new),all,12725,,20260410T155312Z,2026-04-10T16:11:43.824703+00:00 +2025-11-26,Copilot SWE Agent (new),all,12725,,20260410T155254Z,2026-04-10T16:11:43.824773+00:00 +2025-11-27,Copilot SWE Agent (new),all,13935,,20260410T155254Z,2026-04-10T16:11:48.447103+00:00 +2025-11-27,Copilot SWE Agent (new),all,13935,,20260410T155312Z,2026-04-10T16:11:48.442692+00:00 +2025-11-28,Copilot SWE Agent (new),all,12328,,20260410T155254Z,2026-04-10T16:11:53.038952+00:00 +2025-11-28,Copilot SWE Agent (new),all,12328,,20260410T155312Z,2026-04-10T16:11:53.042192+00:00 +2025-11-29,Copilot SWE Agent (new),all,12511,,20260410T155254Z,2026-04-10T16:11:57.651756+00:00 +2025-11-29,Copilot SWE Agent (new),all,12511,,20260410T155312Z,2026-04-10T16:11:57.653217+00:00 +2025-11-30,Copilot SWE Agent (new),all,11927,,20260410T155312Z,2026-04-10T16:12:02.219701+00:00 +2025-11-30,Copilot SWE Agent (new),all,11927,,20260410T155254Z,2026-04-10T16:12:02.217584+00:00 +2025-12-01,Copilot SWE Agent (new),all,14627,,20260410T155254Z,2026-04-10T16:12:06.648007+00:00 +2025-12-01,Copilot SWE Agent (new),all,14627,,20260410T155312Z,2026-04-10T16:12:06.637145+00:00 +2025-12-02,Copilot SWE Agent (new),all,15430,,20260410T155254Z,2026-04-10T16:12:11.111637+00:00 +2025-12-02,Copilot SWE Agent (new),all,15430,,20260410T155312Z,2026-04-10T16:12:11.117442+00:00 +2025-12-03,Copilot SWE Agent (new),all,16138,,20260410T155254Z,2026-04-10T16:12:15.649263+00:00 +2025-12-03,Copilot SWE Agent (new),all,16138,,20260410T155312Z,2026-04-10T16:12:15.682212+00:00 +2025-12-04,Copilot SWE Agent (new),all,16613,,20260410T155254Z,2026-04-10T16:12:20.123167+00:00 +2025-12-04,Copilot SWE Agent (new),all,16613,,20260410T155312Z,2026-04-10T16:12:20.381671+00:00 +2025-12-05,Copilot SWE Agent (new),all,14189,,20260410T155254Z,2026-04-10T16:12:24.574317+00:00 +2025-12-05,Copilot SWE Agent (new),all,14189,,20260410T155312Z,2026-04-10T16:12:24.802284+00:00 +2025-12-06,Copilot SWE Agent (new),all,14444,,20260410T155312Z,2026-04-10T16:12:29.230963+00:00 +2025-12-06,Copilot SWE Agent (new),all,14444,,20260410T155254Z,2026-04-10T16:12:29.180717+00:00 +2025-12-07,Copilot SWE Agent (new),all,15028,,20260410T155254Z,2026-04-10T16:12:33.854989+00:00 +2025-12-07,Copilot SWE Agent (new),all,15028,,20260410T155312Z,2026-04-10T16:12:33.649283+00:00 +2025-12-08,Copilot SWE Agent (new),all,16242,,20260410T155254Z,2026-04-10T16:12:38.364665+00:00 +2025-12-08,Copilot SWE Agent (new),all,16242,,20260410T155312Z,2026-04-10T16:12:38.442993+00:00 +2025-12-09,Copilot SWE Agent (new),all,16057,,20260410T155254Z,2026-04-10T16:12:42.831088+00:00 +2025-12-09,Copilot SWE Agent (new),all,16057,,20260410T155312Z,2026-04-10T16:12:42.950958+00:00 +2025-12-10,Copilot SWE Agent (new),all,15684,,20260410T155312Z,2026-04-10T16:12:47.421831+00:00 +2025-12-10,Copilot SWE Agent (new),all,15684,,20260410T155254Z,2026-04-10T16:12:47.415871+00:00 +2025-12-11,Copilot SWE Agent (new),all,14488,,20260410T155312Z,2026-04-10T16:12:51.919438+00:00 +2025-12-11,Copilot SWE Agent (new),all,14488,,20260410T155254Z,2026-04-10T16:12:51.921172+00:00 +2025-12-12,Copilot SWE Agent (new),all,13984,,20260410T155312Z,2026-04-10T16:13:56.641685+00:00 +2025-12-12,Copilot SWE Agent (new),all,13984,,20260410T155254Z,2026-04-10T16:13:56.656198+00:00 +2025-12-13,Copilot SWE Agent (new),all,13969,,20260410T155312Z,2026-04-10T16:14:01.144119+00:00 +2025-12-13,Copilot SWE Agent (new),all,13969,,20260410T155254Z,2026-04-10T16:14:01.153109+00:00 +2025-12-14,Copilot SWE Agent (new),all,13355,,20260410T155312Z,2026-04-10T16:14:05.752358+00:00 +2025-12-14,Copilot SWE Agent (new),all,13355,,20260410T155254Z,2026-04-10T16:14:05.762943+00:00 +2025-12-15,Copilot SWE Agent (new),all,14115,,20260410T155312Z,2026-04-10T16:14:10.358343+00:00 +2025-12-15,Copilot SWE Agent (new),all,14115,,20260410T155254Z,2026-04-10T16:14:10.359834+00:00 +2025-12-16,Copilot SWE Agent (new),all,14554,,20260410T155312Z,2026-04-10T16:14:14.827676+00:00 +2025-12-16,Copilot SWE Agent (new),all,14554,,20260410T155254Z,2026-04-10T16:14:14.830692+00:00 +2025-12-17,Copilot SWE Agent (new),all,15506,,20260410T155254Z,2026-04-10T16:14:19.317004+00:00 +2025-12-17,Copilot SWE Agent (new),all,15506,,20260410T155312Z,2026-04-10T16:14:19.297321+00:00 +2025-12-18,Copilot SWE Agent (new),all,13670,,20260410T155254Z,2026-04-10T16:14:23.874243+00:00 +2025-12-18,Copilot SWE Agent (new),all,13670,,20260410T155312Z,2026-04-10T16:14:23.877794+00:00 +2025-12-19,Copilot SWE Agent (new),all,12861,,20260410T155254Z,2026-04-10T16:14:28.370599+00:00 +2025-12-19,Copilot SWE Agent (new),all,12861,,20260410T155312Z,2026-04-10T16:14:28.481480+00:00 +2025-12-20,Copilot SWE Agent (new),all,11436,,20260410T155254Z,2026-04-10T16:14:32.862128+00:00 +2025-12-20,Copilot SWE Agent (new),all,11436,,20260410T155312Z,2026-04-10T16:14:33.000234+00:00 +2025-12-21,Copilot SWE Agent (new),all,12365,,20260410T155254Z,2026-04-10T16:14:37.369450+00:00 +2025-12-21,Copilot SWE Agent (new),all,12365,,20260410T155312Z,2026-04-10T16:14:37.625029+00:00 +2025-12-22,Copilot SWE Agent (new),all,12835,,20260410T155254Z,2026-04-10T16:14:41.806478+00:00 +2025-12-22,Copilot SWE Agent (new),all,12835,,20260410T155312Z,2026-04-10T16:14:42.033303+00:00 +2025-12-23,Copilot SWE Agent (new),all,11816,,20260410T155312Z,2026-04-10T16:14:46.464702+00:00 +2025-12-23,Copilot SWE Agent (new),all,11816,,20260410T155254Z,2026-04-10T16:14:46.357318+00:00 +2025-12-24,Copilot SWE Agent (new),all,10495,,20260410T155254Z,2026-04-10T16:14:50.912661+00:00 +2025-12-24,Copilot SWE Agent (new),all,10495,,20260410T155312Z,2026-04-10T16:14:50.912411+00:00 +2025-12-25,Copilot SWE Agent (new),all,9163,,20260410T155312Z,2026-04-10T16:14:55.522080+00:00 +2025-12-25,Copilot SWE Agent (new),all,9163,,20260410T155254Z,2026-04-10T16:14:55.520989+00:00 +2025-12-26,Copilot SWE Agent (new),all,10881,,20260410T155254Z,2026-04-10T16:15:00.046639+00:00 +2025-12-26,Copilot SWE Agent (new),all,10881,,20260410T155312Z,2026-04-10T16:14:59.995120+00:00 +2025-12-27,Copilot SWE Agent (new),all,12135,,20260410T155254Z,2026-04-10T16:15:04.541898+00:00 +2025-12-27,Copilot SWE Agent (new),all,12135,,20260410T155312Z,2026-04-10T16:15:04.559360+00:00 +2025-12-28,Copilot SWE Agent (new),all,12018,,20260410T155254Z,2026-04-10T16:15:09.002863+00:00 +2025-12-28,Copilot SWE Agent (new),all,12018,,20260410T155312Z,2026-04-10T16:15:09.025585+00:00 +2025-12-29,Copilot SWE Agent (new),all,12858,,20260410T155254Z,2026-04-10T16:15:13.471790+00:00 +2025-12-29,Copilot SWE Agent (new),all,12858,,20260410T155312Z,2026-04-10T16:15:13.674620+00:00 +2025-12-30,Copilot SWE Agent (new),all,13658,,20260410T155254Z,2026-04-10T16:15:17.983847+00:00 +2025-12-30,Copilot SWE Agent (new),all,13658,,20260410T155312Z,2026-04-10T16:15:18.174940+00:00 +2025-12-31,Copilot SWE Agent (new),all,11077,,20260410T155254Z,2026-04-10T16:15:22.537683+00:00 +2025-12-31,Copilot SWE Agent (new),all,11077,,20260410T155312Z,2026-04-10T16:15:22.726844+00:00 +2026-01-01,Copilot SWE Agent (new),all,12652,,20260410T155254Z,2026-04-10T16:15:26.994408+00:00 +2026-01-01,Copilot SWE Agent (new),all,12652,,20260410T155312Z,2026-04-10T16:15:27.281687+00:00 +2026-01-02,Copilot SWE Agent (new),all,14986,,20260410T155254Z,2026-04-10T16:15:31.496455+00:00 +2026-01-02,Copilot SWE Agent (new),all,14986,,20260410T155312Z,2026-04-10T16:15:31.766517+00:00 +2026-01-03,Copilot SWE Agent (new),all,14779,,20260410T155254Z,2026-04-10T16:15:35.988312+00:00 +2026-01-03,Copilot SWE Agent (new),all,14779,,20260410T155312Z,2026-04-10T16:15:36.241842+00:00 +2026-01-04,Copilot SWE Agent (new),all,15433,,20260410T155254Z,2026-04-10T16:15:40.450600+00:00 +2026-01-04,Copilot SWE Agent (new),all,15433,,20260410T155312Z,2026-04-10T16:15:40.666129+00:00 +2026-01-05,Copilot SWE Agent (new),all,16442,,20260410T155254Z,2026-04-10T16:15:44.931288+00:00 +2026-01-05,Copilot SWE Agent (new),all,16442,,20260410T155312Z,2026-04-10T16:15:45.081688+00:00 +2026-01-06,Copilot SWE Agent (new),all,16333,,20260410T155254Z,2026-04-10T16:15:49.426917+00:00 +2026-01-06,Copilot SWE Agent (new),all,16333,,20260410T155312Z,2026-04-10T16:15:49.587484+00:00 +2026-01-07,Copilot SWE Agent (new),all,16398,,20260410T155254Z,2026-04-10T16:15:53.863543+00:00 +2026-01-07,Copilot SWE Agent (new),all,16398,,20260410T155312Z,2026-04-10T16:15:54.029752+00:00 +2026-01-08,Copilot SWE Agent (new),all,16514,,20260410T155254Z,2026-04-10T16:15:58.496762+00:00 +2026-01-08,Copilot SWE Agent (new),all,16514,,20260410T155312Z,2026-04-10T16:15:58.499819+00:00 +2026-01-09,Copilot SWE Agent (new),all,16386,,20260410T155312Z,2026-04-10T16:16:03.004491+00:00 +2026-01-09,Copilot SWE Agent (new),all,16386,,20260410T155254Z,2026-04-10T16:16:03.001148+00:00 +2026-01-10,Copilot SWE Agent (new),all,12665,,20260410T155254Z,2026-04-10T16:16:07.481298+00:00 +2026-01-10,Copilot SWE Agent (new),all,12665,,20260410T155312Z,2026-04-10T16:16:07.452983+00:00 +2026-01-11,Copilot SWE Agent (new),all,14289,,20260410T155254Z,2026-04-10T16:16:12.034255+00:00 +2026-01-11,Copilot SWE Agent (new),all,14289,,20260410T155312Z,2026-04-10T16:16:12.082674+00:00 +2026-01-12,Copilot SWE Agent (new),all,16097,,20260410T155254Z,2026-04-10T16:16:16.524605+00:00 +2026-01-12,Copilot SWE Agent (new),all,16097,,20260410T155312Z,2026-04-10T16:16:16.640216+00:00 +2026-01-13,Copilot SWE Agent (new),all,14499,,20260410T155254Z,2026-04-10T16:16:21.084395+00:00 +2026-01-13,Copilot SWE Agent (new),all,14499,,20260410T155312Z,2026-04-10T16:16:21.226488+00:00 +2026-01-14,Copilot SWE Agent (new),all,15173,,20260410T155254Z,2026-04-10T16:16:25.519239+00:00 +2026-01-14,Copilot SWE Agent (new),all,15173,,20260410T155312Z,2026-04-10T16:16:25.647325+00:00 +2026-01-15,Copilot SWE Agent (new),all,15183,,20260410T155254Z,2026-04-10T16:16:30.197728+00:00 +2026-01-15,Copilot SWE Agent (new),all,15183,,20260410T155312Z,2026-04-10T16:16:30.213980+00:00 +2026-01-16,Copilot SWE Agent (new),all,15716,,20260410T155254Z,2026-04-10T16:16:34.773926+00:00 +2026-01-16,Copilot SWE Agent (new),all,15716,,20260410T155312Z,2026-04-10T16:16:35.017234+00:00 +2026-01-17,Copilot SWE Agent (new),all,14612,,20260410T155254Z,2026-04-10T16:16:39.296208+00:00 +2026-01-17,Copilot SWE Agent (new),all,14612,,20260410T155312Z,2026-04-10T16:16:39.547812+00:00 +2026-01-18,Copilot SWE Agent (new),all,15167,,20260410T155254Z,2026-04-10T16:16:43.756078+00:00 +2026-01-18,Copilot SWE Agent (new),all,15167,,20260410T155312Z,2026-04-10T16:16:44.168295+00:00 +2026-01-19,Copilot SWE Agent (new),all,15694,,20260410T155254Z,2026-04-10T16:16:48.313588+00:00 +2026-01-19,Copilot SWE Agent (new),all,15694,,20260410T155312Z,2026-04-10T16:16:48.675768+00:00 +2026-01-20,Copilot SWE Agent (new),all,13966,1,20260410T155254Z,2026-04-10T16:16:52.834685+00:00 +2026-01-20,Copilot SWE Agent (new),all,14030,,20260410T155312Z,2026-04-10T16:16:53.148361+00:00 +2026-01-21,Copilot SWE Agent (new),all,15559,,20260410T155254Z,2026-04-10T16:16:57.424371+00:00 +2026-01-21,Copilot SWE Agent (new),all,15559,,20260410T155312Z,2026-04-10T16:16:57.604234+00:00 +2026-01-22,Copilot SWE Agent (new),all,14037,,20260410T155312Z,2026-04-10T16:17:02.091917+00:00 +2026-01-22,Copilot SWE Agent (new),all,14037,,20260410T155254Z,2026-04-10T16:17:02.003840+00:00 +2026-01-23,Copilot SWE Agent (new),all,14913,,20260410T155312Z,2026-04-10T16:17:06.567471+00:00 +2026-01-23,Copilot SWE Agent (new),all,14913,,20260410T155254Z,2026-04-10T16:17:06.572266+00:00 +2026-01-24,Copilot SWE Agent (new),all,12828,,20260410T155254Z,2026-04-10T16:17:11.205802+00:00 +2026-01-24,Copilot SWE Agent (new),all,12828,,20260410T155312Z,2026-04-10T16:17:11.204289+00:00 +2026-01-25,Copilot SWE Agent (new),all,13621,,20260410T155254Z,2026-04-10T16:17:15.710578+00:00 +2026-01-25,Copilot SWE Agent (new),all,13621,,20260410T155312Z,2026-04-10T16:17:15.723419+00:00 +2026-01-26,Copilot SWE Agent (new),all,15875,,20260410T155254Z,2026-04-10T16:17:20.194368+00:00 +2026-01-26,Copilot SWE Agent (new),all,15875,,20260410T155312Z,2026-04-10T16:17:20.214230+00:00 +2026-01-27,Copilot SWE Agent (new),all,16769,,20260410T155254Z,2026-04-10T16:17:24.660193+00:00 +2026-01-27,Copilot SWE Agent (new),all,16769,,20260410T155312Z,2026-04-10T16:17:24.679519+00:00 +2026-01-28,Copilot SWE Agent (new),all,17461,,20260410T155312Z,2026-04-10T16:17:29.208224+00:00 +2026-01-28,Copilot SWE Agent (new),all,17461,,20260410T155254Z,2026-04-10T16:17:29.208132+00:00 +2026-01-29,Copilot SWE Agent (new),all,17629,,20260410T155312Z,2026-04-10T16:17:33.713135+00:00 +2026-01-29,Copilot SWE Agent (new),all,17629,,20260410T155254Z,2026-04-10T16:17:33.754407+00:00 +2026-01-30,Copilot SWE Agent (new),all,17307,,20260410T155254Z,2026-04-10T16:17:38.176540+00:00 +2026-01-30,Copilot SWE Agent (new),all,17307,,20260410T155312Z,2026-04-10T16:17:38.132021+00:00 +2026-01-31,Copilot SWE Agent (new),all,18057,,20260410T155312Z,2026-04-10T16:17:42.844801+00:00 +2026-01-31,Copilot SWE Agent (new),all,18057,,20260410T155254Z,2026-04-10T16:17:42.840692+00:00 +2026-02-01,Copilot SWE Agent (new),all,19413,,20260410T155254Z,2026-04-10T16:17:47.332631+00:00 +2026-02-01,Copilot SWE Agent (new),all,19413,,20260410T155312Z,2026-04-10T16:17:47.320985+00:00 +2026-02-02,Copilot SWE Agent (new),all,17130,,20260410T155254Z,2026-04-10T16:17:51.850602+00:00 +2026-02-02,Copilot SWE Agent (new),all,17130,,20260410T155312Z,2026-04-10T16:17:51.920848+00:00 +2025-04-01,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:17:48.541281+00:00 +2025-04-01,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:17:48.541281+00:00 +2026-02-03,Copilot SWE Agent (new),all,21020,,20260410T155254Z,2026-04-10T16:17:56.391228+00:00 +2026-02-03,Copilot SWE Agent (new),all,21020,,20260410T155312Z,2026-04-10T16:17:56.579284+00:00 +2026-02-04,Copilot SWE Agent (new),all,24737,,20260410T155254Z,2026-04-10T16:18:00.875125+00:00 +2026-02-04,Copilot SWE Agent (new),all,24737,,20260410T155312Z,2026-04-10T16:18:01.007288+00:00 +2025-04-02,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:17:57.626380+00:00 +2025-04-02,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:17:57.626380+00:00 +2026-02-05,Copilot SWE Agent (new),all,21171,,20260410T155254Z,2026-04-10T16:18:05.345748+00:00 +2026-02-05,Copilot SWE Agent (new),all,21171,,20260410T155312Z,2026-04-10T16:18:05.445282+00:00 +2026-02-06,Copilot SWE Agent (new),all,20985,,20260410T155254Z,2026-04-10T16:18:09.974720+00:00 +2026-02-06,Copilot SWE Agent (new),all,20985,,20260410T155312Z,2026-04-10T16:18:09.982337+00:00 +2025-04-03,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:18:06.481585+00:00 +2025-04-03,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:18:06.481585+00:00 +2026-02-07,Copilot SWE Agent (new),all,22688,,20260410T155312Z,2026-04-10T16:18:14.549239+00:00 +2026-02-07,Copilot SWE Agent (new),all,22688,,20260410T155254Z,2026-04-10T16:18:14.541626+00:00 +2026-02-08,Copilot SWE Agent (new),all,23029,,20260410T155254Z,2026-04-10T16:19:19.419575+00:00 +2026-02-08,Copilot SWE Agent (new),all,23029,,20260410T155312Z,2026-04-10T16:19:19.418286+00:00 +2025-04-04,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:18:15.280902+00:00 +2025-04-04,Replit Agent,all,4,,20260410T161748Z,2026-04-10T16:18:15.280902+00:00 +2026-02-09,Copilot SWE Agent (new),all,21115,,20260410T155254Z,2026-04-10T16:19:23.914296+00:00 +2026-02-09,Copilot SWE Agent (new),all,21115,,20260410T155312Z,2026-04-10T16:19:24.118929+00:00 +2026-02-10,Copilot SWE Agent (new),all,23551,,20260410T155254Z,2026-04-10T16:19:28.519160+00:00 +2026-02-10,Copilot SWE Agent (new),all,23551,,20260410T155312Z,2026-04-10T16:19:28.573703+00:00 +2025-04-05,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:19:24.524714+00:00 +2025-04-05,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:19:24.524714+00:00 +2026-02-11,Copilot SWE Agent (new),all,24814,,20260410T155254Z,2026-04-10T16:19:33.002619+00:00 +2026-02-11,Copilot SWE Agent (new),all,24814,,20260410T155312Z,2026-04-10T16:19:33.016475+00:00 +2026-02-12,Copilot SWE Agent (new),all,24404,,20260410T155312Z,2026-04-10T16:19:37.436700+00:00 +2026-02-12,Copilot SWE Agent (new),all,24404,,20260410T155254Z,2026-04-10T16:19:37.433474+00:00 +2025-04-06,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:19:33.313093+00:00 +2025-04-06,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:19:33.313093+00:00 +2026-02-13,Copilot SWE Agent (new),all,23447,,20260410T155254Z,2026-04-10T16:19:41.996498+00:00 +2026-02-13,Copilot SWE Agent (new),all,23447,,20260410T155312Z,2026-04-10T16:19:41.879713+00:00 +2025-04-07,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:19:42.146152+00:00 +2025-04-07,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:19:42.146152+00:00 +2026-02-14,Copilot SWE Agent (new),all,21018,,20260410T155254Z,2026-04-10T16:19:46.520012+00:00 +2026-02-14,Copilot SWE Agent (new),all,21018,,20260410T155312Z,2026-04-10T16:19:46.520388+00:00 +2026-02-15,Copilot SWE Agent (new),all,22082,,20260410T155254Z,2026-04-10T16:19:51.047426+00:00 +2026-02-15,Copilot SWE Agent (new),all,22082,,20260410T155312Z,2026-04-10T16:19:51.049652+00:00 +2025-04-08,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:19:51.046457+00:00 +2025-04-08,Replit Agent,all,2,,20260410T161748Z,2026-04-10T16:19:51.046457+00:00 +2026-02-16,Copilot SWE Agent (new),all,23818,,20260410T155254Z,2026-04-10T16:19:55.536762+00:00 +2026-02-16,Copilot SWE Agent (new),all,23818,,20260410T155312Z,2026-04-10T16:19:55.560751+00:00 +2026-02-17,Copilot SWE Agent (new),all,22447,,20260410T155312Z,2026-04-10T16:21:00.339346+00:00 +2026-02-17,Copilot SWE Agent (new),all,22447,,20260410T155254Z,2026-04-10T16:19:59.969902+00:00 +2025-04-09,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:19:59.879671+00:00 +2025-04-09,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:19:59.879671+00:00 +2026-02-18,Copilot SWE Agent (new),all,24375,,20260410T155312Z,2026-04-10T16:21:04.881308+00:00 +2026-02-18,Copilot SWE Agent (new),all,24375,,20260410T155254Z,2026-04-10T16:21:04.881347+00:00 +2026-02-19,Copilot SWE Agent (new),all,19650,,20260410T155312Z,2026-04-10T16:21:09.401134+00:00 +2026-02-19,Copilot SWE Agent (new),all,19650,,20260410T155254Z,2026-04-10T16:21:09.434502+00:00 +2025-04-10,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:21:09.379182+00:00 +2025-04-10,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:21:09.379182+00:00 +2026-02-20,Copilot SWE Agent (new),all,17139,,20260410T155312Z,2026-04-10T16:21:13.821197+00:00 +2026-02-20,Copilot SWE Agent (new),all,17139,,20260410T155254Z,2026-04-10T16:21:13.896745+00:00 +2026-02-21,Copilot SWE Agent (new),all,18020,,20260410T155254Z,2026-04-10T16:21:18.325812+00:00 +2026-02-21,Copilot SWE Agent (new),all,18020,,20260410T155312Z,2026-04-10T16:21:18.318371+00:00 +2025-04-11,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:21:18.210943+00:00 +2025-04-11,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:21:18.210943+00:00 +2026-02-22,Copilot SWE Agent (new),all,18090,,20260410T155312Z,2026-04-10T16:21:22.919647+00:00 +2026-02-22,Copilot SWE Agent (new),all,18090,,20260410T155254Z,2026-04-10T16:21:22.903324+00:00 +2026-02-23,Copilot SWE Agent (new),all,18999,,20260410T155254Z,2026-04-10T16:21:27.546553+00:00 +2026-02-23,Copilot SWE Agent (new),all,18999,,20260410T155312Z,2026-04-10T16:21:27.545618+00:00 +2025-04-12,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:21:27.428094+00:00 +2025-04-12,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:21:27.428094+00:00 +2026-02-24,Copilot SWE Agent (new),all,19596,,20260410T155254Z,2026-04-10T16:21:32.057821+00:00 +2026-02-24,Copilot SWE Agent (new),all,19596,,20260410T155312Z,2026-04-10T16:21:32.104098+00:00 +2026-02-25,Copilot SWE Agent (new),all,18704,,20260410T155312Z,2026-04-10T16:21:36.556205+00:00 +2026-02-25,Copilot SWE Agent (new),all,18704,,20260410T155254Z,2026-04-10T16:21:36.550495+00:00 +2025-04-13,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:21:36.246471+00:00 +2025-04-13,Replit Agent,all,1,,20260410T161748Z,2026-04-10T16:21:36.246471+00:00 +2026-02-26,Copilot SWE Agent (new),all,18331,,20260410T155254Z,2026-04-10T16:21:41.068099+00:00 +2026-02-26,Copilot SWE Agent (new),all,18331,,20260410T155312Z,2026-04-10T16:21:41.048283+00:00 +2026-02-27,Copilot SWE Agent (new),all,18669,,20260410T155254Z,2026-04-10T16:22:45.789614+00:00 +2026-02-27,Copilot SWE Agent (new),all,18669,,20260410T155312Z,2026-04-10T16:22:45.790054+00:00 +2025-04-14,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:21:45.035245+00:00 +2025-04-14,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:21:45.035245+00:00 +2026-02-28,Copilot SWE Agent (new),all,18929,,20260410T155254Z,2026-04-10T16:22:50.454747+00:00 +2026-02-28,Copilot SWE Agent (new),all,18929,,20260410T155312Z,2026-04-10T16:22:50.457938+00:00 +2026-03-01,Copilot SWE Agent (new),all,20028,,20260410T155254Z,2026-04-10T16:22:55.061191+00:00 +2026-03-01,Copilot SWE Agent (new),all,20028,,20260410T155312Z,2026-04-10T16:22:55.060995+00:00 +2025-04-15,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:22:54.445465+00:00 +2025-04-15,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:22:54.445465+00:00 +2026-03-02,Copilot SWE Agent (new),all,19851,,20260410T155312Z,2026-04-10T16:22:59.671856+00:00 +2026-03-02,Copilot SWE Agent (new),all,19851,,20260410T155254Z,2026-04-10T16:22:59.670471+00:00 +2026-03-03,Copilot SWE Agent (new),all,19930,,20260410T155254Z,2026-04-10T16:23:04.168925+00:00 +2026-03-03,Copilot SWE Agent (new),all,19930,,20260410T155312Z,2026-04-10T16:23:04.139092+00:00 +2025-04-16,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:23:03.351280+00:00 +2025-04-16,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:23:03.351280+00:00 +2026-03-04,Copilot SWE Agent (new),all,20314,,20260410T155254Z,2026-04-10T16:23:08.641203+00:00 +2026-03-04,Copilot SWE Agent (new),all,20314,,20260410T155312Z,2026-04-10T16:23:08.650643+00:00 +2026-03-05,Copilot SWE Agent (new),all,18038,,20260410T155254Z,2026-04-10T16:23:13.120685+00:00 +2026-03-05,Copilot SWE Agent (new),all,18038,,20260410T155312Z,2026-04-10T16:23:13.155241+00:00 +2025-04-17,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:23:12.246348+00:00 +2025-04-17,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:23:12.246348+00:00 +2026-03-06,Copilot SWE Agent (new),all,19177,,20260410T155254Z,2026-04-10T16:23:17.620419+00:00 +2026-03-06,Copilot SWE Agent (new),all,19177,,20260410T155312Z,2026-04-10T16:23:17.657022+00:00 +2026-03-07,Copilot SWE Agent (new),all,19596,,20260410T155254Z,2026-04-10T16:23:22.078628+00:00 +2026-03-07,Copilot SWE Agent (new),all,19596,,20260410T155312Z,2026-04-10T16:23:22.100405+00:00 +2025-04-18,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:23:21.020319+00:00 +2025-04-18,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:23:21.020319+00:00 +2026-03-08,Copilot SWE Agent (new),all,18581,,20260410T155254Z,2026-04-10T16:23:26.668567+00:00 +2026-03-08,Copilot SWE Agent (new),all,18581,,20260410T155312Z,2026-04-10T16:23:26.671564+00:00 +2026-03-09,Copilot SWE Agent (new),all,19770,,20260410T155312Z,2026-04-10T16:24:31.529899+00:00 +2026-03-09,Copilot SWE Agent (new),all,19770,,20260410T155254Z,2026-04-10T16:24:31.527521+00:00 +2025-04-19,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:24:30.400670+00:00 +2025-04-19,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:24:30.400670+00:00 +2026-03-10,Copilot SWE Agent (new),all,20856,,20260410T155254Z,2026-04-10T16:24:36.078664+00:00 +2026-03-10,Copilot SWE Agent (new),all,20856,,20260410T155312Z,2026-04-10T16:24:36.073870+00:00 +2026-03-11,Copilot SWE Agent (new),all,20707,,20260410T155254Z,2026-04-10T16:24:40.637175+00:00 +2026-03-11,Copilot SWE Agent (new),all,20707,,20260410T155312Z,2026-04-10T16:24:40.641196+00:00 +2025-04-20,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:24:39.211769+00:00 +2025-04-20,Replit Agent,all,1,,20260410T161748Z,2026-04-10T16:24:39.211769+00:00 +2026-03-12,Copilot SWE Agent (new),all,20821,,20260410T155312Z,2026-04-10T16:24:45.128637+00:00 +2026-03-12,Copilot SWE Agent (new),all,20821,,20260410T155254Z,2026-04-10T16:24:45.125365+00:00 +2026-03-13,Copilot SWE Agent (new),all,19090,,20260410T155254Z,2026-04-10T16:24:49.652089+00:00 +2026-03-13,Copilot SWE Agent (new),all,19090,,20260410T155312Z,2026-04-10T16:24:49.651774+00:00 +2025-04-21,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:24:48.208282+00:00 +2025-04-21,Replit Agent,all,3,,20260410T161748Z,2026-04-10T16:24:48.208282+00:00 +2026-03-14,Copilot SWE Agent (new),all,19838,,20260410T155254Z,2026-04-10T16:24:54.154744+00:00 +2026-03-14,Copilot SWE Agent (new),all,19838,,20260410T155312Z,2026-04-10T16:24:54.208980+00:00 +2025-04-22,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:24:57.170796+00:00 +2025-04-22,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:24:57.170796+00:00 +2025-04-23,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:25:06.002499+00:00 +2025-04-23,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:25:06.002499+00:00 +2025-04-24,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:25:14.839851+00:00 +2025-04-24,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:25:14.839851+00:00 +2025-04-25,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:25:23.715817+00:00 +2025-04-25,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:25:23.715817+00:00 +2025-04-26,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:25:32.652378+00:00 +2025-04-26,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:25:32.652378+00:00 +2025-04-27,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:25:41.467913+00:00 +2025-04-27,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:25:41.467913+00:00 +2025-04-28,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:25:50.484175+00:00 +2025-04-28,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:25:50.484175+00:00 +2025-04-29,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:25:59.352078+00:00 +2025-04-29,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:25:59.352078+00:00 +2025-04-30,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:26:08.280206+00:00 +2025-04-30,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:26:08.280206+00:00 +2025-05-01,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:26:17.214824+00:00 +2025-05-01,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:26:17.214824+00:00 +2025-05-02,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:26:26.108417+00:00 +2025-05-02,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:26:26.108417+00:00 +2025-05-03,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:26:35.107376+00:00 +2025-05-03,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:26:35.107376+00:00 +2025-05-04,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:26:44.088381+00:00 +2025-05-04,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:26:44.088381+00:00 +2025-05-05,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:26:53.061959+00:00 +2025-05-05,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:26:53.061959+00:00 +2025-05-06,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:27:02.103012+00:00 +2025-05-06,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:27:02.103012+00:00 +2025-05-07,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:27:10.920398+00:00 +2025-05-07,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:27:10.920398+00:00 +2025-05-08,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:27:19.772192+00:00 +2025-05-08,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:27:19.772192+00:00 +2025-05-09,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:27:28.717517+00:00 +2025-05-09,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:27:28.717517+00:00 +2025-05-10,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:27:37.560297+00:00 +2025-05-10,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:27:37.560297+00:00 +2025-05-11,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:27:46.451878+00:00 +2025-05-11,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:27:46.451878+00:00 +2025-05-12,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:27:55.408822+00:00 +2025-05-12,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:27:55.408822+00:00 +2025-05-13,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:28:04.256265+00:00 +2025-05-13,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:28:04.256265+00:00 +2025-05-14,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:28:13.122630+00:00 +2025-05-14,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:28:13.122630+00:00 +2025-05-15,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:28:22.143538+00:00 +2025-05-15,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:28:22.143538+00:00 +2025-05-16,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:28:30.945221+00:00 +2025-05-16,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:28:30.945221+00:00 +2025-05-17,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:28:39.743863+00:00 +2025-05-17,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:28:39.743863+00:00 +2025-05-18,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:28:48.582046+00:00 +2025-05-18,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:28:48.582046+00:00 +2025-05-19,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:28:57.461131+00:00 +2025-05-19,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:28:57.461131+00:00 +2025-05-20,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:29:06.278213+00:00 +2025-05-20,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:29:06.278213+00:00 +2025-05-21,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:29:15.307324+00:00 +2025-05-21,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:29:15.307324+00:00 +2025-05-22,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:29:24.189277+00:00 +2025-05-22,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:29:24.189277+00:00 +2025-05-23,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:29:34.167224+00:00 +2025-05-23,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:29:34.167224+00:00 +2025-05-24,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:29:43.014310+00:00 +2025-05-24,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:29:43.014310+00:00 +2025-05-25,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:29:52.043955+00:00 +2025-05-25,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:29:52.043955+00:00 +2025-05-26,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:30:00.849407+00:00 +2025-05-26,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:30:00.849407+00:00 +2025-05-27,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:30:09.947385+00:00 +2025-05-27,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:30:09.947385+00:00 +2025-05-28,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:30:18.978633+00:00 +2025-05-28,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:30:18.978633+00:00 +2025-05-29,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:30:27.928339+00:00 +2025-05-29,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:30:27.928339+00:00 +2025-05-30,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:30:37.069899+00:00 +2025-05-30,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:30:37.069899+00:00 +2025-05-31,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:30:45.989131+00:00 +2025-05-31,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:30:45.989131+00:00 +2025-06-01,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:30:54.846356+00:00 +2025-06-01,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:30:54.846356+00:00 +2025-06-02,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:31:03.926188+00:00 +2025-06-02,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:31:03.926188+00:00 +2025-06-03,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:31:12.792435+00:00 +2025-06-03,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:31:12.792435+00:00 +2025-06-04,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:31:21.961651+00:00 +2025-06-04,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:31:21.961651+00:00 +2025-06-05,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:31:30.978062+00:00 +2025-06-05,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:31:30.978062+00:00 +2025-06-06,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:31:39.978228+00:00 +2025-06-06,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:31:39.978228+00:00 +2025-06-07,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:31:49.031632+00:00 +2025-06-07,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:31:49.031632+00:00 +2025-06-08,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:31:58.005206+00:00 +2025-06-08,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:31:58.005206+00:00 +2025-06-09,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:32:06.910507+00:00 +2025-06-09,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:32:06.910507+00:00 +2025-06-10,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:32:15.949252+00:00 +2025-06-10,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:32:15.949252+00:00 +2025-06-11,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:32:24.900691+00:00 +2025-06-11,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:32:24.900691+00:00 +2025-06-12,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:32:33.877188+00:00 +2025-06-12,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:32:33.877188+00:00 +2025-06-13,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:32:42.710856+00:00 +2025-06-13,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:32:42.710856+00:00 +2025-06-14,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:32:51.598087+00:00 +2025-06-14,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:32:51.598087+00:00 +2025-06-15,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:33:00.461314+00:00 +2025-06-15,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:33:00.461314+00:00 +2025-06-16,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:33:09.342438+00:00 +2025-06-16,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:33:09.342438+00:00 +2025-06-17,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:33:18.256433+00:00 +2025-06-17,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:33:18.256433+00:00 +2025-06-18,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:33:27.153264+00:00 +2025-06-18,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:33:27.153264+00:00 +2025-06-19,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:33:35.987125+00:00 +2025-06-19,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:33:35.987125+00:00 +2025-06-20,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:33:44.862784+00:00 +2025-06-20,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:33:44.862784+00:00 +2025-06-21,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:33:53.709957+00:00 +2025-06-21,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:33:53.709957+00:00 +2025-06-22,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:34:02.626649+00:00 +2025-06-22,Replit Agent,all,1,,20260410T161748Z,2026-04-10T16:34:02.626649+00:00 +2025-06-23,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:34:11.722455+00:00 +2025-06-23,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:34:11.722455+00:00 +2025-06-24,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:34:20.560886+00:00 +2025-06-24,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:34:20.560886+00:00 +2025-06-25,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:34:29.480138+00:00 +2025-06-25,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:34:29.480138+00:00 +2025-06-26,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:34:38.359720+00:00 +2025-06-26,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:34:38.359720+00:00 +2025-06-27,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:34:47.231881+00:00 +2025-06-27,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:34:47.231881+00:00 +2025-06-28,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:34:56.074074+00:00 +2025-06-28,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:34:56.074074+00:00 +2025-06-29,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:35:04.911432+00:00 +2025-06-29,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:35:04.911432+00:00 +2025-06-30,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:35:14.017414+00:00 +2025-06-30,Replit Agent,all,1,,20260410T161748Z,2026-04-10T16:35:14.017414+00:00 +2025-07-01,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:35:22.834588+00:00 +2025-07-01,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:35:22.834588+00:00 +2025-07-02,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:35:31.659325+00:00 +2025-07-02,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:35:31.659325+00:00 +2025-07-03,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:35:40.531230+00:00 +2025-07-03,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:35:40.531230+00:00 +2025-07-04,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:35:49.370224+00:00 +2025-07-04,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:35:49.370224+00:00 +2025-07-05,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:35:58.208126+00:00 +2025-07-05,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:35:58.208126+00:00 +2025-07-06,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:36:07.065348+00:00 +2025-07-06,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:36:07.065348+00:00 +2025-07-07,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:36:15.984658+00:00 +2025-07-07,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:36:15.984658+00:00 +2025-07-08,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:36:24.918890+00:00 +2025-07-08,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:36:24.918890+00:00 +2025-07-09,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:36:33.695440+00:00 +2025-07-09,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:36:33.695440+00:00 +2025-07-10,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:36:42.550215+00:00 +2025-07-10,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:36:42.550215+00:00 +2025-07-11,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:36:51.421793+00:00 +2025-07-11,Replit Agent,all,1,,20260410T161748Z,2026-04-10T16:36:51.421793+00:00 +2025-07-12,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:37:00.364909+00:00 +2025-07-12,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:37:00.364909+00:00 +2025-07-13,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:37:09.183619+00:00 +2025-07-13,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:37:09.183619+00:00 +2025-07-14,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:37:18.006556+00:00 +2025-07-14,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:37:18.006556+00:00 +2025-07-15,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:37:26.854652+00:00 +2025-07-15,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:37:26.854652+00:00 +2025-07-16,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:37:35.628956+00:00 +2025-07-16,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:37:35.628956+00:00 +2025-07-17,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:37:44.463309+00:00 +2025-07-17,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:37:44.463309+00:00 +2025-07-18,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:37:53.289188+00:00 +2025-07-18,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:37:53.289188+00:00 +2025-07-19,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:38:02.076734+00:00 +2025-07-19,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:38:02.076734+00:00 +2025-07-20,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:38:11.016423+00:00 +2025-07-20,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:38:11.016423+00:00 +2025-07-21,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:38:19.989593+00:00 +2025-07-21,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:38:19.989593+00:00 +2025-07-22,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:38:28.849785+00:00 +2025-07-22,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:38:28.849785+00:00 +2025-07-23,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:38:37.682956+00:00 +2025-07-23,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:38:37.682956+00:00 +2025-07-24,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:38:46.477262+00:00 +2025-07-24,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:38:46.477262+00:00 +2025-07-25,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:38:55.467040+00:00 +2025-07-25,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:38:55.467040+00:00 +2025-07-26,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:39:04.472350+00:00 +2025-07-26,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:39:04.472350+00:00 +2025-07-27,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:39:13.312951+00:00 +2025-07-27,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:39:13.312951+00:00 +2025-07-28,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:39:22.102365+00:00 +2025-07-28,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:39:22.102365+00:00 +2025-07-29,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:39:30.852479+00:00 +2025-07-29,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:39:30.852479+00:00 +2025-07-30,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:39:39.717324+00:00 +2025-07-30,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:39:39.717324+00:00 +2025-07-31,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:39:48.728747+00:00 +2025-07-31,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:39:48.728747+00:00 +2025-08-01,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:39:57.616545+00:00 +2025-08-01,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:39:57.616545+00:00 +2025-08-02,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:40:06.772009+00:00 +2025-08-02,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:40:06.772009+00:00 +2025-08-03,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:40:15.557051+00:00 +2025-08-03,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:40:15.557051+00:00 +2025-08-04,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:40:24.370828+00:00 +2025-08-04,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:40:24.370828+00:00 +2025-08-05,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:40:33.202681+00:00 +2025-08-05,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:40:33.202681+00:00 +2025-08-06,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:40:41.988039+00:00 +2025-08-06,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:40:41.988039+00:00 +2025-08-07,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:40:50.781965+00:00 +2025-08-07,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:40:50.781965+00:00 +2025-08-08,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:40:59.565985+00:00 +2025-08-08,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:40:59.565985+00:00 +2025-08-09,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:41:08.361157+00:00 +2025-08-09,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:41:08.361157+00:00 +2025-08-10,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:41:17.245625+00:00 +2025-08-10,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:41:17.245625+00:00 +2025-08-11,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:41:26.061062+00:00 +2025-08-11,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:41:26.061062+00:00 +2025-08-12,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:41:34.876197+00:00 +2025-08-12,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:41:34.876197+00:00 +2025-08-13,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:41:43.662892+00:00 +2025-08-13,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:41:43.662892+00:00 +2025-08-14,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:41:52.609573+00:00 +2025-08-14,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:41:52.609573+00:00 +2025-08-15,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:42:01.459675+00:00 +2025-08-15,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:42:01.459675+00:00 +2025-08-16,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:42:10.447142+00:00 +2025-08-16,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:42:10.447142+00:00 +2025-08-17,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:42:19.294137+00:00 +2025-08-17,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:42:19.294137+00:00 +2025-08-18,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:42:28.086683+00:00 +2025-08-18,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:42:28.086683+00:00 +2025-08-19,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:42:37.231856+00:00 +2025-08-19,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:42:37.231856+00:00 +2025-08-20,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:42:46.090651+00:00 +2025-08-20,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:42:46.090651+00:00 +2025-08-21,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:42:54.904512+00:00 +2025-08-21,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:42:54.904512+00:00 +2025-08-22,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:43:03.766888+00:00 +2025-08-22,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:43:03.766888+00:00 +2025-08-23,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:43:12.669000+00:00 +2025-08-23,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:43:12.669000+00:00 +2025-08-24,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:43:21.502143+00:00 +2025-08-24,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:43:21.502143+00:00 +2025-08-25,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:43:30.297129+00:00 +2025-08-25,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:43:30.297129+00:00 +2025-08-26,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:43:39.129566+00:00 +2025-08-26,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:43:39.129566+00:00 +2025-08-27,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:43:47.922898+00:00 +2025-08-27,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:43:47.922898+00:00 +2025-08-28,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:43:56.778506+00:00 +2025-08-28,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:43:56.778506+00:00 +2025-08-29,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:44:05.810318+00:00 +2025-08-29,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:44:05.810318+00:00 +2025-08-30,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:44:14.686859+00:00 +2025-08-30,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:44:14.686859+00:00 +2025-08-31,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:44:23.547096+00:00 +2025-08-31,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:44:23.547096+00:00 +2025-09-01,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:44:32.476427+00:00 +2025-09-01,Replit Agent,all,247,,20260410T161748Z,2026-04-10T16:44:32.476427+00:00 +2025-09-02,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:44:41.323268+00:00 +2025-09-02,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:44:41.323268+00:00 +2025-09-03,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:44:50.111331+00:00 +2025-09-03,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:44:50.111331+00:00 +2025-09-04,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:44:58.883099+00:00 +2025-09-04,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:44:58.883099+00:00 +2025-09-05,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:45:07.717033+00:00 +2025-09-05,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:45:07.717033+00:00 +2025-09-06,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:45:16.993756+00:00 +2025-09-06,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:45:16.993756+00:00 +2025-09-07,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:45:25.844779+00:00 +2025-09-07,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:45:25.844779+00:00 +2025-09-08,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:45:34.618908+00:00 +2025-09-08,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:45:34.618908+00:00 +2025-09-09,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:45:43.560648+00:00 +2025-09-09,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:45:43.560648+00:00 +2025-09-10,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:45:52.350226+00:00 +2025-09-10,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:45:52.350226+00:00 +2025-09-11,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:46:01.192362+00:00 +2025-09-11,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:46:01.192362+00:00 +2025-09-12,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:46:10.078711+00:00 +2025-09-12,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:46:10.078711+00:00 +2025-09-13,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:46:18.920419+00:00 +2025-09-13,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:46:18.920419+00:00 +2025-09-14,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:46:27.731940+00:00 +2025-09-14,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:46:27.731940+00:00 +2025-09-15,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:46:36.549979+00:00 +2025-09-15,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:46:36.549979+00:00 +2025-09-16,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:46:45.345553+00:00 +2025-09-16,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:46:45.345553+00:00 +2025-09-17,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:46:54.176466+00:00 +2025-09-17,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:46:54.176466+00:00 +2025-09-18,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:47:02.970519+00:00 +2025-09-18,Replit Agent,all,53,,20260410T161748Z,2026-04-10T16:47:02.970519+00:00 +2025-09-19,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:47:11.855778+00:00 +2025-09-19,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:47:11.855778+00:00 +2025-09-20,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:47:20.726006+00:00 +2025-09-20,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:47:20.726006+00:00 +2025-09-21,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:47:29.692082+00:00 +2025-09-21,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:47:29.692082+00:00 +2025-09-22,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:47:38.606506+00:00 +2025-09-22,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:47:38.606506+00:00 +2025-09-23,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:47:47.449072+00:00 +2025-09-23,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:47:47.449072+00:00 +2025-09-24,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:47:56.257145+00:00 +2025-09-24,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:47:56.257145+00:00 +2025-09-25,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:48:05.140436+00:00 +2025-09-25,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:48:05.140436+00:00 +2025-09-26,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:48:13.975531+00:00 +2025-09-26,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:48:13.975531+00:00 +2025-09-27,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:48:22.949031+00:00 +2025-09-27,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:48:22.949031+00:00 +2025-09-28,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:48:31.718003+00:00 +2025-09-28,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:48:31.718003+00:00 +2025-09-29,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:48:40.531609+00:00 +2025-09-29,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:48:40.531609+00:00 +2025-09-30,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:48:49.574168+00:00 +2025-09-30,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:48:49.574168+00:00 +2025-10-01,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:48:58.609092+00:00 +2025-10-01,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:48:58.609092+00:00 +2025-10-02,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:49:07.529631+00:00 +2025-10-02,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:49:07.529631+00:00 +2025-10-03,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:49:16.378840+00:00 +2025-10-03,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:49:16.378840+00:00 +2025-10-04,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:49:25.281349+00:00 +2025-10-04,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:49:25.281349+00:00 +2025-10-05,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:49:34.037970+00:00 +2025-10-05,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:49:34.037970+00:00 +2025-10-06,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:49:42.830566+00:00 +2025-10-06,Replit Agent,all,2,,20260410T161748Z,2026-04-10T16:49:42.830566+00:00 +2025-10-07,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:49:51.729226+00:00 +2025-10-07,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:49:51.729226+00:00 +2025-10-08,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:50:00.530913+00:00 +2025-10-08,Replit Agent,all,1,,20260410T161748Z,2026-04-10T16:50:00.530913+00:00 +2025-10-09,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:50:09.381066+00:00 +2025-10-09,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:50:09.381066+00:00 +2025-10-10,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:50:18.150962+00:00 +2025-10-10,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:50:18.150962+00:00 +2025-10-11,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:50:26.995602+00:00 +2025-10-11,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:50:26.995602+00:00 +2025-10-12,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:50:35.878636+00:00 +2025-10-12,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:50:35.878636+00:00 +2025-10-13,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:50:44.851849+00:00 +2025-10-13,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:50:44.851849+00:00 +2025-10-14,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:50:53.754200+00:00 +2025-10-14,Replit Agent,all,1,,20260410T161748Z,2026-04-10T16:50:53.754200+00:00 +2025-10-15,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:51:02.576837+00:00 +2025-10-15,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:51:02.576837+00:00 +2025-10-16,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:51:11.358258+00:00 +2025-10-16,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:51:11.358258+00:00 +2025-10-17,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:51:20.261376+00:00 +2025-10-17,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:51:20.261376+00:00 +2025-10-18,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:51:29.074531+00:00 +2025-10-18,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:51:29.074531+00:00 +2025-10-19,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:51:38.019093+00:00 +2025-10-19,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:51:38.019093+00:00 +2025-10-20,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:51:46.885174+00:00 +2025-10-20,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:51:46.885174+00:00 +2025-10-21,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:51:55.851329+00:00 +2025-10-21,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:51:55.851329+00:00 +2025-10-22,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:52:04.743893+00:00 +2025-10-22,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:52:04.743893+00:00 +2025-10-23,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:52:13.783162+00:00 +2025-10-23,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:52:13.783162+00:00 +2025-10-24,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:52:22.590907+00:00 +2025-10-24,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:52:22.590907+00:00 +2025-10-25,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:52:31.433091+00:00 +2025-10-25,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:52:31.433091+00:00 +2025-10-26,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:52:40.188991+00:00 +2025-10-26,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:52:40.188991+00:00 +2025-10-27,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:52:49.188387+00:00 +2025-10-27,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:52:49.188387+00:00 +2025-10-28,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:52:58.132388+00:00 +2025-10-28,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:52:58.132388+00:00 +2025-10-29,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:53:07.039486+00:00 +2025-10-29,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:53:07.039486+00:00 +2025-10-30,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:53:15.805713+00:00 +2025-10-30,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:53:15.805713+00:00 +2025-10-31,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:53:24.634194+00:00 +2025-10-31,Replit Agent,all,2,,20260410T161748Z,2026-04-10T16:53:24.634194+00:00 +2025-11-01,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:53:33.447887+00:00 +2025-11-01,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:53:33.447887+00:00 +2025-11-02,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:53:42.403613+00:00 +2025-11-02,Replit Agent,all,1,,20260410T161748Z,2026-04-10T16:53:42.403613+00:00 +2025-11-03,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:53:51.345636+00:00 +2025-11-03,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:53:51.345636+00:00 +2025-11-04,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:54:00.127478+00:00 +2025-11-04,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:54:00.127478+00:00 +2025-11-05,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:54:08.946036+00:00 +2025-11-05,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:54:08.946036+00:00 +2025-11-06,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:54:17.967716+00:00 +2025-11-06,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:54:17.967716+00:00 +2025-11-07,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:54:26.760571+00:00 +2025-11-07,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:54:26.760571+00:00 +2025-11-08,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:54:35.691976+00:00 +2025-11-08,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:54:35.691976+00:00 +2025-11-09,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:54:44.465703+00:00 +2025-11-09,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:54:44.465703+00:00 +2025-11-10,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:54:53.386888+00:00 +2025-11-10,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:54:53.386888+00:00 +2025-11-11,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:55:02.311236+00:00 +2025-11-11,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:55:02.311236+00:00 +2025-11-12,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:55:11.206535+00:00 +2025-11-12,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:55:11.206535+00:00 +2025-11-13,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:55:20.124369+00:00 +2025-11-13,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:55:20.124369+00:00 +2025-11-14,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:55:28.952844+00:00 +2025-11-14,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:55:28.952844+00:00 +2025-11-15,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:55:37.840619+00:00 +2025-11-15,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:55:37.840619+00:00 +2025-11-16,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:55:46.751006+00:00 +2025-11-16,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:55:46.751006+00:00 +2025-11-17,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:55:55.590093+00:00 +2025-11-17,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:55:55.590093+00:00 +2025-11-18,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:56:04.346331+00:00 +2025-11-18,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:56:04.346331+00:00 +2025-11-19,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:56:13.163924+00:00 +2025-11-19,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:56:13.163924+00:00 +2025-11-20,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:56:21.968959+00:00 +2025-11-20,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:56:21.968959+00:00 +2025-11-21,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:56:30.835943+00:00 +2025-11-21,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:56:30.835943+00:00 +2025-11-22,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:56:39.692358+00:00 +2025-11-22,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:56:39.692358+00:00 +2025-11-23,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:56:48.496761+00:00 +2025-11-23,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:56:48.496761+00:00 +2025-11-24,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:56:57.272196+00:00 +2025-11-24,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:56:57.272196+00:00 +2025-11-25,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:57:06.199310+00:00 +2025-11-25,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:57:06.199310+00:00 +2025-11-26,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:57:14.979670+00:00 +2025-11-26,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:57:14.979670+00:00 +2025-11-27,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:57:23.929154+00:00 +2025-11-27,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:57:23.929154+00:00 +2025-11-28,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:57:32.689045+00:00 +2025-11-28,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:57:32.689045+00:00 +2025-11-29,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:57:41.526550+00:00 +2025-11-29,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:57:41.526550+00:00 +2025-11-30,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:57:50.466289+00:00 +2025-11-30,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:57:50.466289+00:00 +2025-12-01,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:57:59.238732+00:00 +2025-12-01,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:57:59.238732+00:00 +2025-12-02,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:58:08.007379+00:00 +2025-12-02,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:58:08.007379+00:00 +2025-12-03,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:58:17.038797+00:00 +2025-12-03,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:58:17.038797+00:00 +2025-12-04,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:58:25.959631+00:00 +2025-12-04,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:58:25.959631+00:00 +2025-12-05,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:58:34.727201+00:00 +2025-12-05,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:58:34.727201+00:00 +2025-12-06,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:58:43.595532+00:00 +2025-12-06,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:58:43.595532+00:00 +2025-12-07,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:58:52.350325+00:00 +2025-12-07,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:58:52.350325+00:00 +2025-12-08,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:59:01.294751+00:00 +2025-12-08,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:59:01.294751+00:00 +2025-12-09,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:59:10.109637+00:00 +2025-12-09,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:59:10.109637+00:00 +2025-12-10,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:59:18.920662+00:00 +2025-12-10,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:59:18.920662+00:00 +2025-12-11,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:59:28.035997+00:00 +2025-12-11,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:59:28.035997+00:00 +2025-12-12,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:59:36.754638+00:00 +2025-12-12,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:59:36.754638+00:00 +2025-12-13,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:59:45.543748+00:00 +2025-12-13,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:59:45.543748+00:00 +2025-12-14,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T16:59:54.417965+00:00 +2025-12-14,Replit Agent,all,0,,20260410T161748Z,2026-04-10T16:59:54.417965+00:00 +2025-12-15,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:00:03.669859+00:00 +2025-12-15,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:00:03.669859+00:00 +2025-12-16,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:00:12.708764+00:00 +2025-12-16,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:00:12.708764+00:00 +2025-12-17,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:00:21.575287+00:00 +2025-12-17,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:00:21.575287+00:00 +2025-12-18,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:00:30.399323+00:00 +2025-12-18,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:00:30.399323+00:00 +2025-12-19,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:00:39.298798+00:00 +2025-12-19,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:00:39.298798+00:00 +2025-12-20,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:00:48.126126+00:00 +2025-12-20,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:00:48.126126+00:00 +2025-12-21,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:00:56.900343+00:00 +2025-12-21,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:00:56.900343+00:00 +2025-12-22,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:01:05.907664+00:00 +2025-12-22,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:01:05.907664+00:00 +2025-12-23,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:01:14.767599+00:00 +2025-12-23,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:01:14.767599+00:00 +2025-12-24,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:01:23.551266+00:00 +2025-12-24,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:01:23.551266+00:00 +2025-12-25,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:01:32.555197+00:00 +2025-12-25,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:01:32.555197+00:00 +2025-12-26,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:01:41.498523+00:00 +2025-12-26,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:01:41.498523+00:00 +2025-12-27,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:01:50.401849+00:00 +2025-12-27,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:01:50.401849+00:00 +2025-12-28,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:01:59.382838+00:00 +2025-12-28,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:01:59.382838+00:00 +2025-12-29,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:02:08.213248+00:00 +2025-12-29,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:02:08.213248+00:00 +2025-12-30,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:02:17.101291+00:00 +2025-12-30,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:02:17.101291+00:00 +2025-12-31,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:02:25.842431+00:00 +2025-12-31,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:02:25.842431+00:00 +2026-01-01,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:02:34.917989+00:00 +2026-01-01,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:02:34.917989+00:00 +2026-01-02,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:02:43.700762+00:00 +2026-01-02,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:02:43.700762+00:00 +2026-01-03,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:02:52.527519+00:00 +2026-01-03,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:02:52.527519+00:00 +2026-01-04,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:03:01.323350+00:00 +2026-01-04,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:03:01.323350+00:00 +2026-01-05,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:03:10.241006+00:00 +2026-01-05,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:03:10.241006+00:00 +2026-01-06,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:03:19.035968+00:00 +2026-01-06,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:03:19.035968+00:00 +2026-01-07,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:03:27.861173+00:00 +2026-01-07,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:03:27.861173+00:00 +2026-01-08,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:03:36.709679+00:00 +2026-01-08,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:03:36.709679+00:00 +2026-01-09,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:03:45.504952+00:00 +2026-01-09,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:03:45.504952+00:00 +2026-01-10,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:03:54.438832+00:00 +2026-01-10,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:03:54.438832+00:00 +2026-01-11,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:04:03.344182+00:00 +2026-01-11,Replit Agent,all,9,,20260410T161748Z,2026-04-10T17:04:03.344182+00:00 +2026-01-12,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:04:12.357323+00:00 +2026-01-12,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:04:12.357323+00:00 +2026-01-13,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:04:21.268185+00:00 +2026-01-13,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:04:21.268185+00:00 +2026-01-14,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:04:30.057212+00:00 +2026-01-14,Replit Agent,all,36,,20260410T161748Z,2026-04-10T17:04:30.057212+00:00 +2026-01-15,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:04:39.186493+00:00 +2026-01-15,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:04:39.186493+00:00 +2026-01-16,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:04:47.985083+00:00 +2026-01-16,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:04:47.985083+00:00 +2026-01-17,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:04:56.824517+00:00 +2026-01-17,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:04:56.824517+00:00 +2026-01-18,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:05:05.629486+00:00 +2026-01-18,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:05:05.629486+00:00 +2026-01-19,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:05:14.510219+00:00 +2026-01-19,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:05:14.510219+00:00 +2026-01-20,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:05:23.395099+00:00 +2026-01-20,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:05:23.395099+00:00 +2026-01-21,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:05:32.358231+00:00 +2026-01-21,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:05:32.358231+00:00 +2026-01-22,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:05:41.221602+00:00 +2026-01-22,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:05:41.221602+00:00 +2026-01-23,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:05:50.074329+00:00 +2026-01-23,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:05:50.074329+00:00 +2026-01-24,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:05:58.858094+00:00 +2026-01-24,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:05:58.858094+00:00 +2026-01-25,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:06:07.680538+00:00 +2026-01-25,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:06:07.680538+00:00 +2026-01-26,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:06:16.472404+00:00 +2026-01-26,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:06:16.472404+00:00 +2026-01-27,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:06:25.377559+00:00 +2026-01-27,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:06:25.377559+00:00 +2026-01-28,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:06:34.234542+00:00 +2026-01-28,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:06:34.234542+00:00 +2026-01-29,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:06:43.117837+00:00 +2026-01-29,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:06:43.117837+00:00 +2026-01-30,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:06:51.951502+00:00 +2026-01-30,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:06:51.951502+00:00 +2026-01-31,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:07:00.910383+00:00 +2026-01-31,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:07:00.910383+00:00 +2026-02-01,Copilot SWE Agent (new),all,19413,,20260410T161748Z,2026-04-10T17:07:09.818763+00:00 +2026-02-01,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:07:09.818763+00:00 +2026-02-01,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:07:09.818763+00:00 +2026-02-02,Copilot SWE Agent (new),all,17130,,20260410T161748Z,2026-04-10T17:07:23.438936+00:00 +2026-02-02,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:07:23.438936+00:00 +2026-02-02,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:07:23.438936+00:00 +2026-02-03,Copilot SWE Agent (new),all,21020,,20260410T161748Z,2026-04-10T17:07:36.775707+00:00 +2026-02-03,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:07:36.775707+00:00 +2026-02-03,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:07:36.775707+00:00 +2026-02-04,Copilot SWE Agent (new),all,24741,,20260410T161748Z,2026-04-10T17:07:50.038857+00:00 +2026-02-04,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:07:50.038857+00:00 +2026-02-04,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:07:50.038857+00:00 +2026-02-05,Copilot SWE Agent (new),all,21174,,20260410T161748Z,2026-04-10T17:08:03.316567+00:00 +2026-02-05,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:08:03.316567+00:00 +2026-02-05,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:08:03.316567+00:00 +2026-02-06,Copilot SWE Agent (new),all,20981,,20260410T161748Z,2026-04-10T17:08:16.800705+00:00 +2026-02-06,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:08:16.800705+00:00 +2026-02-06,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:08:16.800705+00:00 +2026-02-07,Copilot SWE Agent (new),all,22691,,20260410T161748Z,2026-04-10T17:08:30.358856+00:00 +2026-02-07,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:08:30.358856+00:00 +2026-02-07,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:08:30.358856+00:00 +2026-02-08,Copilot SWE Agent (new),all,23029,,20260410T161748Z,2026-04-10T17:08:43.912661+00:00 +2026-02-08,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:08:43.912661+00:00 +2026-02-08,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:08:43.912661+00:00 +2026-02-09,Copilot SWE Agent (new),all,21114,,20260410T161748Z,2026-04-10T17:08:57.446141+00:00 +2026-02-09,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:08:57.446141+00:00 +2026-02-09,Replit Agent,all,4,,20260410T161748Z,2026-04-10T17:08:57.446141+00:00 +2026-02-10,Copilot SWE Agent (new),all,23551,,20260410T161748Z,2026-04-10T17:09:11.191227+00:00 +2026-02-10,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:09:11.191227+00:00 +2026-02-10,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:09:11.191227+00:00 +2026-02-11,Copilot SWE Agent (new),all,24814,,20260410T161748Z,2026-04-10T17:09:24.549948+00:00 +2026-02-11,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:09:24.549948+00:00 +2026-02-11,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:09:24.549948+00:00 +2026-02-12,Copilot SWE Agent (new),all,24404,,20260410T161748Z,2026-04-10T17:09:37.954481+00:00 +2026-02-12,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:09:37.954481+00:00 +2026-02-12,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:09:37.954481+00:00 +2026-02-13,Copilot SWE Agent (new),all,23449,,20260410T161748Z,2026-04-10T17:09:51.287439+00:00 +2026-02-13,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:09:51.287439+00:00 +2026-02-13,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:09:51.287439+00:00 +2026-02-14,Copilot SWE Agent (new),all,21018,,20260410T161748Z,2026-04-10T17:10:04.607830+00:00 +2026-02-14,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:10:04.607830+00:00 +2026-02-14,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:10:04.607830+00:00 +2026-02-15,Copilot SWE Agent (new),all,22082,,20260410T161748Z,2026-04-10T17:10:17.925182+00:00 +2026-02-15,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:10:17.925182+00:00 +2026-02-15,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:10:17.925182+00:00 +2026-02-16,Copilot SWE Agent (new),all,23824,,20260410T161748Z,2026-04-10T17:10:31.293243+00:00 +2026-02-16,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:10:31.293243+00:00 +2026-02-16,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:10:31.293243+00:00 +2026-02-17,Copilot SWE Agent (new),all,22463,,20260410T161748Z,2026-04-10T17:10:44.640750+00:00 +2026-02-17,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:10:44.640750+00:00 +2026-02-17,Replit Agent,all,10,,20260410T161748Z,2026-04-10T17:10:44.640750+00:00 +2026-02-18,Copilot SWE Agent (new),all,24387,,20260410T161748Z,2026-04-10T17:10:58.030758+00:00 +2026-02-18,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:10:58.030758+00:00 +2026-02-18,Replit Agent,all,8,,20260410T161748Z,2026-04-10T17:10:58.030758+00:00 +2026-02-19,Copilot SWE Agent (new),all,19654,,20260410T161748Z,2026-04-10T17:11:11.478459+00:00 +2026-02-19,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:11:11.478459+00:00 +2026-02-19,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:11:11.478459+00:00 +2026-02-20,Copilot SWE Agent (new),all,17148,,20260410T161748Z,2026-04-10T17:11:24.961721+00:00 +2026-02-20,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:11:24.961721+00:00 +2026-02-20,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:11:24.961721+00:00 +2026-02-21,Copilot SWE Agent (new),all,18031,,20260410T161748Z,2026-04-10T17:11:38.286380+00:00 +2026-02-21,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:11:38.286380+00:00 +2026-02-21,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:11:38.286380+00:00 +2026-02-22,Copilot SWE Agent (new),all,18103,,20260410T161748Z,2026-04-10T17:11:51.633033+00:00 +2026-02-22,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:11:51.633033+00:00 +2026-02-22,Replit Agent,all,1,,20260410T161748Z,2026-04-10T17:11:51.633033+00:00 +2026-02-23,Copilot SWE Agent (new),all,19021,,20260410T161748Z,2026-04-10T17:12:05.033134+00:00 +2026-02-23,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:12:05.033134+00:00 +2026-02-23,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:12:05.033134+00:00 +2026-02-24,Copilot SWE Agent (new),all,19604,,20260410T161748Z,2026-04-10T17:12:18.484656+00:00 +2026-02-24,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:12:18.484656+00:00 +2026-02-24,Replit Agent,all,10,,20260410T161748Z,2026-04-10T17:12:18.484656+00:00 +2026-02-25,Copilot SWE Agent (new),all,18704,,20260410T161748Z,2026-04-10T17:12:31.850595+00:00 +2026-02-25,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:12:31.850595+00:00 +2026-02-25,Replit Agent,all,1,,20260410T161748Z,2026-04-10T17:12:31.850595+00:00 +2026-02-26,Copilot SWE Agent (new),all,18335,,20260410T161748Z,2026-04-10T17:12:45.424123+00:00 +2026-02-26,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:12:45.424123+00:00 +2026-02-26,Replit Agent,all,2,,20260410T161748Z,2026-04-10T17:12:45.424123+00:00 +2026-02-27,Copilot SWE Agent (new),all,18682,,20260410T161748Z,2026-04-10T17:12:58.766674+00:00 +2026-02-27,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:12:58.766674+00:00 +2026-02-27,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:12:58.766674+00:00 +2026-02-28,Copilot SWE Agent (new),all,18933,,20260410T161748Z,2026-04-10T17:13:12.056118+00:00 +2026-02-28,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:13:12.056118+00:00 +2026-02-28,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:13:12.056118+00:00 +2026-03-01,Copilot SWE Agent (new),all,20038,,20260410T161748Z,2026-04-10T17:13:25.308923+00:00 +2026-03-01,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:13:25.308923+00:00 +2026-03-01,Replit Agent,all,3,,20260410T161748Z,2026-04-10T17:13:25.308923+00:00 +2026-03-02,Copilot SWE Agent (new),all,19885,,20260410T161748Z,2026-04-10T17:13:38.659247+00:00 +2026-03-02,Warp (Oz Agent) v2,all,2,,20260410T161748Z,2026-04-10T17:13:38.659247+00:00 +2026-03-02,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:13:38.659247+00:00 +2026-03-03,Copilot SWE Agent (new),all,19949,,20260410T161748Z,2026-04-10T17:13:52.109559+00:00 +2026-03-03,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:13:52.109559+00:00 +2026-03-03,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:13:52.109559+00:00 +2026-03-04,Copilot SWE Agent (new),all,20336,,20260410T161748Z,2026-04-10T17:14:05.557721+00:00 +2026-03-04,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:14:05.557721+00:00 +2026-03-04,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:14:05.557721+00:00 +2026-03-05,Copilot SWE Agent (new),all,18041,,20260410T161748Z,2026-04-10T17:14:18.843716+00:00 +2026-03-05,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:14:18.843716+00:00 +2026-03-05,Replit Agent,all,11,,20260410T161748Z,2026-04-10T17:14:18.843716+00:00 +2026-03-06,Copilot SWE Agent (new),all,19179,,20260410T161748Z,2026-04-10T17:14:32.427213+00:00 +2026-03-06,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:14:32.427213+00:00 +2026-03-06,Replit Agent,all,2,,20260410T161748Z,2026-04-10T17:14:32.427213+00:00 +2026-03-07,Copilot SWE Agent (new),all,19598,,20260410T161748Z,2026-04-10T17:14:45.811742+00:00 +2026-03-07,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:14:45.811742+00:00 +2026-03-07,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:14:45.811742+00:00 +2026-03-08,Copilot SWE Agent (new),all,18585,,20260410T161748Z,2026-04-10T17:14:59.101703+00:00 +2026-03-08,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:14:59.101703+00:00 +2026-03-08,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:14:59.101703+00:00 +2026-03-09,Copilot SWE Agent (new),all,19780,,20260410T161748Z,2026-04-10T17:15:12.468050+00:00 +2026-03-09,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:15:12.468050+00:00 +2026-03-09,Replit Agent,all,0,,20260410T161748Z,2026-04-10T17:15:12.468050+00:00 +2026-03-10,Copilot SWE Agent (new),all,20872,,20260410T161748Z,2026-04-10T17:15:25.880562+00:00 +2026-03-10,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:15:25.880562+00:00 +2026-03-10,Replit Agent,all,1,,20260410T161748Z,2026-04-10T17:15:25.880562+00:00 +2026-03-11,Copilot SWE Agent (new),all,20716,,20260410T161748Z,2026-04-10T17:15:39.199818+00:00 +2026-03-11,Warp (Oz Agent) v2,all,8,,20260410T161748Z,2026-04-10T17:15:39.199818+00:00 +2026-03-11,Replit Agent,all,361,,20260410T161748Z,2026-04-10T17:15:39.199818+00:00 +2026-03-12,Copilot SWE Agent (new),all,20825,,20260410T161748Z,2026-04-10T17:15:52.579708+00:00 +2026-03-12,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:15:52.579708+00:00 +2026-03-12,Replit Agent,all,273,,20260410T161748Z,2026-04-10T17:15:52.579708+00:00 +2026-03-13,Copilot SWE Agent (new),all,19097,,20260410T161748Z,2026-04-10T17:16:06.012809+00:00 +2026-03-13,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:16:06.012809+00:00 +2026-03-13,Replit Agent,all,1252,,20260410T161748Z,2026-04-10T17:16:06.012809+00:00 +2026-03-14,Copilot SWE Agent (new),all,19838,,20260410T161748Z,2026-04-10T17:16:19.308141+00:00 +2026-03-14,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:16:19.308141+00:00 +2026-03-14,Replit Agent,all,13,,20260410T161748Z,2026-04-10T17:16:19.308141+00:00 +2026-03-15,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:16:32.832890+00:00 +2026-03-15,Replit Agent,all,5,,20260410T161748Z,2026-04-10T17:16:32.832890+00:00 +2026-03-16,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:16:41.817573+00:00 +2026-03-16,Replit Agent,all,10,,20260410T161748Z,2026-04-10T17:16:41.817573+00:00 +2026-03-17,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:16:50.666877+00:00 +2026-03-17,Replit Agent,all,87,,20260410T161748Z,2026-04-10T17:16:50.666877+00:00 +2026-03-18,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:16:59.540952+00:00 +2026-03-18,Replit Agent,all,288,,20260410T161748Z,2026-04-10T17:16:59.540952+00:00 +2026-03-19,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:17:08.390608+00:00 +2026-03-19,Replit Agent,all,190,,20260410T161748Z,2026-04-10T17:17:08.390608+00:00 +2026-03-20,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:17:17.260278+00:00 +2026-03-20,Replit Agent,all,1361,,20260410T161748Z,2026-04-10T17:17:17.260278+00:00 +2026-03-21,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:17:26.105013+00:00 +2026-03-21,Replit Agent,all,33,,20260410T161748Z,2026-04-10T17:17:26.105013+00:00 +2026-03-22,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:17:34.963495+00:00 +2026-03-22,Replit Agent,all,46,,20260410T161748Z,2026-04-10T17:17:34.963495+00:00 +2026-03-23,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:17:43.776915+00:00 +2026-03-23,Replit Agent,all,102,,20260410T161748Z,2026-04-10T17:17:43.776915+00:00 +2026-03-24,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:17:52.600966+00:00 +2026-03-24,Replit Agent,all,110,,20260410T161748Z,2026-04-10T17:17:52.600966+00:00 +2026-03-25,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:18:01.473518+00:00 +2026-03-25,Replit Agent,all,767,,20260410T161748Z,2026-04-10T17:18:01.473518+00:00 +2026-03-26,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:18:10.324413+00:00 +2026-03-26,Replit Agent,all,62,,20260410T161748Z,2026-04-10T17:18:10.324413+00:00 +2026-03-27,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:18:19.197576+00:00 +2026-03-27,Replit Agent,all,100,,20260410T161748Z,2026-04-10T17:18:19.197576+00:00 +2026-03-28,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:18:28.018062+00:00 +2026-03-28,Replit Agent,all,839,,20260410T161748Z,2026-04-10T17:18:28.018062+00:00 +2026-03-29,Warp (Oz Agent) v2,all,15,,20260410T161748Z,2026-04-10T17:18:36.845088+00:00 +2026-03-29,Replit Agent,all,130,,20260410T161748Z,2026-04-10T17:18:36.845088+00:00 +2026-03-30,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:18:45.753157+00:00 +2026-03-30,Replit Agent,all,667,,20260410T161748Z,2026-04-10T17:18:45.753157+00:00 +2026-03-31,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:18:54.790913+00:00 +2026-03-31,Replit Agent,all,98,,20260410T161748Z,2026-04-10T17:18:54.790913+00:00 +2026-04-01,Warp (Oz Agent) v2,all,3,,20260410T161748Z,2026-04-10T17:19:03.738118+00:00 +2026-04-01,Replit Agent,all,55,,20260410T161748Z,2026-04-10T17:19:03.738118+00:00 +2026-04-02,Warp (Oz Agent) v2,all,5,,20260410T161748Z,2026-04-10T17:19:12.656998+00:00 +2026-04-02,Replit Agent,all,1313,,20260410T161748Z,2026-04-10T17:19:12.656998+00:00 +2026-04-03,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:19:21.520810+00:00 +2026-04-03,Replit Agent,all,84,,20260410T161748Z,2026-04-10T17:19:21.520810+00:00 +2026-04-04,Warp (Oz Agent) v2,all,2,,20260410T161748Z,2026-04-10T17:19:30.412676+00:00 +2026-04-04,Replit Agent,all,85,,20260410T161748Z,2026-04-10T17:19:30.412676+00:00 +2026-04-05,Warp (Oz Agent) v2,all,0,,20260410T161748Z,2026-04-10T17:19:39.305721+00:00 +2026-04-05,Replit Agent,all,75,,20260410T161748Z,2026-04-10T17:19:39.305721+00:00 +2026-04-06,Warp (Oz Agent) v2,all,12,,20260410T161748Z,2026-04-10T17:19:48.175069+00:00 +2026-04-06,Replit Agent,all,110,,20260410T161748Z,2026-04-10T17:19:48.175069+00:00 +2026-04-07,Warp (Oz Agent) v2,all,0,,20260410T173624Z,2026-04-10T17:36:24.091554+00:00 +2026-04-07,Replit Agent,all,95,,20260410T173624Z,2026-04-10T17:36:24.091554+00:00 +2026-04-08,Warp (Oz Agent) v2,all,0,,20260410T173624Z,2026-04-10T17:36:33.401115+00:00 +2026-04-08,Replit Agent,all,586,,20260410T173624Z,2026-04-10T17:36:33.401115+00:00 +2026-04-09,Warp (Oz Agent) v2,all,0,,20260410T173624Z,2026-04-10T17:36:42.414360+00:00 +2026-04-09,Replit Agent,all,136,,20260410T173624Z,2026-04-10T17:36:42.414360+00:00 +2025-02-01,Claude Code,all,0,,20260417T235907Z,2026-04-17T23:59:07.985073+00:00 +2025-02-01,Copilot,all,0,,20260417T235907Z,2026-04-17T23:59:07.985073+00:00 +2025-02-01,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-17T23:59:07.985073+00:00 +2025-02-01,Cursor,all,0,,20260417T235907Z,2026-04-17T23:59:07.985073+00:00 +2025-02-01,Aider,all,952,,20260417T235907Z,2026-04-17T23:59:07.985073+00:00 +2025-02-01,Devin,all,1,,20260417T235907Z,2026-04-17T23:59:07.985073+00:00 +2025-02-01,Lovable,all,0,,20260417T235907Z,2026-04-17T23:59:07.985073+00:00 +2025-02-01,OpenHands,all,83,,20260417T235907Z,2026-04-17T23:59:07.985073+00:00 +2025-02-01,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-17T23:59:07.985073+00:00 +2025-02-01,Coderabbit,all,0,,20260417T235907Z,2026-04-17T23:59:07.985073+00:00 +2025-02-01,ChatGPT,all,0,,20260417T235907Z,2026-04-17T23:59:07.985073+00:00 +2025-02-01,Gemini CLI,all,0,,20260417T235907Z,2026-04-17T23:59:07.985073+00:00 +2025-02-01,Jules (Google),all,0,,20260417T235907Z,2026-04-17T23:59:07.985073+00:00 +2025-02-01,Cline,all,9,,20260417T235907Z,2026-04-17T23:59:07.985073+00:00 +2025-02-01,Sourcery AI,all,0,,20260417T235907Z,2026-04-17T23:59:07.985073+00:00 +2025-02-01,DeepSource,all,11,,20260417T235907Z,2026-04-17T23:59:07.985073+00:00 +2025-02-01,Sweep AI,all,0,,20260417T235907Z,2026-04-17T23:59:07.985073+00:00 +2025-02-01,Qwen Coder,all,0,,20260417T235907Z,2026-04-17T23:59:07.985073+00:00 +2025-02-01,Roo Code,all,0,,20260417T235907Z,2026-04-17T23:59:07.985073+00:00 +2025-02-01,OpenCode,all,0,,20260417T235907Z,2026-04-17T23:59:07.985073+00:00 +2025-02-01,OpenAI Codex,all,0,,20260417T235907Z,2026-04-17T23:59:07.985073+00:00 +2025-02-01,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-17T23:59:07.985073+00:00 +2025-02-01,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-17T23:59:07.985073+00:00 +2025-02-01,Codegen,all,0,,20260417T235907Z,2026-04-17T23:59:07.985073+00:00 +2025-02-01,Gru,all,0,,20260417T235907Z,2026-04-17T23:59:07.985073+00:00 +2025-02-01,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-17T23:59:07.985073+00:00 +2025-02-01,Crush,all,0,,20260417T235907Z,2026-04-17T23:59:07.985073+00:00 +2025-02-01,Sketch,all,0,,20260417T235907Z,2026-04-17T23:59:07.985073+00:00 +2025-02-01,Kilo Code,all,0,,20260417T235907Z,2026-04-17T23:59:07.985073+00:00 +2025-02-02,Claude Code,all,1,,20260417T235907Z,2026-04-18T00:01:17.742214+00:00 +2025-02-02,Copilot,all,0,,20260417T235907Z,2026-04-18T00:01:17.742214+00:00 +2025-02-02,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-18T00:01:17.742214+00:00 +2025-02-02,Cursor,all,0,,20260417T235907Z,2026-04-18T00:01:17.742214+00:00 +2025-02-02,Aider,all,878,,20260417T235907Z,2026-04-18T00:01:17.742214+00:00 +2025-02-02,Devin,all,31,,20260417T235907Z,2026-04-18T00:01:17.742214+00:00 +2025-02-02,Lovable,all,0,,20260417T235907Z,2026-04-18T00:01:17.742214+00:00 +2025-02-02,OpenHands,all,86,,20260417T235907Z,2026-04-18T00:01:17.742214+00:00 +2025-02-02,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-18T00:01:17.742214+00:00 +2025-02-02,Coderabbit,all,0,,20260417T235907Z,2026-04-18T00:01:17.742214+00:00 +2025-02-02,ChatGPT,all,0,,20260417T235907Z,2026-04-18T00:01:17.742214+00:00 +2025-02-02,Gemini CLI,all,0,,20260417T235907Z,2026-04-18T00:01:17.742214+00:00 +2025-02-02,Jules (Google),all,0,,20260417T235907Z,2026-04-18T00:01:17.742214+00:00 +2025-02-02,Cline,all,47,,20260417T235907Z,2026-04-18T00:01:17.742214+00:00 +2025-02-02,Sourcery AI,all,0,,20260417T235907Z,2026-04-18T00:01:17.742214+00:00 +2025-02-02,DeepSource,all,5,,20260417T235907Z,2026-04-18T00:01:17.742214+00:00 +2025-02-02,Sweep AI,all,0,,20260417T235907Z,2026-04-18T00:01:17.742214+00:00 +2025-02-02,Qwen Coder,all,0,,20260417T235907Z,2026-04-18T00:01:17.742214+00:00 +2025-02-02,Roo Code,all,0,,20260417T235907Z,2026-04-18T00:01:17.742214+00:00 +2025-02-02,OpenCode,all,0,,20260417T235907Z,2026-04-18T00:01:17.742214+00:00 +2025-02-02,OpenAI Codex,all,0,,20260417T235907Z,2026-04-18T00:01:17.742214+00:00 +2025-02-02,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-18T00:01:17.742214+00:00 +2025-02-02,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-18T00:01:17.742214+00:00 +2025-02-02,Codegen,all,0,,20260417T235907Z,2026-04-18T00:01:17.742214+00:00 +2025-02-02,Gru,all,0,,20260417T235907Z,2026-04-18T00:01:17.742214+00:00 +2025-02-02,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-18T00:01:17.742214+00:00 +2025-02-02,Crush,all,0,,20260417T235907Z,2026-04-18T00:01:17.742214+00:00 +2025-02-02,Sketch,all,0,,20260417T235907Z,2026-04-18T00:01:17.742214+00:00 +2025-02-02,Kilo Code,all,0,,20260417T235907Z,2026-04-18T00:01:17.742214+00:00 +2025-02-03,Claude Code,all,0,,20260417T235907Z,2026-04-18T00:03:28.235775+00:00 +2025-02-03,Copilot,all,0,,20260417T235907Z,2026-04-18T00:03:28.235775+00:00 +2025-02-03,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-18T00:03:28.235775+00:00 +2025-02-03,Cursor,all,0,,20260417T235907Z,2026-04-18T00:03:28.235775+00:00 +2025-02-03,Aider,all,1124,,20260417T235907Z,2026-04-18T00:03:28.235775+00:00 +2025-02-03,Devin,all,10,,20260417T235907Z,2026-04-18T00:03:28.235775+00:00 +2025-02-03,Lovable,all,0,,20260417T235907Z,2026-04-18T00:03:28.235775+00:00 +2025-02-03,OpenHands,all,18,,20260417T235907Z,2026-04-18T00:03:28.235775+00:00 +2025-02-03,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-18T00:03:28.235775+00:00 +2025-02-03,Coderabbit,all,0,,20260417T235907Z,2026-04-18T00:03:28.235775+00:00 +2025-02-03,ChatGPT,all,0,,20260417T235907Z,2026-04-18T00:03:28.235775+00:00 +2025-02-03,Gemini CLI,all,0,,20260417T235907Z,2026-04-18T00:03:28.235775+00:00 +2025-02-03,Jules (Google),all,0,,20260417T235907Z,2026-04-18T00:03:28.235775+00:00 +2025-02-03,Cline,all,51,,20260417T235907Z,2026-04-18T00:03:28.235775+00:00 +2025-02-03,Sourcery AI,all,0,,20260417T235907Z,2026-04-18T00:03:28.235775+00:00 +2025-02-03,DeepSource,all,6,,20260417T235907Z,2026-04-18T00:03:28.235775+00:00 +2025-02-03,Sweep AI,all,0,,20260417T235907Z,2026-04-18T00:03:28.235775+00:00 +2025-02-03,Qwen Coder,all,0,,20260417T235907Z,2026-04-18T00:03:28.235775+00:00 +2025-02-03,Roo Code,all,0,,20260417T235907Z,2026-04-18T00:03:28.235775+00:00 +2025-02-03,OpenCode,all,0,,20260417T235907Z,2026-04-18T00:03:28.235775+00:00 +2025-02-03,OpenAI Codex,all,0,,20260417T235907Z,2026-04-18T00:03:28.235775+00:00 +2025-02-03,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-18T00:03:28.235775+00:00 +2025-02-03,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-18T00:03:28.235775+00:00 +2025-02-03,Codegen,all,0,,20260417T235907Z,2026-04-18T00:03:28.235775+00:00 +2025-02-03,Gru,all,0,,20260417T235907Z,2026-04-18T00:03:28.235775+00:00 +2025-02-03,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-18T00:03:28.235775+00:00 +2025-02-03,Crush,all,0,,20260417T235907Z,2026-04-18T00:03:28.235775+00:00 +2025-02-03,Sketch,all,0,,20260417T235907Z,2026-04-18T00:03:28.235775+00:00 +2025-02-03,Kilo Code,all,0,,20260417T235907Z,2026-04-18T00:03:28.235775+00:00 +2025-02-04,Claude Code,all,1,,20260417T235907Z,2026-04-18T00:05:38.886086+00:00 +2025-02-04,Copilot,all,0,,20260417T235907Z,2026-04-18T00:05:38.886086+00:00 +2025-02-04,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-18T00:05:38.886086+00:00 +2025-02-04,Cursor,all,0,,20260417T235907Z,2026-04-18T00:05:38.886086+00:00 +2025-02-04,Aider,all,2706,,20260417T235907Z,2026-04-18T00:05:38.886086+00:00 +2025-02-04,Devin,all,94,,20260417T235907Z,2026-04-18T00:05:38.886086+00:00 +2025-02-04,Lovable,all,0,,20260417T235907Z,2026-04-18T00:05:38.886086+00:00 +2025-02-04,OpenHands,all,47,,20260417T235907Z,2026-04-18T00:05:38.886086+00:00 +2025-02-04,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-18T00:05:38.886086+00:00 +2025-02-04,Coderabbit,all,0,,20260417T235907Z,2026-04-18T00:05:38.886086+00:00 +2025-02-04,ChatGPT,all,1,,20260417T235907Z,2026-04-18T00:05:38.886086+00:00 +2025-02-04,Gemini CLI,all,0,,20260417T235907Z,2026-04-18T00:05:38.886086+00:00 +2025-02-04,Jules (Google),all,0,,20260417T235907Z,2026-04-18T00:05:38.886086+00:00 +2025-02-04,Cline,all,82,,20260417T235907Z,2026-04-18T00:05:38.886086+00:00 +2025-02-04,Sourcery AI,all,0,,20260417T235907Z,2026-04-18T00:05:38.886086+00:00 +2025-02-04,DeepSource,all,7,,20260417T235907Z,2026-04-18T00:05:38.886086+00:00 +2025-02-04,Sweep AI,all,0,,20260417T235907Z,2026-04-18T00:05:38.886086+00:00 +2025-02-04,Qwen Coder,all,0,,20260417T235907Z,2026-04-18T00:05:38.886086+00:00 +2025-02-04,Roo Code,all,0,,20260417T235907Z,2026-04-18T00:05:38.886086+00:00 +2025-02-04,OpenCode,all,0,,20260417T235907Z,2026-04-18T00:05:38.886086+00:00 +2025-02-04,OpenAI Codex,all,0,,20260417T235907Z,2026-04-18T00:05:38.886086+00:00 +2025-02-04,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-18T00:05:38.886086+00:00 +2025-02-04,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-18T00:05:38.886086+00:00 +2025-02-04,Codegen,all,0,,20260417T235907Z,2026-04-18T00:05:38.886086+00:00 +2025-02-04,Gru,all,18,,20260417T235907Z,2026-04-18T00:05:38.886086+00:00 +2025-02-04,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-18T00:05:38.886086+00:00 +2025-02-04,Crush,all,0,,20260417T235907Z,2026-04-18T00:05:38.886086+00:00 +2025-02-04,Sketch,all,0,,20260417T235907Z,2026-04-18T00:05:38.886086+00:00 +2025-02-04,Kilo Code,all,0,,20260417T235907Z,2026-04-18T00:05:38.886086+00:00 +2025-02-05,Claude Code,all,0,,20260417T235907Z,2026-04-18T00:07:50.150721+00:00 +2025-02-05,Copilot,all,0,,20260417T235907Z,2026-04-18T00:07:50.150721+00:00 +2025-02-05,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-18T00:07:50.150721+00:00 +2025-02-05,Cursor,all,0,,20260417T235907Z,2026-04-18T00:07:50.150721+00:00 +2025-02-05,Aider,all,1104,,20260417T235907Z,2026-04-18T00:07:50.150721+00:00 +2025-02-05,Devin,all,16,,20260417T235907Z,2026-04-18T00:07:50.150721+00:00 +2025-02-05,Lovable,all,0,,20260417T235907Z,2026-04-18T00:07:50.150721+00:00 +2025-02-05,OpenHands,all,72,,20260417T235907Z,2026-04-18T00:07:50.150721+00:00 +2025-02-05,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-18T00:07:50.150721+00:00 +2025-02-05,Coderabbit,all,0,,20260417T235907Z,2026-04-18T00:07:50.150721+00:00 +2025-02-05,ChatGPT,all,0,,20260417T235907Z,2026-04-18T00:07:50.150721+00:00 +2025-02-05,Gemini CLI,all,0,,20260417T235907Z,2026-04-18T00:07:50.150721+00:00 +2025-02-05,Jules (Google),all,0,,20260417T235907Z,2026-04-18T00:07:50.150721+00:00 +2025-02-05,Cline,all,135,,20260417T235907Z,2026-04-18T00:07:50.150721+00:00 +2025-02-05,Sourcery AI,all,0,,20260417T235907Z,2026-04-18T00:07:50.150721+00:00 +2025-02-05,DeepSource,all,12,,20260417T235907Z,2026-04-18T00:07:50.150721+00:00 +2025-02-05,Sweep AI,all,0,,20260417T235907Z,2026-04-18T00:07:50.150721+00:00 +2025-02-05,Qwen Coder,all,0,,20260417T235907Z,2026-04-18T00:07:50.150721+00:00 +2025-02-05,Roo Code,all,0,,20260417T235907Z,2026-04-18T00:07:50.150721+00:00 +2025-02-05,OpenCode,all,0,,20260417T235907Z,2026-04-18T00:07:50.150721+00:00 +2025-02-05,OpenAI Codex,all,0,,20260417T235907Z,2026-04-18T00:07:50.150721+00:00 +2025-02-05,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-18T00:07:50.150721+00:00 +2025-02-05,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-18T00:07:50.150721+00:00 +2025-02-05,Codegen,all,0,,20260417T235907Z,2026-04-18T00:07:50.150721+00:00 +2025-02-05,Gru,all,0,,20260417T235907Z,2026-04-18T00:07:50.150721+00:00 +2025-02-05,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-18T00:07:50.150721+00:00 +2025-02-05,Crush,all,0,,20260417T235907Z,2026-04-18T00:07:50.150721+00:00 +2025-02-05,Sketch,all,0,,20260417T235907Z,2026-04-18T00:07:50.150721+00:00 +2025-02-05,Kilo Code,all,0,,20260417T235907Z,2026-04-18T00:07:50.150721+00:00 +2025-02-06,Claude Code,all,1,,20260417T235907Z,2026-04-18T00:10:00.239150+00:00 +2025-02-06,Copilot,all,0,,20260417T235907Z,2026-04-18T00:10:00.239150+00:00 +2025-02-06,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-18T00:10:00.239150+00:00 +2025-02-06,Cursor,all,0,,20260417T235907Z,2026-04-18T00:10:00.239150+00:00 +2025-02-06,Aider,all,2007,,20260417T235907Z,2026-04-18T00:10:00.239150+00:00 +2025-02-06,Devin,all,19,,20260417T235907Z,2026-04-18T00:10:00.239150+00:00 +2025-02-06,Lovable,all,0,,20260417T235907Z,2026-04-18T00:10:00.239150+00:00 +2025-02-06,OpenHands,all,59,,20260417T235907Z,2026-04-18T00:10:00.239150+00:00 +2025-02-06,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-18T00:10:00.239150+00:00 +2025-02-06,Coderabbit,all,0,,20260417T235907Z,2026-04-18T00:10:00.239150+00:00 +2025-02-06,ChatGPT,all,1,,20260417T235907Z,2026-04-18T00:10:00.239150+00:00 +2025-02-06,Gemini CLI,all,0,,20260417T235907Z,2026-04-18T00:10:00.239150+00:00 +2025-02-06,Jules (Google),all,0,,20260417T235907Z,2026-04-18T00:10:00.239150+00:00 +2025-02-06,Cline,all,94,,20260417T235907Z,2026-04-18T00:10:00.239150+00:00 +2025-02-06,Sourcery AI,all,0,,20260417T235907Z,2026-04-18T00:10:00.239150+00:00 +2025-02-06,DeepSource,all,16,,20260417T235907Z,2026-04-18T00:10:00.239150+00:00 +2025-02-06,Sweep AI,all,0,,20260417T235907Z,2026-04-18T00:10:00.239150+00:00 +2025-02-06,Qwen Coder,all,0,,20260417T235907Z,2026-04-18T00:10:00.239150+00:00 +2025-02-06,Roo Code,all,0,,20260417T235907Z,2026-04-18T00:10:00.239150+00:00 +2025-02-06,OpenCode,all,0,,20260417T235907Z,2026-04-18T00:10:00.239150+00:00 +2025-02-06,OpenAI Codex,all,0,,20260417T235907Z,2026-04-18T00:10:00.239150+00:00 +2025-02-06,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-18T00:10:00.239150+00:00 +2025-02-06,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-18T00:10:00.239150+00:00 +2025-02-06,Codegen,all,0,,20260417T235907Z,2026-04-18T00:10:00.239150+00:00 +2025-02-06,Gru,all,0,,20260417T235907Z,2026-04-18T00:10:00.239150+00:00 +2025-02-06,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-18T00:10:00.239150+00:00 +2025-02-06,Crush,all,0,,20260417T235907Z,2026-04-18T00:10:00.239150+00:00 +2025-02-06,Sketch,all,0,,20260417T235907Z,2026-04-18T00:10:00.239150+00:00 +2025-02-06,Kilo Code,all,0,,20260417T235907Z,2026-04-18T00:10:00.239150+00:00 +2025-02-07,Claude Code,all,0,,20260417T235907Z,2026-04-18T00:12:11.109903+00:00 +2025-02-07,Copilot,all,0,,20260417T235907Z,2026-04-18T00:12:11.109903+00:00 +2025-02-07,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-18T00:12:11.109903+00:00 +2025-02-07,Cursor,all,0,,20260417T235907Z,2026-04-18T00:12:11.109903+00:00 +2025-02-07,Aider,all,1454,,20260417T235907Z,2026-04-18T00:12:11.109903+00:00 +2025-02-07,Devin,all,52,,20260417T235907Z,2026-04-18T00:12:11.109903+00:00 +2025-02-07,Lovable,all,0,,20260417T235907Z,2026-04-18T00:12:11.109903+00:00 +2025-02-07,OpenHands,all,40,,20260417T235907Z,2026-04-18T00:12:11.109903+00:00 +2025-02-07,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-18T00:12:11.109903+00:00 +2025-02-07,Coderabbit,all,0,,20260417T235907Z,2026-04-18T00:12:11.109903+00:00 +2025-02-07,ChatGPT,all,1,,20260417T235907Z,2026-04-18T00:12:11.109903+00:00 +2025-02-07,Gemini CLI,all,0,,20260417T235907Z,2026-04-18T00:12:11.109903+00:00 +2025-02-07,Jules (Google),all,0,,20260417T235907Z,2026-04-18T00:12:11.109903+00:00 +2025-02-07,Cline,all,73,,20260417T235907Z,2026-04-18T00:12:11.109903+00:00 +2025-02-07,Sourcery AI,all,0,,20260417T235907Z,2026-04-18T00:12:11.109903+00:00 +2025-02-07,DeepSource,all,8,,20260417T235907Z,2026-04-18T00:12:11.109903+00:00 +2025-02-07,Sweep AI,all,0,,20260417T235907Z,2026-04-18T00:12:11.109903+00:00 +2025-02-07,Qwen Coder,all,0,,20260417T235907Z,2026-04-18T00:12:11.109903+00:00 +2025-02-07,Roo Code,all,0,,20260417T235907Z,2026-04-18T00:12:11.109903+00:00 +2025-02-07,OpenCode,all,0,,20260417T235907Z,2026-04-18T00:12:11.109903+00:00 +2025-02-07,OpenAI Codex,all,0,,20260417T235907Z,2026-04-18T00:12:11.109903+00:00 +2025-02-07,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-18T00:12:11.109903+00:00 +2025-02-07,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-18T00:12:11.109903+00:00 +2025-02-07,Codegen,all,0,,20260417T235907Z,2026-04-18T00:12:11.109903+00:00 +2025-02-07,Gru,all,0,,20260417T235907Z,2026-04-18T00:12:11.109903+00:00 +2025-02-07,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-18T00:12:11.109903+00:00 +2025-02-07,Crush,all,0,,20260417T235907Z,2026-04-18T00:12:11.109903+00:00 +2025-02-07,Sketch,all,0,,20260417T235907Z,2026-04-18T00:12:11.109903+00:00 +2025-02-07,Kilo Code,all,0,,20260417T235907Z,2026-04-18T00:12:11.109903+00:00 +2025-02-08,Claude Code,all,1,,20260417T235907Z,2026-04-18T00:14:20.709616+00:00 +2025-02-08,Copilot,all,0,,20260417T235907Z,2026-04-18T00:14:20.709616+00:00 +2025-02-08,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-18T00:14:20.709616+00:00 +2025-02-08,Cursor,all,0,,20260417T235907Z,2026-04-18T00:14:20.709616+00:00 +2025-02-08,Aider,all,1184,,20260417T235907Z,2026-04-18T00:14:20.709616+00:00 +2025-02-08,Devin,all,29,,20260417T235907Z,2026-04-18T00:14:20.709616+00:00 +2025-02-08,Lovable,all,0,,20260417T235907Z,2026-04-18T00:14:20.709616+00:00 +2025-02-08,OpenHands,all,14,,20260417T235907Z,2026-04-18T00:14:20.709616+00:00 +2025-02-08,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-18T00:14:20.709616+00:00 +2025-02-08,Coderabbit,all,1,,20260417T235907Z,2026-04-18T00:14:20.709616+00:00 +2025-02-08,ChatGPT,all,0,,20260417T235907Z,2026-04-18T00:14:20.709616+00:00 +2025-02-08,Gemini CLI,all,0,,20260417T235907Z,2026-04-18T00:14:20.709616+00:00 +2025-02-08,Jules (Google),all,0,,20260417T235907Z,2026-04-18T00:14:20.709616+00:00 +2025-02-08,Cline,all,93,,20260417T235907Z,2026-04-18T00:14:20.709616+00:00 +2025-02-08,Sourcery AI,all,0,,20260417T235907Z,2026-04-18T00:14:20.709616+00:00 +2025-02-08,DeepSource,all,7,,20260417T235907Z,2026-04-18T00:14:20.709616+00:00 +2025-02-08,Sweep AI,all,0,,20260417T235907Z,2026-04-18T00:14:20.709616+00:00 +2025-02-08,Qwen Coder,all,0,,20260417T235907Z,2026-04-18T00:14:20.709616+00:00 +2025-02-08,Roo Code,all,0,,20260417T235907Z,2026-04-18T00:14:20.709616+00:00 +2025-02-08,OpenCode,all,0,,20260417T235907Z,2026-04-18T00:14:20.709616+00:00 +2025-02-08,OpenAI Codex,all,0,,20260417T235907Z,2026-04-18T00:14:20.709616+00:00 +2025-02-08,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-18T00:14:20.709616+00:00 +2025-02-08,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-18T00:14:20.709616+00:00 +2025-02-08,Codegen,all,0,,20260417T235907Z,2026-04-18T00:14:20.709616+00:00 +2025-02-08,Gru,all,0,,20260417T235907Z,2026-04-18T00:14:20.709616+00:00 +2025-02-08,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-18T00:14:20.709616+00:00 +2025-02-08,Crush,all,0,,20260417T235907Z,2026-04-18T00:14:20.709616+00:00 +2025-02-08,Sketch,all,0,,20260417T235907Z,2026-04-18T00:14:20.709616+00:00 +2025-02-08,Kilo Code,all,0,,20260417T235907Z,2026-04-18T00:14:20.709616+00:00 +2025-02-09,Claude Code,all,0,,20260417T235907Z,2026-04-18T00:16:30.725075+00:00 +2025-02-09,Copilot,all,0,,20260417T235907Z,2026-04-18T00:16:30.725075+00:00 +2025-02-09,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-18T00:16:30.725075+00:00 +2025-02-09,Cursor,all,0,,20260417T235907Z,2026-04-18T00:16:30.725075+00:00 +2025-02-09,Aider,all,1164,,20260417T235907Z,2026-04-18T00:16:30.725075+00:00 +2025-02-09,Devin,all,109,,20260417T235907Z,2026-04-18T00:16:30.725075+00:00 +2025-02-09,Lovable,all,0,,20260417T235907Z,2026-04-18T00:16:30.725075+00:00 +2025-02-09,OpenHands,all,22,,20260417T235907Z,2026-04-18T00:16:30.725075+00:00 +2025-02-09,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-18T00:16:30.725075+00:00 +2025-02-09,Coderabbit,all,3,,20260417T235907Z,2026-04-18T00:16:30.725075+00:00 +2025-02-09,ChatGPT,all,0,,20260417T235907Z,2026-04-18T00:16:30.725075+00:00 +2025-02-09,Gemini CLI,all,0,,20260417T235907Z,2026-04-18T00:16:30.725075+00:00 +2025-02-09,Jules (Google),all,0,,20260417T235907Z,2026-04-18T00:16:30.725075+00:00 +2025-02-09,Cline,all,7,,20260417T235907Z,2026-04-18T00:16:30.725075+00:00 +2025-02-09,Sourcery AI,all,0,,20260417T235907Z,2026-04-18T00:16:30.725075+00:00 +2025-02-09,DeepSource,all,13,,20260417T235907Z,2026-04-18T00:16:30.725075+00:00 +2025-02-09,Sweep AI,all,0,,20260417T235907Z,2026-04-18T00:16:30.725075+00:00 +2025-02-09,Qwen Coder,all,0,,20260417T235907Z,2026-04-18T00:16:30.725075+00:00 +2025-02-09,Roo Code,all,0,,20260417T235907Z,2026-04-18T00:16:30.725075+00:00 +2025-02-09,OpenCode,all,0,,20260417T235907Z,2026-04-18T00:16:30.725075+00:00 +2025-02-09,OpenAI Codex,all,0,,20260417T235907Z,2026-04-18T00:16:30.725075+00:00 +2025-02-09,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-18T00:16:30.725075+00:00 +2025-02-09,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-18T00:16:30.725075+00:00 +2025-02-09,Codegen,all,0,,20260417T235907Z,2026-04-18T00:16:30.725075+00:00 +2025-02-09,Gru,all,0,,20260417T235907Z,2026-04-18T00:16:30.725075+00:00 +2025-02-09,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-18T00:16:30.725075+00:00 +2025-02-09,Crush,all,0,,20260417T235907Z,2026-04-18T00:16:30.725075+00:00 +2025-02-09,Sketch,all,0,,20260417T235907Z,2026-04-18T00:16:30.725075+00:00 +2025-02-09,Kilo Code,all,0,,20260417T235907Z,2026-04-18T00:16:30.725075+00:00 +2025-02-10,Claude Code,all,1,,20260417T235907Z,2026-04-18T00:18:41.514571+00:00 +2025-02-10,Copilot,all,0,,20260417T235907Z,2026-04-18T00:18:41.514571+00:00 +2025-02-10,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-18T00:18:41.514571+00:00 +2025-02-10,Cursor,all,0,,20260417T235907Z,2026-04-18T00:18:41.514571+00:00 +2025-02-10,Aider,all,1130,,20260417T235907Z,2026-04-18T00:18:41.514571+00:00 +2025-02-10,Devin,all,31,,20260417T235907Z,2026-04-18T00:18:41.514571+00:00 +2025-02-10,Lovable,all,0,,20260417T235907Z,2026-04-18T00:18:41.514571+00:00 +2025-02-10,OpenHands,all,24,,20260417T235907Z,2026-04-18T00:18:41.514571+00:00 +2025-02-10,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-18T00:18:41.514571+00:00 +2025-02-10,Coderabbit,all,1,,20260417T235907Z,2026-04-18T00:18:41.514571+00:00 +2025-02-10,ChatGPT,all,1,,20260417T235907Z,2026-04-18T00:18:41.514571+00:00 +2025-02-10,Gemini CLI,all,0,,20260417T235907Z,2026-04-18T00:18:41.514571+00:00 +2025-02-10,Jules (Google),all,0,,20260417T235907Z,2026-04-18T00:18:41.514571+00:00 +2025-02-10,Cline,all,35,,20260417T235907Z,2026-04-18T00:18:41.514571+00:00 +2025-02-10,Sourcery AI,all,0,,20260417T235907Z,2026-04-18T00:18:41.514571+00:00 +2025-02-10,DeepSource,all,11,,20260417T235907Z,2026-04-18T00:18:41.514571+00:00 +2025-02-10,Sweep AI,all,0,,20260417T235907Z,2026-04-18T00:18:41.514571+00:00 +2025-02-10,Qwen Coder,all,0,,20260417T235907Z,2026-04-18T00:18:41.514571+00:00 +2025-02-10,Roo Code,all,0,,20260417T235907Z,2026-04-18T00:18:41.514571+00:00 +2025-02-10,OpenCode,all,0,,20260417T235907Z,2026-04-18T00:18:41.514571+00:00 +2025-02-10,OpenAI Codex,all,0,,20260417T235907Z,2026-04-18T00:18:41.514571+00:00 +2025-02-10,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-18T00:18:41.514571+00:00 +2025-02-10,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-18T00:18:41.514571+00:00 +2025-02-10,Codegen,all,0,,20260417T235907Z,2026-04-18T00:18:41.514571+00:00 +2025-02-10,Gru,all,84,,20260417T235907Z,2026-04-18T00:18:41.514571+00:00 +2025-02-10,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-18T00:18:41.514571+00:00 +2025-02-10,Crush,all,0,,20260417T235907Z,2026-04-18T00:18:41.514571+00:00 +2025-02-10,Sketch,all,0,,20260417T235907Z,2026-04-18T00:18:41.514571+00:00 +2025-02-10,Kilo Code,all,0,,20260417T235907Z,2026-04-18T00:18:41.514571+00:00 +2025-02-11,Claude Code,all,1,,20260417T235907Z,2026-04-18T00:20:51.838680+00:00 +2025-02-11,Copilot,all,0,,20260417T235907Z,2026-04-18T00:20:51.838680+00:00 +2025-02-11,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-18T00:20:51.838680+00:00 +2025-02-11,Cursor,all,0,,20260417T235907Z,2026-04-18T00:20:51.838680+00:00 +2025-02-11,Aider,all,1116,,20260417T235907Z,2026-04-18T00:20:51.838680+00:00 +2025-02-11,Devin,all,52,,20260417T235907Z,2026-04-18T00:20:51.838680+00:00 +2025-02-11,Lovable,all,0,,20260417T235907Z,2026-04-18T00:20:51.838680+00:00 +2025-02-11,OpenHands,all,51,,20260417T235907Z,2026-04-18T00:20:51.838680+00:00 +2025-02-11,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-18T00:20:51.838680+00:00 +2025-02-11,Coderabbit,all,0,,20260417T235907Z,2026-04-18T00:20:51.838680+00:00 +2025-02-11,ChatGPT,all,0,,20260417T235907Z,2026-04-18T00:20:51.838680+00:00 +2025-02-11,Gemini CLI,all,0,,20260417T235907Z,2026-04-18T00:20:51.838680+00:00 +2025-02-11,Jules (Google),all,0,,20260417T235907Z,2026-04-18T00:20:51.838680+00:00 +2025-02-11,Cline,all,77,,20260417T235907Z,2026-04-18T00:20:51.838680+00:00 +2025-02-11,Sourcery AI,all,2,,20260417T235907Z,2026-04-18T00:20:51.838680+00:00 +2025-02-11,DeepSource,all,12,,20260417T235907Z,2026-04-18T00:20:51.838680+00:00 +2025-02-11,Sweep AI,all,0,,20260417T235907Z,2026-04-18T00:20:51.838680+00:00 +2025-02-11,Qwen Coder,all,0,,20260417T235907Z,2026-04-18T00:20:51.838680+00:00 +2025-02-11,Roo Code,all,0,,20260417T235907Z,2026-04-18T00:20:51.838680+00:00 +2025-02-11,OpenCode,all,0,,20260417T235907Z,2026-04-18T00:20:51.838680+00:00 +2025-02-11,OpenAI Codex,all,0,,20260417T235907Z,2026-04-18T00:20:51.838680+00:00 +2025-02-11,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-18T00:20:51.838680+00:00 +2025-02-11,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-18T00:20:51.838680+00:00 +2025-02-11,Codegen,all,0,,20260417T235907Z,2026-04-18T00:20:51.838680+00:00 +2025-02-11,Gru,all,2,,20260417T235907Z,2026-04-18T00:20:51.838680+00:00 +2025-02-11,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-18T00:20:51.838680+00:00 +2025-02-11,Crush,all,0,,20260417T235907Z,2026-04-18T00:20:51.838680+00:00 +2025-02-11,Sketch,all,0,,20260417T235907Z,2026-04-18T00:20:51.838680+00:00 +2025-02-11,Kilo Code,all,0,,20260417T235907Z,2026-04-18T00:20:51.838680+00:00 +2025-02-12,Claude Code,all,0,,20260417T235907Z,2026-04-18T00:23:01.687000+00:00 +2025-02-12,Copilot,all,0,,20260417T235907Z,2026-04-18T00:23:01.687000+00:00 +2025-02-12,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-18T00:23:01.687000+00:00 +2025-02-12,Cursor,all,0,,20260417T235907Z,2026-04-18T00:23:01.687000+00:00 +2025-02-12,Aider,all,1125,,20260417T235907Z,2026-04-18T00:23:01.687000+00:00 +2025-02-12,Devin,all,30,,20260417T235907Z,2026-04-18T00:23:01.687000+00:00 +2025-02-12,Lovable,all,0,,20260417T235907Z,2026-04-18T00:23:01.687000+00:00 +2025-02-12,OpenHands,all,30,,20260417T235907Z,2026-04-18T00:23:01.687000+00:00 +2025-02-12,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-18T00:23:01.687000+00:00 +2025-02-12,Coderabbit,all,0,,20260417T235907Z,2026-04-18T00:23:01.687000+00:00 +2025-02-12,ChatGPT,all,0,,20260417T235907Z,2026-04-18T00:23:01.687000+00:00 +2025-02-12,Gemini CLI,all,0,,20260417T235907Z,2026-04-18T00:23:01.687000+00:00 +2025-02-12,Jules (Google),all,0,,20260417T235907Z,2026-04-18T00:23:01.687000+00:00 +2025-02-12,Cline,all,95,,20260417T235907Z,2026-04-18T00:23:01.687000+00:00 +2025-02-12,Sourcery AI,all,0,,20260417T235907Z,2026-04-18T00:23:01.687000+00:00 +2025-02-12,DeepSource,all,11,,20260417T235907Z,2026-04-18T00:23:01.687000+00:00 +2025-02-12,Sweep AI,all,3,,20260417T235907Z,2026-04-18T00:23:01.687000+00:00 +2025-02-12,Qwen Coder,all,0,,20260417T235907Z,2026-04-18T00:23:01.687000+00:00 +2025-02-12,Roo Code,all,0,,20260417T235907Z,2026-04-18T00:23:01.687000+00:00 +2025-02-12,OpenCode,all,0,,20260417T235907Z,2026-04-18T00:23:01.687000+00:00 +2025-02-12,OpenAI Codex,all,0,,20260417T235907Z,2026-04-18T00:23:01.687000+00:00 +2025-02-12,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-18T00:23:01.687000+00:00 +2025-02-12,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-18T00:23:01.687000+00:00 +2025-02-12,Codegen,all,0,,20260417T235907Z,2026-04-18T00:23:01.687000+00:00 +2025-02-12,Gru,all,0,,20260417T235907Z,2026-04-18T00:23:01.687000+00:00 +2025-02-12,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-18T00:23:01.687000+00:00 +2025-02-12,Crush,all,0,,20260417T235907Z,2026-04-18T00:23:01.687000+00:00 +2025-02-12,Sketch,all,0,,20260417T235907Z,2026-04-18T00:23:01.687000+00:00 +2025-02-12,Kilo Code,all,0,,20260417T235907Z,2026-04-18T00:23:01.687000+00:00 +2025-02-13,Claude Code,all,1,,20260417T235907Z,2026-04-18T00:25:11.203146+00:00 +2025-02-13,Copilot,all,0,,20260417T235907Z,2026-04-18T00:25:11.203146+00:00 +2025-02-13,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-18T00:25:11.203146+00:00 +2025-02-13,Cursor,all,0,,20260417T235907Z,2026-04-18T00:25:11.203146+00:00 +2025-02-13,Aider,all,1012,,20260417T235907Z,2026-04-18T00:25:11.203146+00:00 +2025-02-13,Devin,all,9,,20260417T235907Z,2026-04-18T00:25:11.203146+00:00 +2025-02-13,Lovable,all,0,,20260417T235907Z,2026-04-18T00:25:11.203146+00:00 +2025-02-13,OpenHands,all,32,,20260417T235907Z,2026-04-18T00:25:11.203146+00:00 +2025-02-13,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-18T00:25:11.203146+00:00 +2025-02-13,Coderabbit,all,1,,20260417T235907Z,2026-04-18T00:25:11.203146+00:00 +2025-02-13,ChatGPT,all,0,,20260417T235907Z,2026-04-18T00:25:11.203146+00:00 +2025-02-13,Gemini CLI,all,0,,20260417T235907Z,2026-04-18T00:25:11.203146+00:00 +2025-02-13,Jules (Google),all,0,,20260417T235907Z,2026-04-18T00:25:11.203146+00:00 +2025-02-13,Cline,all,25,,20260417T235907Z,2026-04-18T00:25:11.203146+00:00 +2025-02-13,Sourcery AI,all,0,,20260417T235907Z,2026-04-18T00:25:11.203146+00:00 +2025-02-13,DeepSource,all,7,,20260417T235907Z,2026-04-18T00:25:11.203146+00:00 +2025-02-13,Sweep AI,all,2,,20260417T235907Z,2026-04-18T00:25:11.203146+00:00 +2025-02-13,Qwen Coder,all,0,,20260417T235907Z,2026-04-18T00:25:11.203146+00:00 +2025-02-13,Roo Code,all,0,,20260417T235907Z,2026-04-18T00:25:11.203146+00:00 +2025-02-13,OpenCode,all,0,,20260417T235907Z,2026-04-18T00:25:11.203146+00:00 +2025-02-13,OpenAI Codex,all,0,,20260417T235907Z,2026-04-18T00:25:11.203146+00:00 +2025-02-13,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-18T00:25:11.203146+00:00 +2025-02-13,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-18T00:25:11.203146+00:00 +2025-02-13,Codegen,all,0,,20260417T235907Z,2026-04-18T00:25:11.203146+00:00 +2025-02-13,Gru,all,296,,20260417T235907Z,2026-04-18T00:25:11.203146+00:00 +2025-02-13,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-18T00:25:11.203146+00:00 +2025-02-13,Crush,all,0,,20260417T235907Z,2026-04-18T00:25:11.203146+00:00 +2025-02-13,Sketch,all,0,,20260417T235907Z,2026-04-18T00:25:11.203146+00:00 +2025-02-13,Kilo Code,all,0,,20260417T235907Z,2026-04-18T00:25:11.203146+00:00 +2025-02-14,Claude Code,all,0,,20260417T235907Z,2026-04-18T00:27:21.274157+00:00 +2025-02-14,Copilot,all,0,,20260417T235907Z,2026-04-18T00:27:21.274157+00:00 +2025-02-14,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-18T00:27:21.274157+00:00 +2025-02-14,Cursor,all,0,,20260417T235907Z,2026-04-18T00:27:21.274157+00:00 +2025-02-14,Aider,all,1005,,20260417T235907Z,2026-04-18T00:27:21.274157+00:00 +2025-02-14,Devin,all,30,,20260417T235907Z,2026-04-18T00:27:21.274157+00:00 +2025-02-14,Lovable,all,0,,20260417T235907Z,2026-04-18T00:27:21.274157+00:00 +2025-02-14,OpenHands,all,26,,20260417T235907Z,2026-04-18T00:27:21.274157+00:00 +2025-02-14,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-18T00:27:21.274157+00:00 +2025-02-14,Coderabbit,all,1,,20260417T235907Z,2026-04-18T00:27:21.274157+00:00 +2025-02-14,ChatGPT,all,0,,20260417T235907Z,2026-04-18T00:27:21.274157+00:00 +2025-02-14,Gemini CLI,all,0,,20260417T235907Z,2026-04-18T00:27:21.274157+00:00 +2025-02-14,Jules (Google),all,0,,20260417T235907Z,2026-04-18T00:27:21.274157+00:00 +2025-02-14,Cline,all,93,,20260417T235907Z,2026-04-18T00:27:21.274157+00:00 +2025-02-14,Sourcery AI,all,0,,20260417T235907Z,2026-04-18T00:27:21.274157+00:00 +2025-02-14,DeepSource,all,13,,20260417T235907Z,2026-04-18T00:27:21.274157+00:00 +2025-02-14,Sweep AI,all,0,,20260417T235907Z,2026-04-18T00:27:21.274157+00:00 +2025-02-14,Qwen Coder,all,0,,20260417T235907Z,2026-04-18T00:27:21.274157+00:00 +2025-02-14,Roo Code,all,0,,20260417T235907Z,2026-04-18T00:27:21.274157+00:00 +2025-02-14,OpenCode,all,0,,20260417T235907Z,2026-04-18T00:27:21.274157+00:00 +2025-02-14,OpenAI Codex,all,0,,20260417T235907Z,2026-04-18T00:27:21.274157+00:00 +2025-02-14,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-18T00:27:21.274157+00:00 +2025-02-14,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-18T00:27:21.274157+00:00 +2025-02-14,Codegen,all,0,,20260417T235907Z,2026-04-18T00:27:21.274157+00:00 +2025-02-14,Gru,all,19,,20260417T235907Z,2026-04-18T00:27:21.274157+00:00 +2025-02-14,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-18T00:27:21.274157+00:00 +2025-02-14,Crush,all,0,,20260417T235907Z,2026-04-18T00:27:21.274157+00:00 +2025-02-14,Sketch,all,0,,20260417T235907Z,2026-04-18T00:27:21.274157+00:00 +2025-02-14,Kilo Code,all,0,,20260417T235907Z,2026-04-18T00:27:21.274157+00:00 +2025-02-15,Claude Code,all,1,,20260417T235907Z,2026-04-18T00:29:32.447778+00:00 +2025-02-15,Copilot,all,0,,20260417T235907Z,2026-04-18T00:29:32.447778+00:00 +2025-02-15,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-18T00:29:32.447778+00:00 +2025-02-15,Cursor,all,0,,20260417T235907Z,2026-04-18T00:29:32.447778+00:00 +2025-02-15,Aider,all,1122,,20260417T235907Z,2026-04-18T00:29:32.447778+00:00 +2025-02-15,Devin,all,20,,20260417T235907Z,2026-04-18T00:29:32.447778+00:00 +2025-02-15,Lovable,all,0,,20260417T235907Z,2026-04-18T00:29:32.447778+00:00 +2025-02-15,OpenHands,all,16,,20260417T235907Z,2026-04-18T00:29:32.447778+00:00 +2025-02-15,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-18T00:29:32.447778+00:00 +2025-02-15,Coderabbit,all,3,,20260417T235907Z,2026-04-18T00:29:32.447778+00:00 +2025-02-15,ChatGPT,all,0,,20260417T235907Z,2026-04-18T00:29:32.447778+00:00 +2025-02-15,Gemini CLI,all,0,,20260417T235907Z,2026-04-18T00:29:32.447778+00:00 +2025-02-15,Jules (Google),all,0,,20260417T235907Z,2026-04-18T00:29:32.447778+00:00 +2025-02-15,Cline,all,36,,20260417T235907Z,2026-04-18T00:29:32.447778+00:00 +2025-02-15,Sourcery AI,all,0,,20260417T235907Z,2026-04-18T00:29:32.447778+00:00 +2025-02-15,DeepSource,all,13,,20260417T235907Z,2026-04-18T00:29:32.447778+00:00 +2025-02-15,Sweep AI,all,27,,20260417T235907Z,2026-04-18T00:29:32.447778+00:00 +2025-02-15,Qwen Coder,all,0,,20260417T235907Z,2026-04-18T00:29:32.447778+00:00 +2025-02-15,Roo Code,all,0,,20260417T235907Z,2026-04-18T00:29:32.447778+00:00 +2025-02-15,OpenCode,all,0,,20260417T235907Z,2026-04-18T00:29:32.447778+00:00 +2025-02-15,OpenAI Codex,all,0,,20260417T235907Z,2026-04-18T00:29:32.447778+00:00 +2025-02-15,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-18T00:29:32.447778+00:00 +2025-02-15,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-18T00:29:32.447778+00:00 +2025-02-15,Codegen,all,0,,20260417T235907Z,2026-04-18T00:29:32.447778+00:00 +2025-02-15,Gru,all,157,,20260417T235907Z,2026-04-18T00:29:32.447778+00:00 +2025-02-15,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-18T00:29:32.447778+00:00 +2025-02-15,Crush,all,0,,20260417T235907Z,2026-04-18T00:29:32.447778+00:00 +2025-02-15,Sketch,all,0,,20260417T235907Z,2026-04-18T00:29:32.447778+00:00 +2025-02-15,Kilo Code,all,0,,20260417T235907Z,2026-04-18T00:29:32.447778+00:00 +2025-02-16,Claude Code,all,0,,20260417T235907Z,2026-04-18T00:31:42.287797+00:00 +2025-02-16,Copilot,all,0,,20260417T235907Z,2026-04-18T00:31:42.287797+00:00 +2025-02-16,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-18T00:31:42.287797+00:00 +2025-02-16,Cursor,all,0,,20260417T235907Z,2026-04-18T00:31:42.287797+00:00 +2025-02-16,Aider,all,1381,,20260417T235907Z,2026-04-18T00:31:42.287797+00:00 +2025-02-16,Devin,all,15,,20260417T235907Z,2026-04-18T00:31:42.287797+00:00 +2025-02-16,Lovable,all,0,,20260417T235907Z,2026-04-18T00:31:42.287797+00:00 +2025-02-16,OpenHands,all,77,,20260417T235907Z,2026-04-18T00:31:42.287797+00:00 +2025-02-16,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-18T00:31:42.287797+00:00 +2025-02-16,Coderabbit,all,1,,20260417T235907Z,2026-04-18T00:31:42.287797+00:00 +2025-02-16,ChatGPT,all,0,,20260417T235907Z,2026-04-18T00:31:42.287797+00:00 +2025-02-16,Gemini CLI,all,0,,20260417T235907Z,2026-04-18T00:31:42.287797+00:00 +2025-02-16,Jules (Google),all,0,,20260417T235907Z,2026-04-18T00:31:42.287797+00:00 +2025-02-16,Cline,all,21,,20260417T235907Z,2026-04-18T00:31:42.287797+00:00 +2025-02-16,Sourcery AI,all,0,,20260417T235907Z,2026-04-18T00:31:42.287797+00:00 +2025-02-16,DeepSource,all,10,,20260417T235907Z,2026-04-18T00:31:42.287797+00:00 +2025-02-16,Sweep AI,all,0,,20260417T235907Z,2026-04-18T00:31:42.287797+00:00 +2025-02-16,Qwen Coder,all,0,,20260417T235907Z,2026-04-18T00:31:42.287797+00:00 +2025-02-16,Roo Code,all,0,1,20260417T235907Z,2026-04-18T00:31:42.287797+00:00 +2025-02-16,OpenCode,all,0,,20260417T235907Z,2026-04-18T00:31:42.287797+00:00 +2025-02-16,OpenAI Codex,all,0,,20260417T235907Z,2026-04-18T00:31:42.287797+00:00 +2025-02-16,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-18T00:31:42.287797+00:00 +2025-02-16,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-18T00:31:42.287797+00:00 +2025-02-16,Codegen,all,0,,20260417T235907Z,2026-04-18T00:31:42.287797+00:00 +2025-02-16,Gru,all,74,,20260417T235907Z,2026-04-18T00:31:42.287797+00:00 +2025-02-16,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-18T00:31:42.287797+00:00 +2025-02-16,Crush,all,0,,20260417T235907Z,2026-04-18T00:31:42.287797+00:00 +2025-02-16,Sketch,all,0,,20260417T235907Z,2026-04-18T00:31:42.287797+00:00 +2025-02-16,Kilo Code,all,0,,20260417T235907Z,2026-04-18T00:31:42.287797+00:00 +2025-02-17,Claude Code,all,1,,20260417T235907Z,2026-04-18T00:33:53.088124+00:00 +2025-02-17,Copilot,all,1,,20260417T235907Z,2026-04-18T00:33:53.088124+00:00 +2025-02-17,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-18T00:33:53.088124+00:00 +2025-02-17,Cursor,all,0,,20260417T235907Z,2026-04-18T00:33:53.088124+00:00 +2025-02-17,Aider,all,1398,,20260417T235907Z,2026-04-18T00:33:53.088124+00:00 +2025-02-17,Devin,all,28,,20260417T235907Z,2026-04-18T00:33:53.088124+00:00 +2025-02-17,Lovable,all,0,,20260417T235907Z,2026-04-18T00:33:53.088124+00:00 +2025-02-17,OpenHands,all,90,,20260417T235907Z,2026-04-18T00:33:53.088124+00:00 +2025-02-17,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-18T00:33:53.088124+00:00 +2025-02-17,Coderabbit,all,1,,20260417T235907Z,2026-04-18T00:33:53.088124+00:00 +2025-02-17,ChatGPT,all,0,,20260417T235907Z,2026-04-18T00:33:53.088124+00:00 +2025-02-17,Gemini CLI,all,0,,20260417T235907Z,2026-04-18T00:33:53.088124+00:00 +2025-02-17,Jules (Google),all,0,,20260417T235907Z,2026-04-18T00:33:53.088124+00:00 +2025-02-17,Cline,all,6,,20260417T235907Z,2026-04-18T00:33:53.088124+00:00 +2025-02-17,Sourcery AI,all,0,,20260417T235907Z,2026-04-18T00:33:53.088124+00:00 +2025-02-17,DeepSource,all,6,,20260417T235907Z,2026-04-18T00:33:53.088124+00:00 +2025-02-17,Sweep AI,all,0,,20260417T235907Z,2026-04-18T00:33:53.088124+00:00 +2025-02-17,Qwen Coder,all,0,,20260417T235907Z,2026-04-18T00:33:53.088124+00:00 +2025-02-17,Roo Code,all,0,,20260417T235907Z,2026-04-18T00:33:53.088124+00:00 +2025-02-17,OpenCode,all,0,,20260417T235907Z,2026-04-18T00:33:53.088124+00:00 +2025-02-17,OpenAI Codex,all,0,,20260417T235907Z,2026-04-18T00:33:53.088124+00:00 +2025-02-17,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-18T00:33:53.088124+00:00 +2025-02-17,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-18T00:33:53.088124+00:00 +2025-02-17,Codegen,all,0,,20260417T235907Z,2026-04-18T00:33:53.088124+00:00 +2025-02-17,Gru,all,75,,20260417T235907Z,2026-04-18T00:33:53.088124+00:00 +2025-02-17,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-18T00:33:53.088124+00:00 +2025-02-17,Crush,all,0,,20260417T235907Z,2026-04-18T00:33:53.088124+00:00 +2025-02-17,Sketch,all,0,,20260417T235907Z,2026-04-18T00:33:53.088124+00:00 +2025-02-17,Kilo Code,all,0,,20260417T235907Z,2026-04-18T00:33:53.088124+00:00 +2025-02-18,Claude Code,all,1,,20260417T235907Z,2026-04-18T00:36:03.219964+00:00 +2025-02-18,Copilot,all,3,,20260417T235907Z,2026-04-18T00:36:03.219964+00:00 +2025-02-18,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-18T00:36:03.219964+00:00 +2025-02-18,Cursor,all,0,,20260417T235907Z,2026-04-18T00:36:03.219964+00:00 +2025-02-18,Aider,all,1353,,20260417T235907Z,2026-04-18T00:36:03.219964+00:00 +2025-02-18,Devin,all,42,,20260417T235907Z,2026-04-18T00:36:03.219964+00:00 +2025-02-18,Lovable,all,0,,20260417T235907Z,2026-04-18T00:36:03.219964+00:00 +2025-02-18,OpenHands,all,68,,20260417T235907Z,2026-04-18T00:36:03.219964+00:00 +2025-02-18,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-18T00:36:03.219964+00:00 +2025-02-18,Coderabbit,all,1,,20260417T235907Z,2026-04-18T00:36:03.219964+00:00 +2025-02-18,ChatGPT,all,0,,20260417T235907Z,2026-04-18T00:36:03.219964+00:00 +2025-02-18,Gemini CLI,all,0,,20260417T235907Z,2026-04-18T00:36:03.219964+00:00 +2025-02-18,Jules (Google),all,0,,20260417T235907Z,2026-04-18T00:36:03.219964+00:00 +2025-02-18,Cline,all,9,,20260417T235907Z,2026-04-18T00:36:03.219964+00:00 +2025-02-18,Sourcery AI,all,0,,20260417T235907Z,2026-04-18T00:36:03.219964+00:00 +2025-02-18,DeepSource,all,19,,20260417T235907Z,2026-04-18T00:36:03.219964+00:00 +2025-02-18,Sweep AI,all,1,,20260417T235907Z,2026-04-18T00:36:03.219964+00:00 +2025-02-18,Qwen Coder,all,0,,20260417T235907Z,2026-04-18T00:36:03.219964+00:00 +2025-02-18,Roo Code,all,0,,20260417T235907Z,2026-04-18T00:36:03.219964+00:00 +2025-02-18,OpenCode,all,0,,20260417T235907Z,2026-04-18T00:36:03.219964+00:00 +2025-02-18,OpenAI Codex,all,0,,20260417T235907Z,2026-04-18T00:36:03.219964+00:00 +2025-02-18,Amp (Sourcegraph),all,,,20260417T235907Z,2026-04-18T00:36:03.219964+00:00 +2025-02-18,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-18T00:36:03.219964+00:00 +2025-02-18,Codegen,all,0,,20260417T235907Z,2026-04-18T00:36:03.219964+00:00 +2025-02-18,Gru,all,0,,20260417T235907Z,2026-04-18T00:36:03.219964+00:00 +2025-02-18,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-18T00:36:03.219964+00:00 +2025-02-18,Crush,all,0,,20260417T235907Z,2026-04-18T00:36:03.219964+00:00 +2025-02-18,Sketch,all,0,,20260417T235907Z,2026-04-18T00:36:03.219964+00:00 +2025-02-18,Kilo Code,all,0,,20260417T235907Z,2026-04-18T00:36:03.219964+00:00 +2025-02-19,Claude Code,all,0,,20260417T235907Z,2026-04-18T02:55:46.332361+00:00 +2025-02-19,Copilot,all,0,,20260417T235907Z,2026-04-18T02:55:46.332361+00:00 +2025-02-19,Copilot SWE Agent,all,,,20260417T235907Z,2026-04-18T02:55:46.332361+00:00 +2025-02-19,Cursor,all,0,,20260417T235907Z,2026-04-18T02:55:46.332361+00:00 +2025-02-19,Aider,all,1582,,20260417T235907Z,2026-04-18T02:55:46.332361+00:00 +2025-02-19,Devin,all,,,20260417T235907Z,2026-04-18T02:55:46.332361+00:00 +2025-02-19,Lovable,all,0,,20260417T235907Z,2026-04-18T02:55:46.332361+00:00 +2025-02-19,OpenHands,all,,,20260417T235907Z,2026-04-18T02:55:46.332361+00:00 +2025-02-19,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-18T02:55:46.332361+00:00 +2025-02-19,Coderabbit,all,0,,20260417T235907Z,2026-04-18T02:55:46.332361+00:00 +2025-02-19,ChatGPT,all,0,,20260417T235907Z,2026-04-18T02:55:46.332361+00:00 +2025-02-19,Gemini CLI,all,0,,20260417T235907Z,2026-04-18T02:55:46.332361+00:00 +2025-02-19,Jules (Google),all,0,,20260417T235907Z,2026-04-18T02:55:46.332361+00:00 +2025-02-19,Cline,all,11,,20260417T235907Z,2026-04-18T02:55:46.332361+00:00 +2025-02-19,Sourcery AI,all,0,,20260417T235907Z,2026-04-18T02:55:46.332361+00:00 +2025-02-19,DeepSource,all,,,20260417T235907Z,2026-04-18T02:55:46.332361+00:00 +2025-02-19,Sweep AI,all,,,20260417T235907Z,2026-04-18T02:55:46.332361+00:00 +2025-02-19,Qwen Coder,all,0,,20260417T235907Z,2026-04-18T02:55:46.332361+00:00 +2025-02-19,Roo Code,all,0,,20260417T235907Z,2026-04-18T02:55:46.332361+00:00 +2025-02-19,OpenCode,all,0,,20260417T235907Z,2026-04-18T02:55:46.332361+00:00 +2025-02-19,OpenAI Codex,all,,,20260417T235907Z,2026-04-18T02:55:46.332361+00:00 +2025-02-19,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-18T02:55:46.332361+00:00 +2025-02-19,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-18T02:55:46.332361+00:00 +2025-02-19,Codegen,all,0,,20260417T235907Z,2026-04-18T02:55:46.332361+00:00 +2025-02-19,Gru,all,73,,20260417T235907Z,2026-04-18T02:55:46.332361+00:00 +2025-02-19,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-18T02:55:46.332361+00:00 +2025-02-19,Crush,all,0,,20260417T235907Z,2026-04-18T02:55:46.332361+00:00 +2025-02-19,Sketch,all,0,,20260417T235907Z,2026-04-18T02:55:46.332361+00:00 +2025-02-19,Kilo Code,all,0,,20260417T235907Z,2026-04-18T02:55:46.332361+00:00 +2025-02-20,Claude Code,all,1,,20260417T235907Z,2026-04-18T20:09:41.968341+00:00 +2025-02-20,Copilot,all,,,20260417T235907Z,2026-04-18T20:09:41.968341+00:00 +2025-02-20,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-18T20:09:41.968341+00:00 +2025-02-20,Cursor,all,0,,20260417T235907Z,2026-04-18T20:09:41.968341+00:00 +2025-02-20,Aider,all,1845,,20260417T235907Z,2026-04-18T20:09:41.968341+00:00 +2025-02-20,Devin,all,,,20260417T235907Z,2026-04-18T20:09:41.968341+00:00 +2025-02-20,Lovable,all,0,,20260417T235907Z,2026-04-18T20:09:41.968341+00:00 +2025-02-20,OpenHands,all,18,,20260417T235907Z,2026-04-18T20:09:41.968341+00:00 +2025-02-20,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-18T20:09:41.968341+00:00 +2025-02-20,Coderabbit,all,0,,20260417T235907Z,2026-04-18T20:09:41.968341+00:00 +2025-02-20,ChatGPT,all,1,,20260417T235907Z,2026-04-18T20:09:41.968341+00:00 +2025-02-20,Gemini CLI,all,0,,20260417T235907Z,2026-04-18T20:09:41.968341+00:00 +2025-02-20,Jules (Google),all,0,1,20260417T235907Z,2026-04-18T20:09:41.968341+00:00 +2025-02-20,Cline,all,5,,20260417T235907Z,2026-04-18T20:09:41.968341+00:00 +2025-02-20,Sourcery AI,all,0,,20260417T235907Z,2026-04-18T20:09:41.968341+00:00 +2025-02-20,DeepSource,all,11,,20260417T235907Z,2026-04-18T20:09:41.968341+00:00 +2025-02-20,Sweep AI,all,0,,20260417T235907Z,2026-04-18T20:09:41.968341+00:00 +2025-02-20,Qwen Coder,all,0,,20260417T235907Z,2026-04-18T20:09:41.968341+00:00 +2025-02-20,Roo Code,all,0,,20260417T235907Z,2026-04-18T20:09:41.968341+00:00 +2025-02-20,OpenCode,all,0,,20260417T235907Z,2026-04-18T20:09:41.968341+00:00 +2025-02-20,OpenAI Codex,all,0,,20260417T235907Z,2026-04-18T20:09:41.968341+00:00 +2025-02-20,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-18T20:09:41.968341+00:00 +2025-02-20,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-18T20:09:41.968341+00:00 +2025-02-20,Codegen,all,,,20260417T235907Z,2026-04-18T20:09:41.968341+00:00 +2025-02-20,Gru,all,438,,20260417T235907Z,2026-04-18T20:09:41.968341+00:00 +2025-02-20,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-18T20:09:41.968341+00:00 +2025-02-20,Crush,all,0,,20260417T235907Z,2026-04-18T20:09:41.968341+00:00 +2025-02-20,Sketch,all,0,,20260417T235907Z,2026-04-18T20:09:41.968341+00:00 +2025-02-20,Kilo Code,all,0,,20260417T235907Z,2026-04-18T20:09:41.968341+00:00 +2025-02-21,Claude Code,all,0,,20260417T235907Z,2026-04-19T01:06:30.902408+00:00 +2025-02-21,Copilot,all,0,,20260417T235907Z,2026-04-19T01:06:30.902408+00:00 +2025-02-21,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-19T01:06:30.902408+00:00 +2025-02-21,Cursor,all,0,,20260417T235907Z,2026-04-19T01:06:30.902408+00:00 +2025-02-21,Aider,all,1623,,20260417T235907Z,2026-04-19T01:06:30.902408+00:00 +2025-02-21,Devin,all,16,1,20260417T235907Z,2026-04-19T01:06:30.902408+00:00 +2025-02-21,Lovable,all,0,,20260417T235907Z,2026-04-19T01:06:30.902408+00:00 +2025-02-21,OpenHands,all,37,,20260417T235907Z,2026-04-19T01:06:30.902408+00:00 +2025-02-21,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-19T01:06:30.902408+00:00 +2025-02-21,Coderabbit,all,1,,20260417T235907Z,2026-04-19T01:06:30.902408+00:00 +2025-02-21,ChatGPT,all,0,,20260417T235907Z,2026-04-19T01:06:30.902408+00:00 +2025-02-21,Gemini CLI,all,0,,20260417T235907Z,2026-04-19T01:06:30.902408+00:00 +2025-02-21,Jules (Google),all,0,,20260417T235907Z,2026-04-19T01:06:30.902408+00:00 +2025-02-21,Cline,all,27,,20260417T235907Z,2026-04-19T01:06:30.902408+00:00 +2025-02-21,Sourcery AI,all,0,,20260417T235907Z,2026-04-19T01:06:30.902408+00:00 +2025-02-21,DeepSource,all,13,,20260417T235907Z,2026-04-19T01:06:30.902408+00:00 +2025-02-21,Sweep AI,all,0,,20260417T235907Z,2026-04-19T01:06:30.902408+00:00 +2025-02-21,Qwen Coder,all,0,,20260417T235907Z,2026-04-19T01:06:30.902408+00:00 +2025-02-21,Roo Code,all,0,,20260417T235907Z,2026-04-19T01:06:30.902408+00:00 +2025-02-21,OpenCode,all,0,,20260417T235907Z,2026-04-19T01:06:30.902408+00:00 +2025-02-21,OpenAI Codex,all,0,,20260417T235907Z,2026-04-19T01:06:30.902408+00:00 +2025-02-21,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-19T01:06:30.902408+00:00 +2025-02-21,Warp (Oz Agent),all,,,20260417T235907Z,2026-04-19T01:06:30.902408+00:00 +2025-02-21,Codegen,all,0,1,20260417T235907Z,2026-04-19T01:06:30.902408+00:00 +2025-02-21,Gru,all,73,,20260417T235907Z,2026-04-19T01:06:30.902408+00:00 +2025-02-21,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-19T01:06:30.902408+00:00 +2025-02-21,Crush,all,,,20260417T235907Z,2026-04-19T01:06:30.902408+00:00 +2025-02-21,Sketch,all,0,,20260417T235907Z,2026-04-19T01:06:30.902408+00:00 +2025-02-21,Kilo Code,all,0,,20260417T235907Z,2026-04-19T01:06:30.902408+00:00 +2025-02-22,Claude Code,all,1,,20260417T235907Z,2026-04-19T06:06:19.746593+00:00 +2025-02-22,Copilot,all,0,,20260417T235907Z,2026-04-19T06:06:19.746593+00:00 +2025-02-22,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-19T06:06:19.746593+00:00 +2025-02-22,Cursor,all,0,,20260417T235907Z,2026-04-19T06:06:19.746593+00:00 +2025-02-22,Aider,all,1669,,20260417T235907Z,2026-04-19T06:06:19.746593+00:00 +2025-02-22,Devin,all,,,20260417T235907Z,2026-04-19T06:06:19.746593+00:00 +2025-02-22,Lovable,all,0,,20260417T235907Z,2026-04-19T06:06:19.746593+00:00 +2025-02-22,OpenHands,all,33,,20260417T235907Z,2026-04-19T06:06:19.746593+00:00 +2025-02-22,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-19T06:06:19.746593+00:00 +2025-02-22,Coderabbit,all,0,,20260417T235907Z,2026-04-19T06:06:19.746593+00:00 +2025-02-22,ChatGPT,all,,,20260417T235907Z,2026-04-19T06:06:19.746593+00:00 +2025-02-22,Gemini CLI,all,0,,20260417T235907Z,2026-04-19T06:06:19.746593+00:00 +2025-02-22,Jules (Google),all,0,,20260417T235907Z,2026-04-19T06:06:19.746593+00:00 +2025-02-22,Cline,all,,,20260417T235907Z,2026-04-19T06:06:19.746593+00:00 +2025-02-22,Sourcery AI,all,0,,20260417T235907Z,2026-04-19T06:06:19.746593+00:00 +2025-02-22,DeepSource,all,,,20260417T235907Z,2026-04-19T06:06:19.746593+00:00 +2025-02-22,Sweep AI,all,0,,20260417T235907Z,2026-04-19T06:06:19.746593+00:00 +2025-02-22,Qwen Coder,all,0,,20260417T235907Z,2026-04-19T06:06:19.746593+00:00 +2025-02-22,Roo Code,all,0,,20260417T235907Z,2026-04-19T06:06:19.746593+00:00 +2025-02-22,OpenCode,all,0,,20260417T235907Z,2026-04-19T06:06:19.746593+00:00 +2025-02-22,OpenAI Codex,all,0,,20260417T235907Z,2026-04-19T06:06:19.746593+00:00 +2025-02-22,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-19T06:06:19.746593+00:00 +2025-02-22,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-19T06:06:19.746593+00:00 +2025-02-22,Codegen,all,0,,20260417T235907Z,2026-04-19T06:06:19.746593+00:00 +2025-02-22,Gru,all,0,,20260417T235907Z,2026-04-19T06:06:19.746593+00:00 +2025-02-22,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-19T06:06:19.746593+00:00 +2025-02-22,Crush,all,,,20260417T235907Z,2026-04-19T06:06:19.746593+00:00 +2025-02-22,Sketch,all,0,,20260417T235907Z,2026-04-19T06:06:19.746593+00:00 +2025-02-22,Kilo Code,all,0,,20260417T235907Z,2026-04-19T06:06:19.746593+00:00 +2025-02-23,Claude Code,all,0,,20260417T235907Z,2026-04-19T19:55:24.802513+00:00 +2025-02-23,Copilot,all,0,,20260417T235907Z,2026-04-19T19:55:24.802513+00:00 +2025-02-23,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-19T19:55:24.802513+00:00 +2025-02-23,Cursor,all,0,,20260417T235907Z,2026-04-19T19:55:24.802513+00:00 +2025-02-23,Aider,all,1031,,20260417T235907Z,2026-04-19T19:55:24.802513+00:00 +2025-02-23,Devin,all,14,1,20260417T235907Z,2026-04-19T19:55:24.802513+00:00 +2025-02-23,Lovable,all,0,,20260417T235907Z,2026-04-19T19:55:24.802513+00:00 +2025-02-23,OpenHands,all,39,,20260417T235907Z,2026-04-19T19:55:24.802513+00:00 +2025-02-23,Gemini Code Assist,all,,,20260417T235907Z,2026-04-19T19:55:24.802513+00:00 +2025-02-23,Coderabbit,all,2,,20260417T235907Z,2026-04-19T19:55:24.802513+00:00 +2025-02-23,ChatGPT,all,22,,20260417T235907Z,2026-04-19T19:55:24.802513+00:00 +2025-02-23,Gemini CLI,all,0,,20260417T235907Z,2026-04-19T19:55:24.802513+00:00 +2025-02-23,Jules (Google),all,,,20260417T235907Z,2026-04-19T19:55:24.802513+00:00 +2025-02-23,Cline,all,1,,20260417T235907Z,2026-04-19T19:55:24.802513+00:00 +2025-02-23,Sourcery AI,all,4,,20260417T235907Z,2026-04-19T19:55:24.802513+00:00 +2025-02-23,DeepSource,all,16,,20260417T235907Z,2026-04-19T19:55:24.802513+00:00 +2025-02-23,Sweep AI,all,0,,20260417T235907Z,2026-04-19T19:55:24.802513+00:00 +2025-02-23,Qwen Coder,all,0,,20260417T235907Z,2026-04-19T19:55:24.802513+00:00 +2025-02-23,Roo Code,all,0,,20260417T235907Z,2026-04-19T19:55:24.802513+00:00 +2025-02-23,OpenCode,all,0,,20260417T235907Z,2026-04-19T19:55:24.802513+00:00 +2025-02-23,OpenAI Codex,all,0,,20260417T235907Z,2026-04-19T19:55:24.802513+00:00 +2025-02-23,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-19T19:55:24.802513+00:00 +2025-02-23,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-19T19:55:24.802513+00:00 +2025-02-23,Codegen,all,0,,20260417T235907Z,2026-04-19T19:55:24.802513+00:00 +2025-02-23,Gru,all,3,,20260417T235907Z,2026-04-19T19:55:24.802513+00:00 +2025-02-23,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-19T19:55:24.802513+00:00 +2025-02-23,Crush,all,,,20260417T235907Z,2026-04-19T19:55:24.802513+00:00 +2025-02-23,Sketch,all,0,,20260417T235907Z,2026-04-19T19:55:24.802513+00:00 +2025-02-23,Kilo Code,all,0,,20260417T235907Z,2026-04-19T19:55:24.802513+00:00 +2025-02-24,Claude Code,all,7,,20260417T235907Z,2026-04-20T00:59:43.806635+00:00 +2025-02-24,Copilot,all,0,,20260417T235907Z,2026-04-20T00:59:43.806635+00:00 +2025-02-24,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-20T00:59:43.806635+00:00 +2025-02-24,Cursor,all,0,,20260417T235907Z,2026-04-20T00:59:43.806635+00:00 +2025-02-24,Aider,all,1944,,20260417T235907Z,2026-04-20T00:59:43.806635+00:00 +2025-02-24,Devin,all,41,1,20260417T235907Z,2026-04-20T00:59:43.806635+00:00 +2025-02-24,Lovable,all,0,,20260417T235907Z,2026-04-20T00:59:43.806635+00:00 +2025-02-24,OpenHands,all,28,,20260417T235907Z,2026-04-20T00:59:43.806635+00:00 +2025-02-24,Gemini Code Assist,all,0,1,20260417T235907Z,2026-04-20T00:59:43.806635+00:00 +2025-02-24,Coderabbit,all,2,,20260417T235907Z,2026-04-20T00:59:43.806635+00:00 +2025-02-24,ChatGPT,all,0,,20260417T235907Z,2026-04-20T00:59:43.806635+00:00 +2025-02-24,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T00:59:43.806635+00:00 +2025-02-24,Jules (Google),all,,,20260417T235907Z,2026-04-20T00:59:43.806635+00:00 +2025-02-24,Cline,all,3,,20260417T235907Z,2026-04-20T00:59:43.806635+00:00 +2025-02-24,Sourcery AI,all,0,,20260417T235907Z,2026-04-20T00:59:43.806635+00:00 +2025-02-24,DeepSource,all,7,,20260417T235907Z,2026-04-20T00:59:43.806635+00:00 +2025-02-24,Sweep AI,all,0,,20260417T235907Z,2026-04-20T00:59:43.806635+00:00 +2025-02-24,Qwen Coder,all,,,20260417T235907Z,2026-04-20T00:59:43.806635+00:00 +2025-02-24,Roo Code,all,0,,20260417T235907Z,2026-04-20T00:59:43.806635+00:00 +2025-02-24,OpenCode,all,0,,20260417T235907Z,2026-04-20T00:59:43.806635+00:00 +2025-02-24,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T00:59:43.806635+00:00 +2025-02-24,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T00:59:43.806635+00:00 +2025-02-24,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T00:59:43.806635+00:00 +2025-02-24,Codegen,all,0,,20260417T235907Z,2026-04-20T00:59:43.806635+00:00 +2025-02-24,Gru,all,91,,20260417T235907Z,2026-04-20T00:59:43.806635+00:00 +2025-02-24,Junie (JetBrains),all,,,20260417T235907Z,2026-04-20T00:59:43.806635+00:00 +2025-02-24,Crush,all,0,,20260417T235907Z,2026-04-20T00:59:43.806635+00:00 +2025-02-24,Sketch,all,0,,20260417T235907Z,2026-04-20T00:59:43.806635+00:00 +2025-02-24,Kilo Code,all,0,,20260417T235907Z,2026-04-20T00:59:43.806635+00:00 +2025-02-25,Claude Code,all,,,20260417T235907Z,2026-04-20T12:24:23.983331+00:00 +2025-02-25,Copilot,all,,,20260417T235907Z,2026-04-20T12:24:23.983331+00:00 +2025-02-25,Copilot SWE Agent,all,,,20260417T235907Z,2026-04-20T12:24:23.983331+00:00 +2025-02-25,Cursor,all,,,20260417T235907Z,2026-04-20T12:24:23.983331+00:00 +2025-02-25,Aider,all,,,20260417T235907Z,2026-04-20T12:24:23.983331+00:00 +2025-02-25,Devin,all,,,20260417T235907Z,2026-04-20T12:24:23.983331+00:00 +2025-02-25,Lovable,all,,,20260417T235907Z,2026-04-20T12:24:23.983331+00:00 +2025-02-25,OpenHands,all,,,20260417T235907Z,2026-04-20T12:24:23.983331+00:00 +2025-02-25,Gemini Code Assist,all,,,20260417T235907Z,2026-04-20T12:24:23.983331+00:00 +2025-02-25,Coderabbit,all,1,,20260417T235907Z,2026-04-20T12:24:23.983331+00:00 +2025-02-25,ChatGPT,all,0,,20260417T235907Z,2026-04-20T12:24:23.983331+00:00 +2025-02-25,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T12:24:23.983331+00:00 +2025-02-25,Jules (Google),all,0,1,20260417T235907Z,2026-04-20T12:24:23.983331+00:00 +2025-02-25,Cline,all,14,,20260417T235907Z,2026-04-20T12:24:23.983331+00:00 +2025-02-25,Sourcery AI,all,,,20260417T235907Z,2026-04-20T12:24:23.983331+00:00 +2025-02-25,DeepSource,all,,,20260417T235907Z,2026-04-20T12:24:23.983331+00:00 +2025-02-25,Sweep AI,all,,,20260417T235907Z,2026-04-20T12:24:23.983331+00:00 +2025-02-25,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T12:24:23.983331+00:00 +2025-02-25,Roo Code,all,0,,20260417T235907Z,2026-04-20T12:24:23.983331+00:00 +2025-02-25,OpenCode,all,0,,20260417T235907Z,2026-04-20T12:24:23.983331+00:00 +2025-02-25,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T12:24:23.983331+00:00 +2025-02-25,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T12:24:23.983331+00:00 +2025-02-25,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T12:24:23.983331+00:00 +2025-02-25,Codegen,all,0,,20260417T235907Z,2026-04-20T12:24:23.983331+00:00 +2025-02-25,Gru,all,103,,20260417T235907Z,2026-04-20T12:24:23.983331+00:00 +2025-02-25,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T12:24:23.983331+00:00 +2025-02-25,Crush,all,0,,20260417T235907Z,2026-04-20T12:24:23.983331+00:00 +2025-02-25,Sketch,all,0,,20260417T235907Z,2026-04-20T12:24:23.983331+00:00 +2025-02-25,Kilo Code,all,0,,20260417T235907Z,2026-04-20T12:24:23.983331+00:00 +2025-02-26,Claude Code,all,3,,20260417T235907Z,2026-04-20T16:06:26.838182+00:00 +2025-02-26,Copilot,all,3,1,20260417T235907Z,2026-04-20T16:06:26.838182+00:00 +2025-02-26,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-20T16:06:26.838182+00:00 +2025-02-26,Cursor,all,0,,20260417T235907Z,2026-04-20T16:06:26.838182+00:00 +2025-02-26,Aider,all,1614,,20260417T235907Z,2026-04-20T16:06:26.838182+00:00 +2025-02-26,Devin,all,31,,20260417T235907Z,2026-04-20T16:06:26.838182+00:00 +2025-02-26,Lovable,all,0,,20260417T235907Z,2026-04-20T16:06:26.838182+00:00 +2025-02-26,OpenHands,all,67,,20260417T235907Z,2026-04-20T16:06:26.838182+00:00 +2025-02-26,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-20T16:06:26.838182+00:00 +2025-02-26,Coderabbit,all,4,,20260417T235907Z,2026-04-20T16:06:26.838182+00:00 +2025-02-26,ChatGPT,all,0,,20260417T235907Z,2026-04-20T16:06:26.838182+00:00 +2025-02-26,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T16:06:26.838182+00:00 +2025-02-26,Jules (Google),all,0,,20260417T235907Z,2026-04-20T16:06:26.838182+00:00 +2025-02-26,Cline,all,13,,20260417T235907Z,2026-04-20T16:06:26.838182+00:00 +2025-02-26,Sourcery AI,all,2,,20260417T235907Z,2026-04-20T16:06:26.838182+00:00 +2025-02-26,DeepSource,all,10,,20260417T235907Z,2026-04-20T16:06:26.838182+00:00 +2025-02-26,Sweep AI,all,0,,20260417T235907Z,2026-04-20T16:06:26.838182+00:00 +2025-02-26,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T16:06:26.838182+00:00 +2025-02-26,Roo Code,all,0,,20260417T235907Z,2026-04-20T16:06:26.838182+00:00 +2025-02-26,OpenCode,all,0,,20260417T235907Z,2026-04-20T16:06:26.838182+00:00 +2025-02-26,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T16:06:26.838182+00:00 +2025-02-26,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T16:06:26.838182+00:00 +2025-02-26,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T16:06:26.838182+00:00 +2025-02-26,Codegen,all,0,,20260417T235907Z,2026-04-20T16:06:26.838182+00:00 +2025-02-26,Gru,all,148,,20260417T235907Z,2026-04-20T16:06:26.838182+00:00 +2025-02-26,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T16:06:26.838182+00:00 +2025-02-26,Crush,all,0,,20260417T235907Z,2026-04-20T16:06:26.838182+00:00 +2025-02-26,Sketch,all,0,,20260417T235907Z,2026-04-20T16:06:26.838182+00:00 +2025-02-26,Kilo Code,all,0,,20260417T235907Z,2026-04-20T16:06:26.838182+00:00 +2025-02-27,Claude Code,all,0,,20260417T235907Z,2026-04-20T16:08:38.903129+00:00 +2025-02-27,Copilot,all,0,1,20260417T235907Z,2026-04-20T16:08:38.903129+00:00 +2025-02-27,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-20T16:08:38.903129+00:00 +2025-02-27,Cursor,all,0,,20260417T235907Z,2026-04-20T16:08:38.903129+00:00 +2025-02-27,Aider,all,1300,,20260417T235907Z,2026-04-20T16:08:38.903129+00:00 +2025-02-27,Devin,all,46,,20260417T235907Z,2026-04-20T16:08:38.903129+00:00 +2025-02-27,Lovable,all,3,,20260417T235907Z,2026-04-20T16:08:38.903129+00:00 +2025-02-27,OpenHands,all,69,,20260417T235907Z,2026-04-20T16:08:38.903129+00:00 +2025-02-27,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-20T16:08:38.903129+00:00 +2025-02-27,Coderabbit,all,0,,20260417T235907Z,2026-04-20T16:08:38.903129+00:00 +2025-02-27,ChatGPT,all,0,,20260417T235907Z,2026-04-20T16:08:38.903129+00:00 +2025-02-27,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T16:08:38.903129+00:00 +2025-02-27,Jules (Google),all,3,,20260417T235907Z,2026-04-20T16:08:38.903129+00:00 +2025-02-27,Cline,all,56,,20260417T235907Z,2026-04-20T16:08:38.903129+00:00 +2025-02-27,Sourcery AI,all,0,,20260417T235907Z,2026-04-20T16:08:38.903129+00:00 +2025-02-27,DeepSource,all,12,,20260417T235907Z,2026-04-20T16:08:38.903129+00:00 +2025-02-27,Sweep AI,all,0,,20260417T235907Z,2026-04-20T16:08:38.903129+00:00 +2025-02-27,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T16:08:38.903129+00:00 +2025-02-27,Roo Code,all,0,,20260417T235907Z,2026-04-20T16:08:38.903129+00:00 +2025-02-27,OpenCode,all,0,,20260417T235907Z,2026-04-20T16:08:38.903129+00:00 +2025-02-27,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T16:08:38.903129+00:00 +2025-02-27,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T16:08:38.903129+00:00 +2025-02-27,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T16:08:38.903129+00:00 +2025-02-27,Codegen,all,0,,20260417T235907Z,2026-04-20T16:08:38.903129+00:00 +2025-02-27,Gru,all,0,1,20260417T235907Z,2026-04-20T16:08:38.903129+00:00 +2025-02-27,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T16:08:38.903129+00:00 +2025-02-27,Crush,all,0,,20260417T235907Z,2026-04-20T16:08:38.903129+00:00 +2025-02-27,Sketch,all,0,,20260417T235907Z,2026-04-20T16:08:38.903129+00:00 +2025-02-27,Kilo Code,all,0,,20260417T235907Z,2026-04-20T16:08:38.903129+00:00 +2025-02-28,Claude Code,all,1,,20260417T235907Z,2026-04-20T16:10:52.231558+00:00 +2025-02-28,Copilot,all,0,1,20260417T235907Z,2026-04-20T16:10:52.231558+00:00 +2025-02-28,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-20T16:10:52.231558+00:00 +2025-02-28,Cursor,all,0,,20260417T235907Z,2026-04-20T16:10:52.231558+00:00 +2025-02-28,Aider,all,1573,1,20260417T235907Z,2026-04-20T16:10:52.231558+00:00 +2025-02-28,Devin,all,55,,20260417T235907Z,2026-04-20T16:10:52.231558+00:00 +2025-02-28,Lovable,all,0,,20260417T235907Z,2026-04-20T16:10:52.231558+00:00 +2025-02-28,OpenHands,all,83,,20260417T235907Z,2026-04-20T16:10:52.231558+00:00 +2025-02-28,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-20T16:10:52.231558+00:00 +2025-02-28,Coderabbit,all,1,,20260417T235907Z,2026-04-20T16:10:52.231558+00:00 +2025-02-28,ChatGPT,all,0,,20260417T235907Z,2026-04-20T16:10:52.231558+00:00 +2025-02-28,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T16:10:52.231558+00:00 +2025-02-28,Jules (Google),all,1,,20260417T235907Z,2026-04-20T16:10:52.231558+00:00 +2025-02-28,Cline,all,34,,20260417T235907Z,2026-04-20T16:10:52.231558+00:00 +2025-02-28,Sourcery AI,all,0,1,20260417T235907Z,2026-04-20T16:10:52.231558+00:00 +2025-02-28,DeepSource,all,15,,20260417T235907Z,2026-04-20T16:10:52.231558+00:00 +2025-02-28,Sweep AI,all,0,,20260417T235907Z,2026-04-20T16:10:52.231558+00:00 +2025-02-28,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T16:10:52.231558+00:00 +2025-02-28,Roo Code,all,0,,20260417T235907Z,2026-04-20T16:10:52.231558+00:00 +2025-02-28,OpenCode,all,0,,20260417T235907Z,2026-04-20T16:10:52.231558+00:00 +2025-02-28,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T16:10:52.231558+00:00 +2025-02-28,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T16:10:52.231558+00:00 +2025-02-28,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T16:10:52.231558+00:00 +2025-02-28,Codegen,all,0,,20260417T235907Z,2026-04-20T16:10:52.231558+00:00 +2025-02-28,Gru,all,10,,20260417T235907Z,2026-04-20T16:10:52.231558+00:00 +2025-02-28,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T16:10:52.231558+00:00 +2025-02-28,Crush,all,0,,20260417T235907Z,2026-04-20T16:10:52.231558+00:00 +2025-02-28,Sketch,all,0,,20260417T235907Z,2026-04-20T16:10:52.231558+00:00 +2025-02-28,Kilo Code,all,0,,20260417T235907Z,2026-04-20T16:10:52.231558+00:00 +2025-03-01,Claude Code,all,0,,20260417T235907Z,2026-04-20T16:15:05.768082+00:00 +2025-03-01,Copilot,all,21,,20260417T235907Z,2026-04-20T16:15:05.768082+00:00 +2025-03-01,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-20T16:15:05.768082+00:00 +2025-03-01,Cursor,all,0,,20260417T235907Z,2026-04-20T16:15:05.768082+00:00 +2025-03-01,Aider,all,1447,,20260417T235907Z,2026-04-20T16:15:05.768082+00:00 +2025-03-01,Devin,all,132,,20260417T235907Z,2026-04-20T16:15:05.768082+00:00 +2025-03-01,Lovable,all,0,,20260417T235907Z,2026-04-20T16:15:05.768082+00:00 +2025-03-01,OpenHands,all,105,,20260417T235907Z,2026-04-20T16:15:05.768082+00:00 +2025-03-01,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-20T16:15:05.768082+00:00 +2025-03-01,Coderabbit,all,3,,20260417T235907Z,2026-04-20T16:15:05.768082+00:00 +2025-03-01,ChatGPT,all,4,,20260417T235907Z,2026-04-20T16:15:05.768082+00:00 +2025-03-01,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T16:15:05.768082+00:00 +2025-03-01,Jules (Google),all,0,,20260417T235907Z,2026-04-20T16:15:05.768082+00:00 +2025-03-01,Cline,all,42,,20260417T235907Z,2026-04-20T16:15:05.768082+00:00 +2025-03-01,Sourcery AI,all,0,,20260417T235907Z,2026-04-20T16:15:05.768082+00:00 +2025-03-01,DeepSource,all,9,,20260417T235907Z,2026-04-20T16:15:05.768082+00:00 +2025-03-01,Sweep AI,all,0,,20260417T235907Z,2026-04-20T16:15:05.768082+00:00 +2025-03-01,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T16:15:05.768082+00:00 +2025-03-01,Roo Code,all,0,,20260417T235907Z,2026-04-20T16:15:05.768082+00:00 +2025-03-01,OpenCode,all,0,,20260417T235907Z,2026-04-20T16:15:05.768082+00:00 +2025-03-01,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T16:15:05.768082+00:00 +2025-03-01,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T16:15:05.768082+00:00 +2025-03-01,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T16:15:05.768082+00:00 +2025-03-01,Codegen,all,0,,20260417T235907Z,2026-04-20T16:15:05.768082+00:00 +2025-03-01,Gru,all,0,1,20260417T235907Z,2026-04-20T16:15:05.768082+00:00 +2025-03-01,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T16:15:05.768082+00:00 +2025-03-01,Crush,all,0,,20260417T235907Z,2026-04-20T16:15:05.768082+00:00 +2025-03-01,Sketch,all,0,,20260417T235907Z,2026-04-20T16:15:05.768082+00:00 +2025-03-01,Kilo Code,all,0,,20260417T235907Z,2026-04-20T16:15:05.768082+00:00 +2025-03-02,Claude Code,all,1,,20260417T235907Z,2026-04-20T16:17:18.026015+00:00 +2025-03-02,Copilot,all,2,,20260417T235907Z,2026-04-20T16:17:18.026015+00:00 +2025-03-02,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-20T16:17:18.026015+00:00 +2025-03-02,Cursor,all,0,1,20260417T235907Z,2026-04-20T16:17:18.026015+00:00 +2025-03-02,Aider,all,1081,,20260417T235907Z,2026-04-20T16:17:18.026015+00:00 +2025-03-02,Devin,all,18,,20260417T235907Z,2026-04-20T16:17:18.026015+00:00 +2025-03-02,Lovable,all,0,,20260417T235907Z,2026-04-20T16:17:18.026015+00:00 +2025-03-02,OpenHands,all,48,,20260417T235907Z,2026-04-20T16:17:18.026015+00:00 +2025-03-02,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-20T16:17:18.026015+00:00 +2025-03-02,Coderabbit,all,3,,20260417T235907Z,2026-04-20T16:17:18.026015+00:00 +2025-03-02,ChatGPT,all,2,,20260417T235907Z,2026-04-20T16:17:18.026015+00:00 +2025-03-02,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T16:17:18.026015+00:00 +2025-03-02,Jules (Google),all,0,,20260417T235907Z,2026-04-20T16:17:18.026015+00:00 +2025-03-02,Cline,all,18,,20260417T235907Z,2026-04-20T16:17:18.026015+00:00 +2025-03-02,Sourcery AI,all,0,,20260417T235907Z,2026-04-20T16:17:18.026015+00:00 +2025-03-02,DeepSource,all,8,,20260417T235907Z,2026-04-20T16:17:18.026015+00:00 +2025-03-02,Sweep AI,all,2,,20260417T235907Z,2026-04-20T16:17:18.026015+00:00 +2025-03-02,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T16:17:18.026015+00:00 +2025-03-02,Roo Code,all,0,,20260417T235907Z,2026-04-20T16:17:18.026015+00:00 +2025-03-02,OpenCode,all,0,,20260417T235907Z,2026-04-20T16:17:18.026015+00:00 +2025-03-02,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T16:17:18.026015+00:00 +2025-03-02,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T16:17:18.026015+00:00 +2025-03-02,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T16:17:18.026015+00:00 +2025-03-02,Codegen,all,0,,20260417T235907Z,2026-04-20T16:17:18.026015+00:00 +2025-03-02,Gru,all,0,,20260417T235907Z,2026-04-20T16:17:18.026015+00:00 +2025-03-02,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T16:17:18.026015+00:00 +2025-03-02,Crush,all,0,,20260417T235907Z,2026-04-20T16:17:18.026015+00:00 +2025-03-02,Sketch,all,0,,20260417T235907Z,2026-04-20T16:17:18.026015+00:00 +2025-03-02,Kilo Code,all,0,,20260417T235907Z,2026-04-20T16:17:18.026015+00:00 +2025-03-03,Claude Code,all,1,,20260417T235907Z,2026-04-20T16:20:30.805737+00:00 +2025-03-03,Copilot,all,0,,20260417T235907Z,2026-04-20T16:20:30.805737+00:00 +2025-03-03,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-20T16:20:30.805737+00:00 +2025-03-03,Cursor,all,0,,20260417T235907Z,2026-04-20T16:20:30.805737+00:00 +2025-03-03,Aider,all,1183,,20260417T235907Z,2026-04-20T16:20:30.805737+00:00 +2025-03-03,Devin,all,42,,20260417T235907Z,2026-04-20T16:20:30.805737+00:00 +2025-03-03,Lovable,all,0,,20260417T235907Z,2026-04-20T16:20:30.805737+00:00 +2025-03-03,OpenHands,all,30,,20260417T235907Z,2026-04-20T16:20:30.805737+00:00 +2025-03-03,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-20T16:20:30.805737+00:00 +2025-03-03,Coderabbit,all,1,,20260417T235907Z,2026-04-20T16:20:30.805737+00:00 +2025-03-03,ChatGPT,all,0,,20260417T235907Z,2026-04-20T16:20:30.805737+00:00 +2025-03-03,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T16:20:30.805737+00:00 +2025-03-03,Jules (Google),all,0,,20260417T235907Z,2026-04-20T16:20:30.805737+00:00 +2025-03-03,Cline,all,20,,20260417T235907Z,2026-04-20T16:20:30.805737+00:00 +2025-03-03,Sourcery AI,all,0,,20260417T235907Z,2026-04-20T16:20:30.805737+00:00 +2025-03-03,DeepSource,all,9,,20260417T235907Z,2026-04-20T16:20:30.805737+00:00 +2025-03-03,Sweep AI,all,2,,20260417T235907Z,2026-04-20T16:20:30.805737+00:00 +2025-03-03,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T16:20:30.805737+00:00 +2025-03-03,Roo Code,all,0,,20260417T235907Z,2026-04-20T16:20:30.805737+00:00 +2025-03-03,OpenCode,all,0,,20260417T235907Z,2026-04-20T16:20:30.805737+00:00 +2025-03-03,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T16:20:30.805737+00:00 +2025-03-03,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T16:20:30.805737+00:00 +2025-03-03,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T16:20:30.805737+00:00 +2025-03-03,Codegen,all,0,,20260417T235907Z,2026-04-20T16:20:30.805737+00:00 +2025-03-03,Gru,all,365,,20260417T235907Z,2026-04-20T16:20:30.805737+00:00 +2025-03-03,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T16:20:30.805737+00:00 +2025-03-03,Crush,all,0,,20260417T235907Z,2026-04-20T16:20:30.805737+00:00 +2025-03-03,Sketch,all,0,,20260417T235907Z,2026-04-20T16:20:30.805737+00:00 +2025-03-03,Kilo Code,all,0,,20260417T235907Z,2026-04-20T16:20:30.805737+00:00 +2025-03-04,Claude Code,all,0,,20260417T235907Z,2026-04-20T16:22:42.376575+00:00 +2025-03-04,Copilot,all,0,,20260417T235907Z,2026-04-20T16:22:42.376575+00:00 +2025-03-04,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-20T16:22:42.376575+00:00 +2025-03-04,Cursor,all,0,,20260417T235907Z,2026-04-20T16:22:42.376575+00:00 +2025-03-04,Aider,all,1578,,20260417T235907Z,2026-04-20T16:22:42.376575+00:00 +2025-03-04,Devin,all,45,1,20260417T235907Z,2026-04-20T16:22:42.376575+00:00 +2025-03-04,Lovable,all,0,,20260417T235907Z,2026-04-20T16:22:42.376575+00:00 +2025-03-04,OpenHands,all,43,,20260417T235907Z,2026-04-20T16:22:42.376575+00:00 +2025-03-04,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-20T16:22:42.376575+00:00 +2025-03-04,Coderabbit,all,2,,20260417T235907Z,2026-04-20T16:22:42.376575+00:00 +2025-03-04,ChatGPT,all,0,,20260417T235907Z,2026-04-20T16:22:42.376575+00:00 +2025-03-04,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T16:22:42.376575+00:00 +2025-03-04,Jules (Google),all,0,,20260417T235907Z,2026-04-20T16:22:42.376575+00:00 +2025-03-04,Cline,all,35,,20260417T235907Z,2026-04-20T16:22:42.376575+00:00 +2025-03-04,Sourcery AI,all,0,,20260417T235907Z,2026-04-20T16:22:42.376575+00:00 +2025-03-04,DeepSource,all,19,,20260417T235907Z,2026-04-20T16:22:42.376575+00:00 +2025-03-04,Sweep AI,all,0,,20260417T235907Z,2026-04-20T16:22:42.376575+00:00 +2025-03-04,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T16:22:42.376575+00:00 +2025-03-04,Roo Code,all,0,,20260417T235907Z,2026-04-20T16:22:42.376575+00:00 +2025-03-04,OpenCode,all,0,,20260417T235907Z,2026-04-20T16:22:42.376575+00:00 +2025-03-04,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T16:22:42.376575+00:00 +2025-03-04,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T16:22:42.376575+00:00 +2025-03-04,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T16:22:42.376575+00:00 +2025-03-04,Codegen,all,0,,20260417T235907Z,2026-04-20T16:22:42.376575+00:00 +2025-03-04,Gru,all,10,,20260417T235907Z,2026-04-20T16:22:42.376575+00:00 +2025-03-04,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T16:22:42.376575+00:00 +2025-03-04,Crush,all,0,,20260417T235907Z,2026-04-20T16:22:42.376575+00:00 +2025-03-04,Sketch,all,0,,20260417T235907Z,2026-04-20T16:22:42.376575+00:00 +2025-03-04,Kilo Code,all,0,,20260417T235907Z,2026-04-20T16:22:42.376575+00:00 +2025-03-05,Claude Code,all,2,,20260417T235907Z,2026-04-20T16:24:54.617013+00:00 +2025-03-05,Copilot,all,0,,20260417T235907Z,2026-04-20T16:24:54.617013+00:00 +2025-03-05,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-20T16:24:54.617013+00:00 +2025-03-05,Cursor,all,0,,20260417T235907Z,2026-04-20T16:24:54.617013+00:00 +2025-03-05,Aider,all,1873,,20260417T235907Z,2026-04-20T16:24:54.617013+00:00 +2025-03-05,Devin,all,60,,20260417T235907Z,2026-04-20T16:24:54.617013+00:00 +2025-03-05,Lovable,all,0,,20260417T235907Z,2026-04-20T16:24:54.617013+00:00 +2025-03-05,OpenHands,all,34,,20260417T235907Z,2026-04-20T16:24:54.617013+00:00 +2025-03-05,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-20T16:24:54.617013+00:00 +2025-03-05,Coderabbit,all,1,,20260417T235907Z,2026-04-20T16:24:54.617013+00:00 +2025-03-05,ChatGPT,all,2,,20260417T235907Z,2026-04-20T16:24:54.617013+00:00 +2025-03-05,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T16:24:54.617013+00:00 +2025-03-05,Jules (Google),all,9,,20260417T235907Z,2026-04-20T16:24:54.617013+00:00 +2025-03-05,Cline,all,30,,20260417T235907Z,2026-04-20T16:24:54.617013+00:00 +2025-03-05,Sourcery AI,all,0,1,20260417T235907Z,2026-04-20T16:24:54.617013+00:00 +2025-03-05,DeepSource,all,16,,20260417T235907Z,2026-04-20T16:24:54.617013+00:00 +2025-03-05,Sweep AI,all,0,,20260417T235907Z,2026-04-20T16:24:54.617013+00:00 +2025-03-05,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T16:24:54.617013+00:00 +2025-03-05,Roo Code,all,0,,20260417T235907Z,2026-04-20T16:24:54.617013+00:00 +2025-03-05,OpenCode,all,0,,20260417T235907Z,2026-04-20T16:24:54.617013+00:00 +2025-03-05,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T16:24:54.617013+00:00 +2025-03-05,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T16:24:54.617013+00:00 +2025-03-05,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T16:24:54.617013+00:00 +2025-03-05,Codegen,all,0,,20260417T235907Z,2026-04-20T16:24:54.617013+00:00 +2025-03-05,Gru,all,0,,20260417T235907Z,2026-04-20T16:24:54.617013+00:00 +2025-03-05,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T16:24:54.617013+00:00 +2025-03-05,Crush,all,0,,20260417T235907Z,2026-04-20T16:24:54.617013+00:00 +2025-03-05,Sketch,all,0,,20260417T235907Z,2026-04-20T16:24:54.617013+00:00 +2025-03-05,Kilo Code,all,0,,20260417T235907Z,2026-04-20T16:24:54.617013+00:00 +2025-03-06,Claude Code,all,0,,20260417T235907Z,2026-04-20T16:27:07.505191+00:00 +2025-03-06,Copilot,all,0,,20260417T235907Z,2026-04-20T16:27:07.505191+00:00 +2025-03-06,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-20T16:27:07.505191+00:00 +2025-03-06,Cursor,all,0,1,20260417T235907Z,2026-04-20T16:27:07.505191+00:00 +2025-03-06,Aider,all,2977,,20260417T235907Z,2026-04-20T16:27:07.505191+00:00 +2025-03-06,Devin,all,52,,20260417T235907Z,2026-04-20T16:27:07.505191+00:00 +2025-03-06,Lovable,all,0,,20260417T235907Z,2026-04-20T16:27:07.505191+00:00 +2025-03-06,OpenHands,all,49,,20260417T235907Z,2026-04-20T16:27:07.505191+00:00 +2025-03-06,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-20T16:27:07.505191+00:00 +2025-03-06,Coderabbit,all,2,,20260417T235907Z,2026-04-20T16:27:07.505191+00:00 +2025-03-06,ChatGPT,all,0,,20260417T235907Z,2026-04-20T16:27:07.505191+00:00 +2025-03-06,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T16:27:07.505191+00:00 +2025-03-06,Jules (Google),all,21,,20260417T235907Z,2026-04-20T16:27:07.505191+00:00 +2025-03-06,Cline,all,34,1,20260417T235907Z,2026-04-20T16:27:07.505191+00:00 +2025-03-06,Sourcery AI,all,0,,20260417T235907Z,2026-04-20T16:27:07.505191+00:00 +2025-03-06,DeepSource,all,5,,20260417T235907Z,2026-04-20T16:27:07.505191+00:00 +2025-03-06,Sweep AI,all,2,,20260417T235907Z,2026-04-20T16:27:07.505191+00:00 +2025-03-06,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T16:27:07.505191+00:00 +2025-03-06,Roo Code,all,0,,20260417T235907Z,2026-04-20T16:27:07.505191+00:00 +2025-03-06,OpenCode,all,0,,20260417T235907Z,2026-04-20T16:27:07.505191+00:00 +2025-03-06,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T16:27:07.505191+00:00 +2025-03-06,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T16:27:07.505191+00:00 +2025-03-06,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T16:27:07.505191+00:00 +2025-03-06,Codegen,all,0,,20260417T235907Z,2026-04-20T16:27:07.505191+00:00 +2025-03-06,Gru,all,20,,20260417T235907Z,2026-04-20T16:27:07.505191+00:00 +2025-03-06,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T16:27:07.505191+00:00 +2025-03-06,Crush,all,0,,20260417T235907Z,2026-04-20T16:27:07.505191+00:00 +2025-03-06,Sketch,all,0,,20260417T235907Z,2026-04-20T16:27:07.505191+00:00 +2025-03-06,Kilo Code,all,0,,20260417T235907Z,2026-04-20T16:27:07.505191+00:00 +2025-03-07,Claude Code,all,1,,20260417T235907Z,2026-04-20T16:30:19.011836+00:00 +2025-03-07,Copilot,all,0,,20260417T235907Z,2026-04-20T16:30:19.011836+00:00 +2025-03-07,Copilot SWE Agent,all,5,,20260417T235907Z,2026-04-20T16:30:19.011836+00:00 +2025-03-07,Cursor,all,0,,20260417T235907Z,2026-04-20T16:30:19.011836+00:00 +2025-03-07,Aider,all,1840,,20260417T235907Z,2026-04-20T16:30:19.011836+00:00 +2025-03-07,Devin,all,47,1,20260417T235907Z,2026-04-20T16:30:19.011836+00:00 +2025-03-07,Lovable,all,0,,20260417T235907Z,2026-04-20T16:30:19.011836+00:00 +2025-03-07,OpenHands,all,112,,20260417T235907Z,2026-04-20T16:30:19.011836+00:00 +2025-03-07,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-20T16:30:19.011836+00:00 +2025-03-07,Coderabbit,all,1,,20260417T235907Z,2026-04-20T16:30:19.011836+00:00 +2025-03-07,ChatGPT,all,0,,20260417T235907Z,2026-04-20T16:30:19.011836+00:00 +2025-03-07,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T16:30:19.011836+00:00 +2025-03-07,Jules (Google),all,16,,20260417T235907Z,2026-04-20T16:30:19.011836+00:00 +2025-03-07,Cline,all,1,,20260417T235907Z,2026-04-20T16:30:19.011836+00:00 +2025-03-07,Sourcery AI,all,0,,20260417T235907Z,2026-04-20T16:30:19.011836+00:00 +2025-03-07,DeepSource,all,12,,20260417T235907Z,2026-04-20T16:30:19.011836+00:00 +2025-03-07,Sweep AI,all,7,,20260417T235907Z,2026-04-20T16:30:19.011836+00:00 +2025-03-07,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T16:30:19.011836+00:00 +2025-03-07,Roo Code,all,0,,20260417T235907Z,2026-04-20T16:30:19.011836+00:00 +2025-03-07,OpenCode,all,0,,20260417T235907Z,2026-04-20T16:30:19.011836+00:00 +2025-03-07,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T16:30:19.011836+00:00 +2025-03-07,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T16:30:19.011836+00:00 +2025-03-07,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T16:30:19.011836+00:00 +2025-03-07,Codegen,all,0,,20260417T235907Z,2026-04-20T16:30:19.011836+00:00 +2025-03-07,Gru,all,2,,20260417T235907Z,2026-04-20T16:30:19.011836+00:00 +2025-03-07,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T16:30:19.011836+00:00 +2025-03-07,Crush,all,0,,20260417T235907Z,2026-04-20T16:30:19.011836+00:00 +2025-03-07,Sketch,all,0,,20260417T235907Z,2026-04-20T16:30:19.011836+00:00 +2025-03-07,Kilo Code,all,0,,20260417T235907Z,2026-04-20T16:30:19.011836+00:00 +2025-03-08,Claude Code,all,22,,20260417T235907Z,2026-04-20T16:32:30.528684+00:00 +2025-03-08,Copilot,all,0,,20260417T235907Z,2026-04-20T16:32:30.528684+00:00 +2025-03-08,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-20T16:32:30.528684+00:00 +2025-03-08,Cursor,all,0,,20260417T235907Z,2026-04-20T16:32:30.528684+00:00 +2025-03-08,Aider,all,2758,,20260417T235907Z,2026-04-20T16:32:30.528684+00:00 +2025-03-08,Devin,all,38,,20260417T235907Z,2026-04-20T16:32:30.528684+00:00 +2025-03-08,Lovable,all,0,,20260417T235907Z,2026-04-20T16:32:30.528684+00:00 +2025-03-08,OpenHands,all,117,,20260417T235907Z,2026-04-20T16:32:30.528684+00:00 +2025-03-08,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-20T16:32:30.528684+00:00 +2025-03-08,Coderabbit,all,4,,20260417T235907Z,2026-04-20T16:32:30.528684+00:00 +2025-03-08,ChatGPT,all,0,,20260417T235907Z,2026-04-20T16:32:30.528684+00:00 +2025-03-08,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T16:32:30.528684+00:00 +2025-03-08,Jules (Google),all,3,,20260417T235907Z,2026-04-20T16:32:30.528684+00:00 +2025-03-08,Cline,all,33,,20260417T235907Z,2026-04-20T16:32:30.528684+00:00 +2025-03-08,Sourcery AI,all,0,,20260417T235907Z,2026-04-20T16:32:30.528684+00:00 +2025-03-08,DeepSource,all,32,,20260417T235907Z,2026-04-20T16:32:30.528684+00:00 +2025-03-08,Sweep AI,all,4,,20260417T235907Z,2026-04-20T16:32:30.528684+00:00 +2025-03-08,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T16:32:30.528684+00:00 +2025-03-08,Roo Code,all,0,,20260417T235907Z,2026-04-20T16:32:30.528684+00:00 +2025-03-08,OpenCode,all,0,,20260417T235907Z,2026-04-20T16:32:30.528684+00:00 +2025-03-08,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T16:32:30.528684+00:00 +2025-03-08,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T16:32:30.528684+00:00 +2025-03-08,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T16:32:30.528684+00:00 +2025-03-08,Codegen,all,0,,20260417T235907Z,2026-04-20T16:32:30.528684+00:00 +2025-03-08,Gru,all,0,,20260417T235907Z,2026-04-20T16:32:30.528684+00:00 +2025-03-08,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T16:32:30.528684+00:00 +2025-03-08,Crush,all,0,,20260417T235907Z,2026-04-20T16:32:30.528684+00:00 +2025-03-08,Sketch,all,0,,20260417T235907Z,2026-04-20T16:32:30.528684+00:00 +2025-03-08,Kilo Code,all,0,,20260417T235907Z,2026-04-20T16:32:30.528684+00:00 +2025-03-09,Claude Code,all,20,,20260417T235907Z,2026-04-20T16:34:42.173737+00:00 +2025-03-09,Copilot,all,1,,20260417T235907Z,2026-04-20T16:34:42.173737+00:00 +2025-03-09,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-20T16:34:42.173737+00:00 +2025-03-09,Cursor,all,0,,20260417T235907Z,2026-04-20T16:34:42.173737+00:00 +2025-03-09,Aider,all,2067,,20260417T235907Z,2026-04-20T16:34:42.173737+00:00 +2025-03-09,Devin,all,26,,20260417T235907Z,2026-04-20T16:34:42.173737+00:00 +2025-03-09,Lovable,all,0,,20260417T235907Z,2026-04-20T16:34:42.173737+00:00 +2025-03-09,OpenHands,all,45,,20260417T235907Z,2026-04-20T16:34:42.173737+00:00 +2025-03-09,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-20T16:34:42.173737+00:00 +2025-03-09,Coderabbit,all,0,,20260417T235907Z,2026-04-20T16:34:42.173737+00:00 +2025-03-09,ChatGPT,all,0,,20260417T235907Z,2026-04-20T16:34:42.173737+00:00 +2025-03-09,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T16:34:42.173737+00:00 +2025-03-09,Jules (Google),all,0,,20260417T235907Z,2026-04-20T16:34:42.173737+00:00 +2025-03-09,Cline,all,28,,20260417T235907Z,2026-04-20T16:34:42.173737+00:00 +2025-03-09,Sourcery AI,all,0,,20260417T235907Z,2026-04-20T16:34:42.173737+00:00 +2025-03-09,DeepSource,all,16,,20260417T235907Z,2026-04-20T16:34:42.173737+00:00 +2025-03-09,Sweep AI,all,6,,20260417T235907Z,2026-04-20T16:34:42.173737+00:00 +2025-03-09,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T16:34:42.173737+00:00 +2025-03-09,Roo Code,all,0,,20260417T235907Z,2026-04-20T16:34:42.173737+00:00 +2025-03-09,OpenCode,all,0,,20260417T235907Z,2026-04-20T16:34:42.173737+00:00 +2025-03-09,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T16:34:42.173737+00:00 +2025-03-09,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T16:34:42.173737+00:00 +2025-03-09,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T16:34:42.173737+00:00 +2025-03-09,Codegen,all,0,,20260417T235907Z,2026-04-20T16:34:42.173737+00:00 +2025-03-09,Gru,all,70,,20260417T235907Z,2026-04-20T16:34:42.173737+00:00 +2025-03-09,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T16:34:42.173737+00:00 +2025-03-09,Crush,all,0,,20260417T235907Z,2026-04-20T16:34:42.173737+00:00 +2025-03-09,Sketch,all,0,,20260417T235907Z,2026-04-20T16:34:42.173737+00:00 +2025-03-09,Kilo Code,all,0,,20260417T235907Z,2026-04-20T16:34:42.173737+00:00 +2025-03-10,Claude Code,all,27,,20260417T235907Z,2026-04-20T16:36:53.832352+00:00 +2025-03-10,Copilot,all,2,,20260417T235907Z,2026-04-20T16:36:53.832352+00:00 +2025-03-10,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-20T16:36:53.832352+00:00 +2025-03-10,Cursor,all,0,,20260417T235907Z,2026-04-20T16:36:53.832352+00:00 +2025-03-10,Aider,all,1403,,20260417T235907Z,2026-04-20T16:36:53.832352+00:00 +2025-03-10,Devin,all,39,,20260417T235907Z,2026-04-20T16:36:53.832352+00:00 +2025-03-10,Lovable,all,0,,20260417T235907Z,2026-04-20T16:36:53.832352+00:00 +2025-03-10,OpenHands,all,94,,20260417T235907Z,2026-04-20T16:36:53.832352+00:00 +2025-03-10,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-20T16:36:53.832352+00:00 +2025-03-10,Coderabbit,all,0,,20260417T235907Z,2026-04-20T16:36:53.832352+00:00 +2025-03-10,ChatGPT,all,0,,20260417T235907Z,2026-04-20T16:36:53.832352+00:00 +2025-03-10,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T16:36:53.832352+00:00 +2025-03-10,Jules (Google),all,2,,20260417T235907Z,2026-04-20T16:36:53.832352+00:00 +2025-03-10,Cline,all,105,,20260417T235907Z,2026-04-20T16:36:53.832352+00:00 +2025-03-10,Sourcery AI,all,0,,20260417T235907Z,2026-04-20T16:36:53.832352+00:00 +2025-03-10,DeepSource,all,7,,20260417T235907Z,2026-04-20T16:36:53.832352+00:00 +2025-03-10,Sweep AI,all,1,,20260417T235907Z,2026-04-20T16:36:53.832352+00:00 +2025-03-10,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T16:36:53.832352+00:00 +2025-03-10,Roo Code,all,0,,20260417T235907Z,2026-04-20T16:36:53.832352+00:00 +2025-03-10,OpenCode,all,0,,20260417T235907Z,2026-04-20T16:36:53.832352+00:00 +2025-03-10,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T16:36:53.832352+00:00 +2025-03-10,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T16:36:53.832352+00:00 +2025-03-10,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T16:36:53.832352+00:00 +2025-03-10,Codegen,all,0,,20260417T235907Z,2026-04-20T16:36:53.832352+00:00 +2025-03-10,Gru,all,0,,20260417T235907Z,2026-04-20T16:36:53.832352+00:00 +2025-03-10,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T16:36:53.832352+00:00 +2025-03-10,Crush,all,0,,20260417T235907Z,2026-04-20T16:36:53.832352+00:00 +2025-03-10,Sketch,all,0,,20260417T235907Z,2026-04-20T16:36:53.832352+00:00 +2025-03-10,Kilo Code,all,0,,20260417T235907Z,2026-04-20T16:36:53.832352+00:00 +2025-03-11,Claude Code,all,3,,20260417T235907Z,2026-04-20T16:39:05.312577+00:00 +2025-03-11,Copilot,all,0,1,20260417T235907Z,2026-04-20T16:39:05.312577+00:00 +2025-03-11,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-20T16:39:05.312577+00:00 +2025-03-11,Cursor,all,0,,20260417T235907Z,2026-04-20T16:39:05.312577+00:00 +2025-03-11,Aider,all,2202,,20260417T235907Z,2026-04-20T16:39:05.312577+00:00 +2025-03-11,Devin,all,40,,20260417T235907Z,2026-04-20T16:39:05.312577+00:00 +2025-03-11,Lovable,all,0,,20260417T235907Z,2026-04-20T16:39:05.312577+00:00 +2025-03-11,OpenHands,all,70,,20260417T235907Z,2026-04-20T16:39:05.312577+00:00 +2025-03-11,Gemini Code Assist,all,6,,20260417T235907Z,2026-04-20T16:39:05.312577+00:00 +2025-03-11,Coderabbit,all,0,,20260417T235907Z,2026-04-20T16:39:05.312577+00:00 +2025-03-11,ChatGPT,all,0,,20260417T235907Z,2026-04-20T16:39:05.312577+00:00 +2025-03-11,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T16:39:05.312577+00:00 +2025-03-11,Jules (Google),all,3,,20260417T235907Z,2026-04-20T16:39:05.312577+00:00 +2025-03-11,Cline,all,26,,20260417T235907Z,2026-04-20T16:39:05.312577+00:00 +2025-03-11,Sourcery AI,all,0,,20260417T235907Z,2026-04-20T16:39:05.312577+00:00 +2025-03-11,DeepSource,all,11,,20260417T235907Z,2026-04-20T16:39:05.312577+00:00 +2025-03-11,Sweep AI,all,0,,20260417T235907Z,2026-04-20T16:39:05.312577+00:00 +2025-03-11,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T16:39:05.312577+00:00 +2025-03-11,Roo Code,all,0,,20260417T235907Z,2026-04-20T16:39:05.312577+00:00 +2025-03-11,OpenCode,all,0,,20260417T235907Z,2026-04-20T16:39:05.312577+00:00 +2025-03-11,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T16:39:05.312577+00:00 +2025-03-11,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T16:39:05.312577+00:00 +2025-03-11,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T16:39:05.312577+00:00 +2025-03-11,Codegen,all,0,,20260417T235907Z,2026-04-20T16:39:05.312577+00:00 +2025-03-11,Gru,all,66,,20260417T235907Z,2026-04-20T16:39:05.312577+00:00 +2025-03-11,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T16:39:05.312577+00:00 +2025-03-11,Crush,all,0,,20260417T235907Z,2026-04-20T16:39:05.312577+00:00 +2025-03-11,Sketch,all,0,,20260417T235907Z,2026-04-20T16:39:05.312577+00:00 +2025-03-11,Kilo Code,all,0,,20260417T235907Z,2026-04-20T16:39:05.312577+00:00 +2025-03-12,Claude Code,all,1,,20260417T235907Z,2026-04-20T16:41:17.724759+00:00 +2025-03-12,Copilot,all,0,,20260417T235907Z,2026-04-20T16:41:17.724759+00:00 +2025-03-12,Copilot SWE Agent,all,0,1,20260417T235907Z,2026-04-20T16:41:17.724759+00:00 +2025-03-12,Cursor,all,0,,20260417T235907Z,2026-04-20T16:41:17.724759+00:00 +2025-03-12,Aider,all,4773,,20260417T235907Z,2026-04-20T16:41:17.724759+00:00 +2025-03-12,Devin,all,57,,20260417T235907Z,2026-04-20T16:41:17.724759+00:00 +2025-03-12,Lovable,all,0,,20260417T235907Z,2026-04-20T16:41:17.724759+00:00 +2025-03-12,OpenHands,all,117,,20260417T235907Z,2026-04-20T16:41:17.724759+00:00 +2025-03-12,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-20T16:41:17.724759+00:00 +2025-03-12,Coderabbit,all,2,,20260417T235907Z,2026-04-20T16:41:17.724759+00:00 +2025-03-12,ChatGPT,all,0,,20260417T235907Z,2026-04-20T16:41:17.724759+00:00 +2025-03-12,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T16:41:17.724759+00:00 +2025-03-12,Jules (Google),all,4,1,20260417T235907Z,2026-04-20T16:41:17.724759+00:00 +2025-03-12,Cline,all,83,,20260417T235907Z,2026-04-20T16:41:17.724759+00:00 +2025-03-12,Sourcery AI,all,0,,20260417T235907Z,2026-04-20T16:41:17.724759+00:00 +2025-03-12,DeepSource,all,6,,20260417T235907Z,2026-04-20T16:41:17.724759+00:00 +2025-03-12,Sweep AI,all,0,,20260417T235907Z,2026-04-20T16:41:17.724759+00:00 +2025-03-12,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T16:41:17.724759+00:00 +2025-03-12,Roo Code,all,0,,20260417T235907Z,2026-04-20T16:41:17.724759+00:00 +2025-03-12,OpenCode,all,0,,20260417T235907Z,2026-04-20T16:41:17.724759+00:00 +2025-03-12,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T16:41:17.724759+00:00 +2025-03-12,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T16:41:17.724759+00:00 +2025-03-12,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T16:41:17.724759+00:00 +2025-03-12,Codegen,all,12,,20260417T235907Z,2026-04-20T16:41:17.724759+00:00 +2025-03-12,Gru,all,0,,20260417T235907Z,2026-04-20T16:41:17.724759+00:00 +2025-03-12,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T16:41:17.724759+00:00 +2025-03-12,Crush,all,0,,20260417T235907Z,2026-04-20T16:41:17.724759+00:00 +2025-03-12,Sketch,all,0,,20260417T235907Z,2026-04-20T16:41:17.724759+00:00 +2025-03-12,Kilo Code,all,0,,20260417T235907Z,2026-04-20T16:41:17.724759+00:00 +2025-03-13,Claude Code,all,50,,20260417T235907Z,2026-04-20T16:44:29.896117+00:00 +2025-03-13,Copilot,all,0,1,20260417T235907Z,2026-04-20T16:44:29.896117+00:00 +2025-03-13,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-20T16:44:29.896117+00:00 +2025-03-13,Cursor,all,0,,20260417T235907Z,2026-04-20T16:44:29.896117+00:00 +2025-03-13,Aider,all,2172,,20260417T235907Z,2026-04-20T16:44:29.896117+00:00 +2025-03-13,Devin,all,25,,20260417T235907Z,2026-04-20T16:44:29.896117+00:00 +2025-03-13,Lovable,all,0,,20260417T235907Z,2026-04-20T16:44:29.896117+00:00 +2025-03-13,OpenHands,all,111,,20260417T235907Z,2026-04-20T16:44:29.896117+00:00 +2025-03-13,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-20T16:44:29.896117+00:00 +2025-03-13,Coderabbit,all,6,,20260417T235907Z,2026-04-20T16:44:29.896117+00:00 +2025-03-13,ChatGPT,all,0,,20260417T235907Z,2026-04-20T16:44:29.896117+00:00 +2025-03-13,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T16:44:29.896117+00:00 +2025-03-13,Jules (Google),all,4,,20260417T235907Z,2026-04-20T16:44:29.896117+00:00 +2025-03-13,Cline,all,113,,20260417T235907Z,2026-04-20T16:44:29.896117+00:00 +2025-03-13,Sourcery AI,all,0,,20260417T235907Z,2026-04-20T16:44:29.896117+00:00 +2025-03-13,DeepSource,all,16,,20260417T235907Z,2026-04-20T16:44:29.896117+00:00 +2025-03-13,Sweep AI,all,0,,20260417T235907Z,2026-04-20T16:44:29.896117+00:00 +2025-03-13,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T16:44:29.896117+00:00 +2025-03-13,Roo Code,all,0,,20260417T235907Z,2026-04-20T16:44:29.896117+00:00 +2025-03-13,OpenCode,all,0,,20260417T235907Z,2026-04-20T16:44:29.896117+00:00 +2025-03-13,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T16:44:29.896117+00:00 +2025-03-13,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T16:44:29.896117+00:00 +2025-03-13,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T16:44:29.896117+00:00 +2025-03-13,Codegen,all,6,,20260417T235907Z,2026-04-20T16:44:29.896117+00:00 +2025-03-13,Gru,all,0,,20260417T235907Z,2026-04-20T16:44:29.896117+00:00 +2025-03-13,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T16:44:29.896117+00:00 +2025-03-13,Crush,all,0,,20260417T235907Z,2026-04-20T16:44:29.896117+00:00 +2025-03-13,Sketch,all,0,,20260417T235907Z,2026-04-20T16:44:29.896117+00:00 +2025-03-13,Kilo Code,all,0,,20260417T235907Z,2026-04-20T16:44:29.896117+00:00 +2025-03-14,Claude Code,all,36,,20260417T235907Z,2026-04-20T16:46:41.660081+00:00 +2025-03-14,Copilot,all,0,1,20260417T235907Z,2026-04-20T16:46:41.660081+00:00 +2025-03-14,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-20T16:46:41.660081+00:00 +2025-03-14,Cursor,all,0,,20260417T235907Z,2026-04-20T16:46:41.660081+00:00 +2025-03-14,Aider,all,2552,,20260417T235907Z,2026-04-20T16:46:41.660081+00:00 +2025-03-14,Devin,all,61,,20260417T235907Z,2026-04-20T16:46:41.660081+00:00 +2025-03-14,Lovable,all,0,,20260417T235907Z,2026-04-20T16:46:41.660081+00:00 +2025-03-14,OpenHands,all,136,,20260417T235907Z,2026-04-20T16:46:41.660081+00:00 +2025-03-14,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-20T16:46:41.660081+00:00 +2025-03-14,Coderabbit,all,2,,20260417T235907Z,2026-04-20T16:46:41.660081+00:00 +2025-03-14,ChatGPT,all,1,,20260417T235907Z,2026-04-20T16:46:41.660081+00:00 +2025-03-14,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T16:46:41.660081+00:00 +2025-03-14,Jules (Google),all,9,,20260417T235907Z,2026-04-20T16:46:41.660081+00:00 +2025-03-14,Cline,all,76,,20260417T235907Z,2026-04-20T16:46:41.660081+00:00 +2025-03-14,Sourcery AI,all,0,,20260417T235907Z,2026-04-20T16:46:41.660081+00:00 +2025-03-14,DeepSource,all,10,,20260417T235907Z,2026-04-20T16:46:41.660081+00:00 +2025-03-14,Sweep AI,all,0,,20260417T235907Z,2026-04-20T16:46:41.660081+00:00 +2025-03-14,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T16:46:41.660081+00:00 +2025-03-14,Roo Code,all,0,,20260417T235907Z,2026-04-20T16:46:41.660081+00:00 +2025-03-14,OpenCode,all,0,,20260417T235907Z,2026-04-20T16:46:41.660081+00:00 +2025-03-14,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T16:46:41.660081+00:00 +2025-03-14,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T16:46:41.660081+00:00 +2025-03-14,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T16:46:41.660081+00:00 +2025-03-14,Codegen,all,0,,20260417T235907Z,2026-04-20T16:46:41.660081+00:00 +2025-03-14,Gru,all,63,,20260417T235907Z,2026-04-20T16:46:41.660081+00:00 +2025-03-14,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T16:46:41.660081+00:00 +2025-03-14,Crush,all,0,,20260417T235907Z,2026-04-20T16:46:41.660081+00:00 +2025-03-14,Sketch,all,0,,20260417T235907Z,2026-04-20T16:46:41.660081+00:00 +2025-03-14,Kilo Code,all,0,,20260417T235907Z,2026-04-20T16:46:41.660081+00:00 +2025-03-15,Claude Code,all,0,,20260417T235907Z,2026-04-20T16:48:54.029166+00:00 +2025-03-15,Copilot,all,0,,20260417T235907Z,2026-04-20T16:48:54.029166+00:00 +2025-03-15,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-20T16:48:54.029166+00:00 +2025-03-15,Cursor,all,0,,20260417T235907Z,2026-04-20T16:48:54.029166+00:00 +2025-03-15,Aider,all,2091,,20260417T235907Z,2026-04-20T16:48:54.029166+00:00 +2025-03-15,Devin,all,21,,20260417T235907Z,2026-04-20T16:48:54.029166+00:00 +2025-03-15,Lovable,all,0,,20260417T235907Z,2026-04-20T16:48:54.029166+00:00 +2025-03-15,OpenHands,all,122,,20260417T235907Z,2026-04-20T16:48:54.029166+00:00 +2025-03-15,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-20T16:48:54.029166+00:00 +2025-03-15,Coderabbit,all,2,,20260417T235907Z,2026-04-20T16:48:54.029166+00:00 +2025-03-15,ChatGPT,all,0,,20260417T235907Z,2026-04-20T16:48:54.029166+00:00 +2025-03-15,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T16:48:54.029166+00:00 +2025-03-15,Jules (Google),all,5,,20260417T235907Z,2026-04-20T16:48:54.029166+00:00 +2025-03-15,Cline,all,60,,20260417T235907Z,2026-04-20T16:48:54.029166+00:00 +2025-03-15,Sourcery AI,all,0,,20260417T235907Z,2026-04-20T16:48:54.029166+00:00 +2025-03-15,DeepSource,all,7,,20260417T235907Z,2026-04-20T16:48:54.029166+00:00 +2025-03-15,Sweep AI,all,12,,20260417T235907Z,2026-04-20T16:48:54.029166+00:00 +2025-03-15,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T16:48:54.029166+00:00 +2025-03-15,Roo Code,all,0,,20260417T235907Z,2026-04-20T16:48:54.029166+00:00 +2025-03-15,OpenCode,all,0,,20260417T235907Z,2026-04-20T16:48:54.029166+00:00 +2025-03-15,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T16:48:54.029166+00:00 +2025-03-15,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T16:48:54.029166+00:00 +2025-03-15,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T16:48:54.029166+00:00 +2025-03-15,Codegen,all,0,,20260417T235907Z,2026-04-20T16:48:54.029166+00:00 +2025-03-15,Gru,all,0,,20260417T235907Z,2026-04-20T16:48:54.029166+00:00 +2025-03-15,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T16:48:54.029166+00:00 +2025-03-15,Crush,all,0,,20260417T235907Z,2026-04-20T16:48:54.029166+00:00 +2025-03-15,Sketch,all,0,,20260417T235907Z,2026-04-20T16:48:54.029166+00:00 +2025-03-15,Kilo Code,all,0,,20260417T235907Z,2026-04-20T16:48:54.029166+00:00 +2025-03-16,Claude Code,all,1,,20260417T235907Z,2026-04-20T16:51:06.145819+00:00 +2025-03-16,Copilot,all,0,,20260417T235907Z,2026-04-20T16:51:06.145819+00:00 +2025-03-16,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-20T16:51:06.145819+00:00 +2025-03-16,Cursor,all,0,,20260417T235907Z,2026-04-20T16:51:06.145819+00:00 +2025-03-16,Aider,all,2171,,20260417T235907Z,2026-04-20T16:51:06.145819+00:00 +2025-03-16,Devin,all,4,,20260417T235907Z,2026-04-20T16:51:06.145819+00:00 +2025-03-16,Lovable,all,0,,20260417T235907Z,2026-04-20T16:51:06.145819+00:00 +2025-03-16,OpenHands,all,32,,20260417T235907Z,2026-04-20T16:51:06.145819+00:00 +2025-03-16,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-20T16:51:06.145819+00:00 +2025-03-16,Coderabbit,all,5,,20260417T235907Z,2026-04-20T16:51:06.145819+00:00 +2025-03-16,ChatGPT,all,0,,20260417T235907Z,2026-04-20T16:51:06.145819+00:00 +2025-03-16,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T16:51:06.145819+00:00 +2025-03-16,Jules (Google),all,2,,20260417T235907Z,2026-04-20T16:51:06.145819+00:00 +2025-03-16,Cline,all,6,,20260417T235907Z,2026-04-20T16:51:06.145819+00:00 +2025-03-16,Sourcery AI,all,0,,20260417T235907Z,2026-04-20T16:51:06.145819+00:00 +2025-03-16,DeepSource,all,11,,20260417T235907Z,2026-04-20T16:51:06.145819+00:00 +2025-03-16,Sweep AI,all,4,,20260417T235907Z,2026-04-20T16:51:06.145819+00:00 +2025-03-16,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T16:51:06.145819+00:00 +2025-03-16,Roo Code,all,0,,20260417T235907Z,2026-04-20T16:51:06.145819+00:00 +2025-03-16,OpenCode,all,0,,20260417T235907Z,2026-04-20T16:51:06.145819+00:00 +2025-03-16,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T16:51:06.145819+00:00 +2025-03-16,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T16:51:06.145819+00:00 +2025-03-16,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T16:51:06.145819+00:00 +2025-03-16,Codegen,all,0,,20260417T235907Z,2026-04-20T16:51:06.145819+00:00 +2025-03-16,Gru,all,0,,20260417T235907Z,2026-04-20T16:51:06.145819+00:00 +2025-03-16,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T16:51:06.145819+00:00 +2025-03-16,Crush,all,0,,20260417T235907Z,2026-04-20T16:51:06.145819+00:00 +2025-03-16,Sketch,all,0,,20260417T235907Z,2026-04-20T16:51:06.145819+00:00 +2025-03-16,Kilo Code,all,0,,20260417T235907Z,2026-04-20T16:51:06.145819+00:00 +2025-03-17,Claude Code,all,0,,20260417T235907Z,2026-04-20T16:53:17.739908+00:00 +2025-03-17,Copilot,all,0,,20260417T235907Z,2026-04-20T16:53:17.739908+00:00 +2025-03-17,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-20T16:53:17.739908+00:00 +2025-03-17,Cursor,all,0,,20260417T235907Z,2026-04-20T16:53:17.739908+00:00 +2025-03-17,Aider,all,827,,20260417T235907Z,2026-04-20T16:53:17.739908+00:00 +2025-03-17,Devin,all,26,,20260417T235907Z,2026-04-20T16:53:17.739908+00:00 +2025-03-17,Lovable,all,0,,20260417T235907Z,2026-04-20T16:53:17.739908+00:00 +2025-03-17,OpenHands,all,170,,20260417T235907Z,2026-04-20T16:53:17.739908+00:00 +2025-03-17,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-20T16:53:17.739908+00:00 +2025-03-17,Coderabbit,all,2,,20260417T235907Z,2026-04-20T16:53:17.739908+00:00 +2025-03-17,ChatGPT,all,0,,20260417T235907Z,2026-04-20T16:53:17.739908+00:00 +2025-03-17,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T16:53:17.739908+00:00 +2025-03-17,Jules (Google),all,3,,20260417T235907Z,2026-04-20T16:53:17.739908+00:00 +2025-03-17,Cline,all,94,,20260417T235907Z,2026-04-20T16:53:17.739908+00:00 +2025-03-17,Sourcery AI,all,0,,20260417T235907Z,2026-04-20T16:53:17.739908+00:00 +2025-03-17,DeepSource,all,28,,20260417T235907Z,2026-04-20T16:53:17.739908+00:00 +2025-03-17,Sweep AI,all,0,,20260417T235907Z,2026-04-20T16:53:17.739908+00:00 +2025-03-17,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T16:53:17.739908+00:00 +2025-03-17,Roo Code,all,0,,20260417T235907Z,2026-04-20T16:53:17.739908+00:00 +2025-03-17,OpenCode,all,0,,20260417T235907Z,2026-04-20T16:53:17.739908+00:00 +2025-03-17,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T16:53:17.739908+00:00 +2025-03-17,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T16:53:17.739908+00:00 +2025-03-17,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T16:53:17.739908+00:00 +2025-03-17,Codegen,all,0,,20260417T235907Z,2026-04-20T16:53:17.739908+00:00 +2025-03-17,Gru,all,61,,20260417T235907Z,2026-04-20T16:53:17.739908+00:00 +2025-03-17,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T16:53:17.739908+00:00 +2025-03-17,Crush,all,0,,20260417T235907Z,2026-04-20T16:53:17.739908+00:00 +2025-03-17,Sketch,all,0,,20260417T235907Z,2026-04-20T16:53:17.739908+00:00 +2025-03-17,Kilo Code,all,0,,20260417T235907Z,2026-04-20T16:53:17.739908+00:00 +2025-03-18,Claude Code,all,1,,20260417T235907Z,2026-04-20T16:55:30.376600+00:00 +2025-03-18,Copilot,all,0,,20260417T235907Z,2026-04-20T16:55:30.376600+00:00 +2025-03-18,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-20T16:55:30.376600+00:00 +2025-03-18,Cursor,all,0,,20260417T235907Z,2026-04-20T16:55:30.376600+00:00 +2025-03-18,Aider,all,2733,,20260417T235907Z,2026-04-20T16:55:30.376600+00:00 +2025-03-18,Devin,all,42,,20260417T235907Z,2026-04-20T16:55:30.376600+00:00 +2025-03-18,Lovable,all,0,,20260417T235907Z,2026-04-20T16:55:30.376600+00:00 +2025-03-18,OpenHands,all,55,,20260417T235907Z,2026-04-20T16:55:30.376600+00:00 +2025-03-18,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-20T16:55:30.376600+00:00 +2025-03-18,Coderabbit,all,2,,20260417T235907Z,2026-04-20T16:55:30.376600+00:00 +2025-03-18,ChatGPT,all,0,,20260417T235907Z,2026-04-20T16:55:30.376600+00:00 +2025-03-18,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T16:55:30.376600+00:00 +2025-03-18,Jules (Google),all,3,,20260417T235907Z,2026-04-20T16:55:30.376600+00:00 +2025-03-18,Cline,all,82,,20260417T235907Z,2026-04-20T16:55:30.376600+00:00 +2025-03-18,Sourcery AI,all,0,,20260417T235907Z,2026-04-20T16:55:30.376600+00:00 +2025-03-18,DeepSource,all,6,,20260417T235907Z,2026-04-20T16:55:30.376600+00:00 +2025-03-18,Sweep AI,all,0,,20260417T235907Z,2026-04-20T16:55:30.376600+00:00 +2025-03-18,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T16:55:30.376600+00:00 +2025-03-18,Roo Code,all,0,,20260417T235907Z,2026-04-20T16:55:30.376600+00:00 +2025-03-18,OpenCode,all,0,,20260417T235907Z,2026-04-20T16:55:30.376600+00:00 +2025-03-18,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T16:55:30.376600+00:00 +2025-03-18,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T16:55:30.376600+00:00 +2025-03-18,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T16:55:30.376600+00:00 +2025-03-18,Codegen,all,7,,20260417T235907Z,2026-04-20T16:55:30.376600+00:00 +2025-03-18,Gru,all,0,,20260417T235907Z,2026-04-20T16:55:30.376600+00:00 +2025-03-18,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T16:55:30.376600+00:00 +2025-03-18,Crush,all,0,,20260417T235907Z,2026-04-20T16:55:30.376600+00:00 +2025-03-18,Sketch,all,0,,20260417T235907Z,2026-04-20T16:55:30.376600+00:00 +2025-03-18,Kilo Code,all,0,,20260417T235907Z,2026-04-20T16:55:30.376600+00:00 +2025-03-19,Claude Code,all,0,,20260417T235907Z,2026-04-20T16:57:41.010981+00:00 +2025-03-19,Copilot,all,0,1,20260417T235907Z,2026-04-20T16:57:41.010981+00:00 +2025-03-19,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-20T16:57:41.010981+00:00 +2025-03-19,Cursor,all,0,,20260417T235907Z,2026-04-20T16:57:41.010981+00:00 +2025-03-19,Aider,all,3354,,20260417T235907Z,2026-04-20T16:57:41.010981+00:00 +2025-03-19,Devin,all,43,,20260417T235907Z,2026-04-20T16:57:41.010981+00:00 +2025-03-19,Lovable,all,0,,20260417T235907Z,2026-04-20T16:57:41.010981+00:00 +2025-03-19,OpenHands,all,59,,20260417T235907Z,2026-04-20T16:57:41.010981+00:00 +2025-03-19,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-20T16:57:41.010981+00:00 +2025-03-19,Coderabbit,all,2,,20260417T235907Z,2026-04-20T16:57:41.010981+00:00 +2025-03-19,ChatGPT,all,2,,20260417T235907Z,2026-04-20T16:57:41.010981+00:00 +2025-03-19,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T16:57:41.010981+00:00 +2025-03-19,Jules (Google),all,6,,20260417T235907Z,2026-04-20T16:57:41.010981+00:00 +2025-03-19,Cline,all,86,,20260417T235907Z,2026-04-20T16:57:41.010981+00:00 +2025-03-19,Sourcery AI,all,0,,20260417T235907Z,2026-04-20T16:57:41.010981+00:00 +2025-03-19,DeepSource,all,15,,20260417T235907Z,2026-04-20T16:57:41.010981+00:00 +2025-03-19,Sweep AI,all,4,,20260417T235907Z,2026-04-20T16:57:41.010981+00:00 +2025-03-19,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T16:57:41.010981+00:00 +2025-03-19,Roo Code,all,0,,20260417T235907Z,2026-04-20T16:57:41.010981+00:00 +2025-03-19,OpenCode,all,0,,20260417T235907Z,2026-04-20T16:57:41.010981+00:00 +2025-03-19,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T16:57:41.010981+00:00 +2025-03-19,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T16:57:41.010981+00:00 +2025-03-19,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T16:57:41.010981+00:00 +2025-03-19,Codegen,all,3,,20260417T235907Z,2026-04-20T16:57:41.010981+00:00 +2025-03-19,Gru,all,10,,20260417T235907Z,2026-04-20T16:57:41.010981+00:00 +2025-03-19,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T16:57:41.010981+00:00 +2025-03-19,Crush,all,0,,20260417T235907Z,2026-04-20T16:57:41.010981+00:00 +2025-03-19,Sketch,all,0,,20260417T235907Z,2026-04-20T16:57:41.010981+00:00 +2025-03-19,Kilo Code,all,0,,20260417T235907Z,2026-04-20T16:57:41.010981+00:00 +2025-03-20,Claude Code,all,1,,20260417T235907Z,2026-04-20T16:59:53.877718+00:00 +2025-03-20,Copilot,all,0,1,20260417T235907Z,2026-04-20T16:59:53.877718+00:00 +2025-03-20,Copilot SWE Agent,all,0,1,20260417T235907Z,2026-04-20T16:59:53.877718+00:00 +2025-03-20,Cursor,all,0,,20260417T235907Z,2026-04-20T16:59:53.877718+00:00 +2025-03-20,Aider,all,3146,,20260417T235907Z,2026-04-20T16:59:53.877718+00:00 +2025-03-20,Devin,all,54,1,20260417T235907Z,2026-04-20T16:59:53.877718+00:00 +2025-03-20,Lovable,all,0,,20260417T235907Z,2026-04-20T16:59:53.877718+00:00 +2025-03-20,OpenHands,all,94,,20260417T235907Z,2026-04-20T16:59:53.877718+00:00 +2025-03-20,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-20T16:59:53.877718+00:00 +2025-03-20,Coderabbit,all,2,,20260417T235907Z,2026-04-20T16:59:53.877718+00:00 +2025-03-20,ChatGPT,all,0,,20260417T235907Z,2026-04-20T16:59:53.877718+00:00 +2025-03-20,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T16:59:53.877718+00:00 +2025-03-20,Jules (Google),all,4,,20260417T235907Z,2026-04-20T16:59:53.877718+00:00 +2025-03-20,Cline,all,12,,20260417T235907Z,2026-04-20T16:59:53.877718+00:00 +2025-03-20,Sourcery AI,all,0,,20260417T235907Z,2026-04-20T16:59:53.877718+00:00 +2025-03-20,DeepSource,all,5,,20260417T235907Z,2026-04-20T16:59:53.877718+00:00 +2025-03-20,Sweep AI,all,0,,20260417T235907Z,2026-04-20T16:59:53.877718+00:00 +2025-03-20,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T16:59:53.877718+00:00 +2025-03-20,Roo Code,all,0,,20260417T235907Z,2026-04-20T16:59:53.877718+00:00 +2025-03-20,OpenCode,all,0,,20260417T235907Z,2026-04-20T16:59:53.877718+00:00 +2025-03-20,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T16:59:53.877718+00:00 +2025-03-20,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T16:59:53.877718+00:00 +2025-03-20,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T16:59:53.877718+00:00 +2025-03-20,Codegen,all,13,,20260417T235907Z,2026-04-20T16:59:53.877718+00:00 +2025-03-20,Gru,all,60,,20260417T235907Z,2026-04-20T16:59:53.877718+00:00 +2025-03-20,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T16:59:53.877718+00:00 +2025-03-20,Crush,all,0,,20260417T235907Z,2026-04-20T16:59:53.877718+00:00 +2025-03-20,Sketch,all,0,,20260417T235907Z,2026-04-20T16:59:53.877718+00:00 +2025-03-20,Kilo Code,all,0,,20260417T235907Z,2026-04-20T16:59:53.877718+00:00 +2025-03-21,Claude Code,all,4,,20260417T235907Z,2026-04-20T17:03:07.463910+00:00 +2025-03-21,Copilot,all,1,1,20260417T235907Z,2026-04-20T17:03:07.463910+00:00 +2025-03-21,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-20T17:03:07.463910+00:00 +2025-03-21,Cursor,all,0,,20260417T235907Z,2026-04-20T17:03:07.463910+00:00 +2025-03-21,Aider,all,2315,,20260417T235907Z,2026-04-20T17:03:07.463910+00:00 +2025-03-21,Devin,all,10,,20260417T235907Z,2026-04-20T17:03:07.463910+00:00 +2025-03-21,Lovable,all,0,,20260417T235907Z,2026-04-20T17:03:07.463910+00:00 +2025-03-21,OpenHands,all,37,,20260417T235907Z,2026-04-20T17:03:07.463910+00:00 +2025-03-21,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-20T17:03:07.463910+00:00 +2025-03-21,Coderabbit,all,8,,20260417T235907Z,2026-04-20T17:03:07.463910+00:00 +2025-03-21,ChatGPT,all,1,,20260417T235907Z,2026-04-20T17:03:07.463910+00:00 +2025-03-21,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T17:03:07.463910+00:00 +2025-03-21,Jules (Google),all,6,,20260417T235907Z,2026-04-20T17:03:07.463910+00:00 +2025-03-21,Cline,all,37,,20260417T235907Z,2026-04-20T17:03:07.463910+00:00 +2025-03-21,Sourcery AI,all,0,,20260417T235907Z,2026-04-20T17:03:07.463910+00:00 +2025-03-21,DeepSource,all,10,,20260417T235907Z,2026-04-20T17:03:07.463910+00:00 +2025-03-21,Sweep AI,all,0,,20260417T235907Z,2026-04-20T17:03:07.463910+00:00 +2025-03-21,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T17:03:07.463910+00:00 +2025-03-21,Roo Code,all,0,,20260417T235907Z,2026-04-20T17:03:07.463910+00:00 +2025-03-21,OpenCode,all,0,,20260417T235907Z,2026-04-20T17:03:07.463910+00:00 +2025-03-21,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T17:03:07.463910+00:00 +2025-03-21,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T17:03:07.463910+00:00 +2025-03-21,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T17:03:07.463910+00:00 +2025-03-21,Codegen,all,9,,20260417T235907Z,2026-04-20T17:03:07.463910+00:00 +2025-03-21,Gru,all,10,,20260417T235907Z,2026-04-20T17:03:07.463910+00:00 +2025-03-21,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T17:03:07.463910+00:00 +2025-03-21,Crush,all,0,,20260417T235907Z,2026-04-20T17:03:07.463910+00:00 +2025-03-21,Sketch,all,0,,20260417T235907Z,2026-04-20T17:03:07.463910+00:00 +2025-03-21,Kilo Code,all,0,,20260417T235907Z,2026-04-20T17:03:07.463910+00:00 +2025-03-22,Claude Code,all,0,,20260417T235907Z,2026-04-20T17:05:20.077334+00:00 +2025-03-22,Copilot,all,0,,20260417T235907Z,2026-04-20T17:05:20.077334+00:00 +2025-03-22,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-20T17:05:20.077334+00:00 +2025-03-22,Cursor,all,0,,20260417T235907Z,2026-04-20T17:05:20.077334+00:00 +2025-03-22,Aider,all,1593,,20260417T235907Z,2026-04-20T17:05:20.077334+00:00 +2025-03-22,Devin,all,18,,20260417T235907Z,2026-04-20T17:05:20.077334+00:00 +2025-03-22,Lovable,all,0,,20260417T235907Z,2026-04-20T17:05:20.077334+00:00 +2025-03-22,OpenHands,all,18,,20260417T235907Z,2026-04-20T17:05:20.077334+00:00 +2025-03-22,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-20T17:05:20.077334+00:00 +2025-03-22,Coderabbit,all,5,,20260417T235907Z,2026-04-20T17:05:20.077334+00:00 +2025-03-22,ChatGPT,all,0,,20260417T235907Z,2026-04-20T17:05:20.077334+00:00 +2025-03-22,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T17:05:20.077334+00:00 +2025-03-22,Jules (Google),all,0,,20260417T235907Z,2026-04-20T17:05:20.077334+00:00 +2025-03-22,Cline,all,19,,20260417T235907Z,2026-04-20T17:05:20.077334+00:00 +2025-03-22,Sourcery AI,all,0,,20260417T235907Z,2026-04-20T17:05:20.077334+00:00 +2025-03-22,DeepSource,all,2,,20260417T235907Z,2026-04-20T17:05:20.077334+00:00 +2025-03-22,Sweep AI,all,5,,20260417T235907Z,2026-04-20T17:05:20.077334+00:00 +2025-03-22,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T17:05:20.077334+00:00 +2025-03-22,Roo Code,all,0,,20260417T235907Z,2026-04-20T17:05:20.077334+00:00 +2025-03-22,OpenCode,all,0,,20260417T235907Z,2026-04-20T17:05:20.077334+00:00 +2025-03-22,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T17:05:20.077334+00:00 +2025-03-22,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T17:05:20.077334+00:00 +2025-03-22,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T17:05:20.077334+00:00 +2025-03-22,Codegen,all,1,,20260417T235907Z,2026-04-20T17:05:20.077334+00:00 +2025-03-22,Gru,all,60,,20260417T235907Z,2026-04-20T17:05:20.077334+00:00 +2025-03-22,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T17:05:20.077334+00:00 +2025-03-22,Crush,all,0,,20260417T235907Z,2026-04-20T17:05:20.077334+00:00 +2025-03-22,Sketch,all,0,,20260417T235907Z,2026-04-20T17:05:20.077334+00:00 +2025-03-22,Kilo Code,all,0,,20260417T235907Z,2026-04-20T17:05:20.077334+00:00 +2025-03-23,Claude Code,all,7,,20260417T235907Z,2026-04-20T17:07:32.578662+00:00 +2025-03-23,Copilot,all,0,,20260417T235907Z,2026-04-20T17:07:32.578662+00:00 +2025-03-23,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-20T17:07:32.578662+00:00 +2025-03-23,Cursor,all,0,,20260417T235907Z,2026-04-20T17:07:32.578662+00:00 +2025-03-23,Aider,all,1170,,20260417T235907Z,2026-04-20T17:07:32.578662+00:00 +2025-03-23,Devin,all,14,,20260417T235907Z,2026-04-20T17:07:32.578662+00:00 +2025-03-23,Lovable,all,0,,20260417T235907Z,2026-04-20T17:07:32.578662+00:00 +2025-03-23,OpenHands,all,121,,20260417T235907Z,2026-04-20T17:07:32.578662+00:00 +2025-03-23,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-20T17:07:32.578662+00:00 +2025-03-23,Coderabbit,all,0,,20260417T235907Z,2026-04-20T17:07:32.578662+00:00 +2025-03-23,ChatGPT,all,0,,20260417T235907Z,2026-04-20T17:07:32.578662+00:00 +2025-03-23,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T17:07:32.578662+00:00 +2025-03-23,Jules (Google),all,0,1,20260417T235907Z,2026-04-20T17:07:32.578662+00:00 +2025-03-23,Cline,all,20,,20260417T235907Z,2026-04-20T17:07:32.578662+00:00 +2025-03-23,Sourcery AI,all,0,,20260417T235907Z,2026-04-20T17:07:32.578662+00:00 +2025-03-23,DeepSource,all,6,,20260417T235907Z,2026-04-20T17:07:32.578662+00:00 +2025-03-23,Sweep AI,all,3,,20260417T235907Z,2026-04-20T17:07:32.578662+00:00 +2025-03-23,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T17:07:32.578662+00:00 +2025-03-23,Roo Code,all,0,,20260417T235907Z,2026-04-20T17:07:32.578662+00:00 +2025-03-23,OpenCode,all,0,,20260417T235907Z,2026-04-20T17:07:32.578662+00:00 +2025-03-23,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T17:07:32.578662+00:00 +2025-03-23,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T17:07:32.578662+00:00 +2025-03-23,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T17:07:32.578662+00:00 +2025-03-23,Codegen,all,3,,20260417T235907Z,2026-04-20T17:07:32.578662+00:00 +2025-03-23,Gru,all,0,,20260417T235907Z,2026-04-20T17:07:32.578662+00:00 +2025-03-23,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T17:07:32.578662+00:00 +2025-03-23,Crush,all,0,,20260417T235907Z,2026-04-20T17:07:32.578662+00:00 +2025-03-23,Sketch,all,0,,20260417T235907Z,2026-04-20T17:07:32.578662+00:00 +2025-03-23,Kilo Code,all,0,,20260417T235907Z,2026-04-20T17:07:32.578662+00:00 +2025-03-24,Claude Code,all,0,,20260417T235907Z,2026-04-20T17:09:44.688187+00:00 +2025-03-24,Copilot,all,0,,20260417T235907Z,2026-04-20T17:09:44.688187+00:00 +2025-03-24,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-20T17:09:44.688187+00:00 +2025-03-24,Cursor,all,0,,20260417T235907Z,2026-04-20T17:09:44.688187+00:00 +2025-03-24,Aider,all,1754,,20260417T235907Z,2026-04-20T17:09:44.688187+00:00 +2025-03-24,Devin,all,28,,20260417T235907Z,2026-04-20T17:09:44.688187+00:00 +2025-03-24,Lovable,all,0,,20260417T235907Z,2026-04-20T17:09:44.688187+00:00 +2025-03-24,OpenHands,all,188,,20260417T235907Z,2026-04-20T17:09:44.688187+00:00 +2025-03-24,Gemini Code Assist,all,3,,20260417T235907Z,2026-04-20T17:09:44.688187+00:00 +2025-03-24,Coderabbit,all,1,,20260417T235907Z,2026-04-20T17:09:44.688187+00:00 +2025-03-24,ChatGPT,all,0,,20260417T235907Z,2026-04-20T17:09:44.688187+00:00 +2025-03-24,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T17:09:44.688187+00:00 +2025-03-24,Jules (Google),all,0,,20260417T235907Z,2026-04-20T17:09:44.688187+00:00 +2025-03-24,Cline,all,303,,20260417T235907Z,2026-04-20T17:09:44.688187+00:00 +2025-03-24,Sourcery AI,all,1,,20260417T235907Z,2026-04-20T17:09:44.688187+00:00 +2025-03-24,DeepSource,all,9,,20260417T235907Z,2026-04-20T17:09:44.688187+00:00 +2025-03-24,Sweep AI,all,2,,20260417T235907Z,2026-04-20T17:09:44.688187+00:00 +2025-03-24,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T17:09:44.688187+00:00 +2025-03-24,Roo Code,all,0,,20260417T235907Z,2026-04-20T17:09:44.688187+00:00 +2025-03-24,OpenCode,all,0,,20260417T235907Z,2026-04-20T17:09:44.688187+00:00 +2025-03-24,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T17:09:44.688187+00:00 +2025-03-24,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T17:09:44.688187+00:00 +2025-03-24,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T17:09:44.688187+00:00 +2025-03-24,Codegen,all,29,,20260417T235907Z,2026-04-20T17:09:44.688187+00:00 +2025-03-24,Gru,all,0,1,20260417T235907Z,2026-04-20T17:09:44.688187+00:00 +2025-03-24,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T17:09:44.688187+00:00 +2025-03-24,Crush,all,0,,20260417T235907Z,2026-04-20T17:09:44.688187+00:00 +2025-03-24,Sketch,all,0,,20260417T235907Z,2026-04-20T17:09:44.688187+00:00 +2025-03-24,Kilo Code,all,0,,20260417T235907Z,2026-04-20T17:09:44.688187+00:00 +2025-03-25,Claude Code,all,22,,20260417T235907Z,2026-04-20T17:11:57.900155+00:00 +2025-03-25,Copilot,all,0,1,20260417T235907Z,2026-04-20T17:11:57.900155+00:00 +2025-03-25,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-20T17:11:57.900155+00:00 +2025-03-25,Cursor,all,0,,20260417T235907Z,2026-04-20T17:11:57.900155+00:00 +2025-03-25,Aider,all,2369,,20260417T235907Z,2026-04-20T17:11:57.900155+00:00 +2025-03-25,Devin,all,60,,20260417T235907Z,2026-04-20T17:11:57.900155+00:00 +2025-03-25,Lovable,all,0,,20260417T235907Z,2026-04-20T17:11:57.900155+00:00 +2025-03-25,OpenHands,all,113,1,20260417T235907Z,2026-04-20T17:11:57.900155+00:00 +2025-03-25,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-20T17:11:57.900155+00:00 +2025-03-25,Coderabbit,all,3,,20260417T235907Z,2026-04-20T17:11:57.900155+00:00 +2025-03-25,ChatGPT,all,0,,20260417T235907Z,2026-04-20T17:11:57.900155+00:00 +2025-03-25,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T17:11:57.900155+00:00 +2025-03-25,Jules (Google),all,3,,20260417T235907Z,2026-04-20T17:11:57.900155+00:00 +2025-03-25,Cline,all,10,1,20260417T235907Z,2026-04-20T17:11:57.900155+00:00 +2025-03-25,Sourcery AI,all,0,,20260417T235907Z,2026-04-20T17:11:57.900155+00:00 +2025-03-25,DeepSource,all,15,,20260417T235907Z,2026-04-20T17:11:57.900155+00:00 +2025-03-25,Sweep AI,all,1,,20260417T235907Z,2026-04-20T17:11:57.900155+00:00 +2025-03-25,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T17:11:57.900155+00:00 +2025-03-25,Roo Code,all,0,,20260417T235907Z,2026-04-20T17:11:57.900155+00:00 +2025-03-25,OpenCode,all,0,,20260417T235907Z,2026-04-20T17:11:57.900155+00:00 +2025-03-25,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T17:11:57.900155+00:00 +2025-03-25,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T17:11:57.900155+00:00 +2025-03-25,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T17:11:57.900155+00:00 +2025-03-25,Codegen,all,13,,20260417T235907Z,2026-04-20T17:11:57.900155+00:00 +2025-03-25,Gru,all,60,,20260417T235907Z,2026-04-20T17:11:57.900155+00:00 +2025-03-25,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T17:11:57.900155+00:00 +2025-03-25,Crush,all,0,,20260417T235907Z,2026-04-20T17:11:57.900155+00:00 +2025-03-25,Sketch,all,0,,20260417T235907Z,2026-04-20T17:11:57.900155+00:00 +2025-03-25,Kilo Code,all,0,,20260417T235907Z,2026-04-20T17:11:57.900155+00:00 +2025-03-26,Claude Code,all,0,,20260417T235907Z,2026-04-20T17:16:10.905168+00:00 +2025-03-26,Copilot,all,0,1,20260417T235907Z,2026-04-20T17:16:10.905168+00:00 +2025-03-26,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-20T17:16:10.905168+00:00 +2025-03-26,Cursor,all,0,,20260417T235907Z,2026-04-20T17:16:10.905168+00:00 +2025-03-26,Aider,all,2182,,20260417T235907Z,2026-04-20T17:16:10.905168+00:00 +2025-03-26,Devin,all,21,,20260417T235907Z,2026-04-20T17:16:10.905168+00:00 +2025-03-26,Lovable,all,0,,20260417T235907Z,2026-04-20T17:16:10.905168+00:00 +2025-03-26,OpenHands,all,138,,20260417T235907Z,2026-04-20T17:16:10.905168+00:00 +2025-03-26,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-20T17:16:10.905168+00:00 +2025-03-26,Coderabbit,all,2,,20260417T235907Z,2026-04-20T17:16:10.905168+00:00 +2025-03-26,ChatGPT,all,1,,20260417T235907Z,2026-04-20T17:16:10.905168+00:00 +2025-03-26,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T17:16:10.905168+00:00 +2025-03-26,Jules (Google),all,2,,20260417T235907Z,2026-04-20T17:16:10.905168+00:00 +2025-03-26,Cline,all,15,,20260417T235907Z,2026-04-20T17:16:10.905168+00:00 +2025-03-26,Sourcery AI,all,0,1,20260417T235907Z,2026-04-20T17:16:10.905168+00:00 +2025-03-26,DeepSource,all,10,,20260417T235907Z,2026-04-20T17:16:10.905168+00:00 +2025-03-26,Sweep AI,all,0,,20260417T235907Z,2026-04-20T17:16:10.905168+00:00 +2025-03-26,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T17:16:10.905168+00:00 +2025-03-26,Roo Code,all,0,,20260417T235907Z,2026-04-20T17:16:10.905168+00:00 +2025-03-26,OpenCode,all,0,,20260417T235907Z,2026-04-20T17:16:10.905168+00:00 +2025-03-26,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T17:16:10.905168+00:00 +2025-03-26,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T17:16:10.905168+00:00 +2025-03-26,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T17:16:10.905168+00:00 +2025-03-26,Codegen,all,55,,20260417T235907Z,2026-04-20T17:16:10.905168+00:00 +2025-03-26,Gru,all,62,,20260417T235907Z,2026-04-20T17:16:10.905168+00:00 +2025-03-26,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T17:16:10.905168+00:00 +2025-03-26,Crush,all,0,,20260417T235907Z,2026-04-20T17:16:10.905168+00:00 +2025-03-26,Sketch,all,0,,20260417T235907Z,2026-04-20T17:16:10.905168+00:00 +2025-03-26,Kilo Code,all,0,,20260417T235907Z,2026-04-20T17:16:10.905168+00:00 +2025-03-27,Claude Code,all,1,,20260417T235907Z,2026-04-20T17:18:23.147681+00:00 +2025-03-27,Copilot,all,0,,20260417T235907Z,2026-04-20T17:18:23.147681+00:00 +2025-03-27,Copilot SWE Agent,all,0,,20260417T235907Z,2026-04-20T17:18:23.147681+00:00 +2025-03-27,Cursor,all,0,,20260417T235907Z,2026-04-20T17:18:23.147681+00:00 +2025-03-27,Aider,all,1366,,20260417T235907Z,2026-04-20T17:18:23.147681+00:00 +2025-03-27,Devin,all,47,,20260417T235907Z,2026-04-20T17:18:23.147681+00:00 +2025-03-27,Lovable,all,0,,20260417T235907Z,2026-04-20T17:18:23.147681+00:00 +2025-03-27,OpenHands,all,112,,20260417T235907Z,2026-04-20T17:18:23.147681+00:00 +2025-03-27,Gemini Code Assist,all,0,,20260417T235907Z,2026-04-20T17:18:23.147681+00:00 +2025-03-27,Coderabbit,all,13,,20260417T235907Z,2026-04-20T17:18:23.147681+00:00 +2025-03-27,ChatGPT,all,1,,20260417T235907Z,2026-04-20T17:18:23.147681+00:00 +2025-03-27,Gemini CLI,all,0,,20260417T235907Z,2026-04-20T17:18:23.147681+00:00 +2025-03-27,Jules (Google),all,4,,20260417T235907Z,2026-04-20T17:18:23.147681+00:00 +2025-03-27,Cline,all,7,,20260417T235907Z,2026-04-20T17:18:23.147681+00:00 +2025-03-27,Sourcery AI,all,0,,20260417T235907Z,2026-04-20T17:18:23.147681+00:00 +2025-03-27,DeepSource,all,8,,20260417T235907Z,2026-04-20T17:18:23.147681+00:00 +2025-03-27,Sweep AI,all,0,,20260417T235907Z,2026-04-20T17:18:23.147681+00:00 +2025-03-27,Qwen Coder,all,0,,20260417T235907Z,2026-04-20T17:18:23.147681+00:00 +2025-03-27,Roo Code,all,0,,20260417T235907Z,2026-04-20T17:18:23.147681+00:00 +2025-03-27,OpenCode,all,0,,20260417T235907Z,2026-04-20T17:18:23.147681+00:00 +2025-03-27,OpenAI Codex,all,0,,20260417T235907Z,2026-04-20T17:18:23.147681+00:00 +2025-03-27,Amp (Sourcegraph),all,0,,20260417T235907Z,2026-04-20T17:18:23.147681+00:00 +2025-03-27,Warp (Oz Agent),all,0,,20260417T235907Z,2026-04-20T17:18:23.147681+00:00 +2025-03-27,Codegen,all,19,,20260417T235907Z,2026-04-20T17:18:23.147681+00:00 +2025-03-27,Gru,all,24,,20260417T235907Z,2026-04-20T17:18:23.147681+00:00 +2025-03-27,Junie (JetBrains),all,0,,20260417T235907Z,2026-04-20T17:18:23.147681+00:00 +2025-03-27,Crush,all,0,,20260417T235907Z,2026-04-20T17:18:23.147681+00:00 +2025-03-27,Sketch,all,0,,20260417T235907Z,2026-04-20T17:18:23.147681+00:00 +2025-03-27,Kilo Code,all,0,,20260417T235907Z,2026-04-20T17:18:23.147681+00:00 +2025-03-28,Claude Code,all,0,,20260420T172240Z,2026-04-20T17:22:40.427003+00:00 +2025-03-28,Copilot,all,0,,20260420T172240Z,2026-04-20T17:22:40.427003+00:00 +2025-03-28,Copilot SWE Agent,all,0,,20260420T172240Z,2026-04-20T17:22:40.427003+00:00 +2025-03-28,Cursor,all,0,,20260420T172240Z,2026-04-20T17:22:40.427003+00:00 +2025-03-28,Aider,all,924,,20260420T172240Z,2026-04-20T17:22:40.427003+00:00 +2025-03-28,Devin,all,34,1,20260420T172240Z,2026-04-20T17:22:40.427003+00:00 +2025-03-28,Lovable,all,0,,20260420T172240Z,2026-04-20T17:22:40.427003+00:00 +2025-03-28,OpenHands,all,75,,20260420T172240Z,2026-04-20T17:22:40.427003+00:00 +2025-03-28,Gemini Code Assist,all,0,,20260420T172240Z,2026-04-20T17:22:40.427003+00:00 +2025-03-28,Coderabbit,all,4,,20260420T172240Z,2026-04-20T17:22:40.427003+00:00 +2025-03-28,ChatGPT,all,0,,20260420T172240Z,2026-04-20T17:22:40.427003+00:00 +2025-03-28,Gemini CLI,all,0,,20260420T172240Z,2026-04-20T17:22:40.427003+00:00 +2025-03-28,Jules (Google),all,3,,20260420T172240Z,2026-04-20T17:22:40.427003+00:00 +2025-03-28,Cline,all,40,,20260420T172240Z,2026-04-20T17:22:40.427003+00:00 +2025-03-28,Sourcery AI,all,0,,20260420T172240Z,2026-04-20T17:22:40.427003+00:00 +2025-03-28,DeepSource,all,14,,20260420T172240Z,2026-04-20T17:22:40.427003+00:00 +2025-03-28,Sweep AI,all,0,,20260420T172240Z,2026-04-20T17:22:40.427003+00:00 +2025-03-28,Qwen Coder,all,0,,20260420T172240Z,2026-04-20T17:22:40.427003+00:00 +2025-03-28,Roo Code,all,0,,20260420T172240Z,2026-04-20T17:22:40.427003+00:00 +2025-03-28,OpenCode,all,0,,20260420T172240Z,2026-04-20T17:22:40.427003+00:00 +2025-03-28,OpenAI Codex,all,0,,20260420T172240Z,2026-04-20T17:22:40.427003+00:00 +2025-03-28,Amp (Sourcegraph),all,0,,20260420T172240Z,2026-04-20T17:22:40.427003+00:00 +2025-03-28,Warp (Oz Agent),all,0,,20260420T172240Z,2026-04-20T17:22:40.427003+00:00 +2025-03-28,Codegen,all,98,,20260420T172240Z,2026-04-20T17:22:40.427003+00:00 +2025-03-28,Gru,all,0,,20260420T172240Z,2026-04-20T17:22:40.427003+00:00 +2025-03-28,Junie (JetBrains),all,0,,20260420T172240Z,2026-04-20T17:22:40.427003+00:00 +2025-03-28,Crush,all,0,,20260420T172240Z,2026-04-20T17:22:40.427003+00:00 +2025-03-28,Sketch,all,0,,20260420T172240Z,2026-04-20T17:22:40.427003+00:00 +2025-03-28,Kilo Code,all,0,,20260420T172240Z,2026-04-20T17:22:40.427003+00:00 +2025-03-29,Claude Code,all,2,,20260420T172240Z,2026-04-20T17:24:51.349766+00:00 +2025-03-29,Copilot,all,0,,20260420T172240Z,2026-04-20T17:24:51.349766+00:00 +2025-03-29,Copilot SWE Agent,all,0,,20260420T172240Z,2026-04-20T17:24:51.349766+00:00 +2025-03-29,Cursor,all,0,,20260420T172240Z,2026-04-20T17:24:51.349766+00:00 +2025-03-29,Aider,all,2907,,20260420T172240Z,2026-04-20T17:24:51.349766+00:00 +2025-03-29,Devin,all,27,,20260420T172240Z,2026-04-20T17:24:51.349766+00:00 +2025-03-29,Lovable,all,0,,20260420T172240Z,2026-04-20T17:24:51.349766+00:00 +2025-03-29,OpenHands,all,121,,20260420T172240Z,2026-04-20T17:24:51.349766+00:00 +2025-03-29,Gemini Code Assist,all,0,,20260420T172240Z,2026-04-20T17:24:51.349766+00:00 +2025-03-29,Coderabbit,all,4,,20260420T172240Z,2026-04-20T17:24:51.349766+00:00 +2025-03-29,ChatGPT,all,25,,20260420T172240Z,2026-04-20T17:24:51.349766+00:00 +2025-03-29,Gemini CLI,all,0,,20260420T172240Z,2026-04-20T17:24:51.349766+00:00 +2025-03-29,Jules (Google),all,3,,20260420T172240Z,2026-04-20T17:24:51.349766+00:00 +2025-03-29,Cline,all,47,,20260420T172240Z,2026-04-20T17:24:51.349766+00:00 +2025-03-29,Sourcery AI,all,0,,20260420T172240Z,2026-04-20T17:24:51.349766+00:00 +2025-03-29,DeepSource,all,34,,20260420T172240Z,2026-04-20T17:24:51.349766+00:00 +2025-03-29,Sweep AI,all,0,,20260420T172240Z,2026-04-20T17:24:51.349766+00:00 +2025-03-29,Qwen Coder,all,0,,20260420T172240Z,2026-04-20T17:24:51.349766+00:00 +2025-03-29,Roo Code,all,0,,20260420T172240Z,2026-04-20T17:24:51.349766+00:00 +2025-03-29,OpenCode,all,0,,20260420T172240Z,2026-04-20T17:24:51.349766+00:00 +2025-03-29,OpenAI Codex,all,0,,20260420T172240Z,2026-04-20T17:24:51.349766+00:00 +2025-03-29,Amp (Sourcegraph),all,0,,20260420T172240Z,2026-04-20T17:24:51.349766+00:00 +2025-03-29,Warp (Oz Agent),all,0,,20260420T172240Z,2026-04-20T17:24:51.349766+00:00 +2025-03-29,Codegen,all,37,,20260420T172240Z,2026-04-20T17:24:51.349766+00:00 +2025-03-29,Gru,all,10,,20260420T172240Z,2026-04-20T17:24:51.349766+00:00 +2025-03-29,Junie (JetBrains),all,0,,20260420T172240Z,2026-04-20T17:24:51.349766+00:00 +2025-03-29,Crush,all,0,,20260420T172240Z,2026-04-20T17:24:51.349766+00:00 +2025-03-29,Sketch,all,0,,20260420T172240Z,2026-04-20T17:24:51.349766+00:00 +2025-03-29,Kilo Code,all,0,,20260420T172240Z,2026-04-20T17:24:51.349766+00:00 +2025-03-30,Claude Code,all,11,,20260420T172240Z,2026-04-20T17:27:03.206626+00:00 +2025-03-30,Copilot,all,0,,20260420T172240Z,2026-04-20T17:27:03.206626+00:00 +2025-03-30,Copilot SWE Agent,all,0,1,20260420T172240Z,2026-04-20T17:27:03.206626+00:00 +2025-03-30,Cursor,all,0,,20260420T172240Z,2026-04-20T17:27:03.206626+00:00 +2025-03-30,Aider,all,2436,,20260420T172240Z,2026-04-20T17:27:03.206626+00:00 +2025-03-30,Devin,all,18,,20260420T172240Z,2026-04-20T17:27:03.206626+00:00 +2025-03-30,Lovable,all,1,,20260420T172240Z,2026-04-20T17:27:03.206626+00:00 +2025-03-30,OpenHands,all,163,,20260420T172240Z,2026-04-20T17:27:03.206626+00:00 +2025-03-30,Gemini Code Assist,all,0,,20260420T172240Z,2026-04-20T17:27:03.206626+00:00 +2025-03-30,Coderabbit,all,2,,20260420T172240Z,2026-04-20T17:27:03.206626+00:00 +2025-03-30,ChatGPT,all,19,,20260420T172240Z,2026-04-20T17:27:03.206626+00:00 +2025-03-30,Gemini CLI,all,0,,20260420T172240Z,2026-04-20T17:27:03.206626+00:00 +2025-03-30,Jules (Google),all,7,,20260420T172240Z,2026-04-20T17:27:03.206626+00:00 +2025-03-30,Cline,all,18,,20260420T172240Z,2026-04-20T17:27:03.206626+00:00 +2025-03-30,Sourcery AI,all,0,,20260420T172240Z,2026-04-20T17:27:03.206626+00:00 +2025-03-30,DeepSource,all,4,,20260420T172240Z,2026-04-20T17:27:03.206626+00:00 +2025-03-30,Sweep AI,all,0,,20260420T172240Z,2026-04-20T17:27:03.206626+00:00 +2025-03-30,Qwen Coder,all,0,,20260420T172240Z,2026-04-20T17:27:03.206626+00:00 +2025-03-30,Roo Code,all,0,,20260420T172240Z,2026-04-20T17:27:03.206626+00:00 +2025-03-30,OpenCode,all,0,,20260420T172240Z,2026-04-20T17:27:03.206626+00:00 +2025-03-30,OpenAI Codex,all,0,,20260420T172240Z,2026-04-20T17:27:03.206626+00:00 +2025-03-30,Amp (Sourcegraph),all,0,,20260420T172240Z,2026-04-20T17:27:03.206626+00:00 +2025-03-30,Warp (Oz Agent),all,0,,20260420T172240Z,2026-04-20T17:27:03.206626+00:00 +2025-03-30,Codegen,all,19,,20260420T172240Z,2026-04-20T17:27:03.206626+00:00 +2025-03-30,Gru,all,0,,20260420T172240Z,2026-04-20T17:27:03.206626+00:00 +2025-03-30,Junie (JetBrains),all,0,,20260420T172240Z,2026-04-20T17:27:03.206626+00:00 +2025-03-30,Crush,all,0,,20260420T172240Z,2026-04-20T17:27:03.206626+00:00 +2025-03-30,Sketch,all,0,,20260420T172240Z,2026-04-20T17:27:03.206626+00:00 +2025-03-30,Kilo Code,all,0,,20260420T172240Z,2026-04-20T17:27:03.206626+00:00 +2025-03-31,Claude Code,all,28,,20260420T172240Z,2026-04-20T17:29:14.009216+00:00 +2025-03-31,Copilot,all,0,,20260420T172240Z,2026-04-20T17:29:14.009216+00:00 +2025-03-31,Copilot SWE Agent,all,0,,20260420T172240Z,2026-04-20T17:29:14.009216+00:00 +2025-03-31,Cursor,all,0,,20260420T172240Z,2026-04-20T17:29:14.009216+00:00 +2025-03-31,Aider,all,1065,,20260420T172240Z,2026-04-20T17:29:14.009216+00:00 +2025-03-31,Devin,all,28,,20260420T172240Z,2026-04-20T17:29:14.009216+00:00 +2025-03-31,Lovable,all,0,,20260420T172240Z,2026-04-20T17:29:14.009216+00:00 +2025-03-31,OpenHands,all,64,1,20260420T172240Z,2026-04-20T17:29:14.009216+00:00 +2025-03-31,Gemini Code Assist,all,0,,20260420T172240Z,2026-04-20T17:29:14.009216+00:00 +2025-03-31,Coderabbit,all,16,,20260420T172240Z,2026-04-20T17:29:14.009216+00:00 +2025-03-31,ChatGPT,all,23,,20260420T172240Z,2026-04-20T17:29:14.009216+00:00 +2025-03-31,Gemini CLI,all,0,,20260420T172240Z,2026-04-20T17:29:14.009216+00:00 +2025-03-31,Jules (Google),all,0,,20260420T172240Z,2026-04-20T17:29:14.009216+00:00 +2025-03-31,Cline,all,12,,20260420T172240Z,2026-04-20T17:29:14.009216+00:00 +2025-03-31,Sourcery AI,all,0,,20260420T172240Z,2026-04-20T17:29:14.009216+00:00 +2025-03-31,DeepSource,all,33,,20260420T172240Z,2026-04-20T17:29:14.009216+00:00 +2025-03-31,Sweep AI,all,1,,20260420T172240Z,2026-04-20T17:29:14.009216+00:00 +2025-03-31,Qwen Coder,all,0,,20260420T172240Z,2026-04-20T17:29:14.009216+00:00 +2025-03-31,Roo Code,all,0,,20260420T172240Z,2026-04-20T17:29:14.009216+00:00 +2025-03-31,OpenCode,all,0,,20260420T172240Z,2026-04-20T17:29:14.009216+00:00 +2025-03-31,OpenAI Codex,all,0,,20260420T172240Z,2026-04-20T17:29:14.009216+00:00 +2025-03-31,Amp (Sourcegraph),all,0,,20260420T172240Z,2026-04-20T17:29:14.009216+00:00 +2025-03-31,Warp (Oz Agent),all,0,,20260420T172240Z,2026-04-20T17:29:14.009216+00:00 +2025-03-31,Codegen,all,0,,20260420T172240Z,2026-04-20T17:29:14.009216+00:00 +2025-03-31,Gru,all,0,1,20260420T172240Z,2026-04-20T17:29:14.009216+00:00 +2025-03-31,Junie (JetBrains),all,0,,20260420T172240Z,2026-04-20T17:29:14.009216+00:00 +2025-03-31,Crush,all,0,,20260420T172240Z,2026-04-20T17:29:14.009216+00:00 +2025-03-31,Sketch,all,0,,20260420T172240Z,2026-04-20T17:29:14.009216+00:00 +2025-03-31,Kilo Code,all,0,,20260420T172240Z,2026-04-20T17:29:14.009216+00:00 +2025-02-01,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-02,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-03,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-04,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-05,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-06,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-07,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-08,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-09,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-10,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-11,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-12,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-13,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-14,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-15,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-16,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-17,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-18,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-19,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-20,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-21,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-22,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-23,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-24,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-25,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-26,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-27,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-28,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-01,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-02,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-03,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-04,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-05,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-06,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-07,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-08,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-09,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-10,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-11,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-12,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-13,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-14,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-15,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-16,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-17,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-18,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-19,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-20,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-21,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-22,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-23,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-24,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-25,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-26,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-27,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-28,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-29,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-30,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-31,Copilot SWE Agent (new),all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-01,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-02,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-03,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-04,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-05,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-06,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-07,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-08,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-09,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-10,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-11,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-12,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-13,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-14,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-15,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-16,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-17,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-18,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-19,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-20,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-21,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-22,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-23,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-24,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-25,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-26,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-27,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-28,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-01,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-02,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-03,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-04,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-05,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-06,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-07,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-08,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-09,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-10,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-11,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-12,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-13,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-14,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-15,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-16,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-17,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-18,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-19,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-20,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-21,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-22,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-23,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-24,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-25,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-26,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-27,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-28,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-29,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-30,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-31,Replit Agent,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-01,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-02,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-03,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-04,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-05,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-06,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-07,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-08,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-09,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-10,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-11,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-12,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-13,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-14,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-15,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-16,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-17,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-18,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-19,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-20,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-21,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-22,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-23,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-24,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-25,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-26,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-27,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-02-28,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-01,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-02,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-03,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-04,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-05,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-06,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-07,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-08,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-09,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-10,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-11,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-12,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-13,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-14,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-15,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-16,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-17,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-18,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-19,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-20,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-21,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-22,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-23,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-24,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-25,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-26,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-27,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-28,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-29,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-30,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2025-03-31,Warp (Oz Agent) v2,all,0,,20260421T174314Z_gap_fill,2026-04-21T17:43:14.451215+00:00 +2026-04-10,Claude Code,all,40140,,20260428T035113Z,2026-04-28T03:51:13.339105+00:00 +2026-04-10,Copilot,all,346,,20260428T035113Z,2026-04-28T03:51:13.339105+00:00 +2026-04-10,Copilot SWE Agent,all,0,,20260428T035113Z,2026-04-28T03:51:13.339105+00:00 +2026-04-10,Cursor,all,1657,,20260428T035113Z,2026-04-28T03:51:13.339105+00:00 +2026-04-10,Aider,all,0,,20260428T035113Z,2026-04-28T03:51:13.339105+00:00 +2026-04-10,Devin,all,216,1,20260428T035113Z,2026-04-28T03:51:13.339105+00:00 +2026-04-10,Lovable,all,0,,20260428T035113Z,2026-04-28T03:51:13.339105+00:00 +2026-04-10,OpenHands,all,241,,20260428T035113Z,2026-04-28T03:51:13.339105+00:00 +2026-04-10,Gemini Code Assist,all,0,,20260428T035113Z,2026-04-28T03:51:13.339105+00:00 +2026-04-10,Coderabbit,all,85,,20260428T035113Z,2026-04-28T03:51:13.339105+00:00 +2026-04-10,ChatGPT,all,1,,20260428T035113Z,2026-04-28T03:51:13.339105+00:00 +2026-04-10,Gemini CLI,all,0,,20260428T035113Z,2026-04-28T03:51:13.339105+00:00 +2026-04-10,Jules (Google),all,3095,,20260428T035113Z,2026-04-28T03:51:13.339105+00:00 +2026-04-10,Cline,all,154,,20260428T035113Z,2026-04-28T03:51:13.339105+00:00 +2026-04-10,Sourcery AI,all,0,,20260428T035113Z,2026-04-28T03:51:13.339105+00:00 +2026-04-10,DeepSource,all,15,,20260428T035113Z,2026-04-28T03:51:13.339105+00:00 +2026-04-10,Sweep AI,all,0,,20260428T035113Z,2026-04-28T03:51:13.339105+00:00 +2026-04-10,Qwen Coder,all,0,,20260428T035113Z,2026-04-28T03:51:13.339105+00:00 +2026-04-10,Roo Code,all,31,,20260428T035113Z,2026-04-28T03:51:13.339105+00:00 +2026-04-10,OpenCode,all,0,,20260428T035113Z,2026-04-28T03:51:13.339105+00:00 +2026-04-10,OpenAI Codex,all,427,,20260428T035113Z,2026-04-28T03:51:13.339105+00:00 +2026-04-10,Amp (Sourcegraph),all,0,,20260428T035113Z,2026-04-28T03:51:13.339105+00:00 +2026-04-10,Warp (Oz Agent),all,0,,20260428T035113Z,2026-04-28T03:51:13.339105+00:00 +2026-04-10,Codegen,all,0,,20260428T035113Z,2026-04-28T03:51:13.339105+00:00 +2026-04-10,Gru,all,0,,20260428T035113Z,2026-04-28T03:51:13.339105+00:00 +2026-04-10,Junie (JetBrains),all,28,,20260428T035113Z,2026-04-28T03:51:13.339105+00:00 +2026-04-10,Crush,all,4,,20260428T035113Z,2026-04-28T03:51:13.339105+00:00 +2026-04-10,Sketch,all,0,,20260428T035113Z,2026-04-28T03:51:13.339105+00:00 +2026-04-10,Kilo Code,all,206,,20260428T035113Z,2026-04-28T03:51:13.339105+00:00 +2026-04-11,Claude Code,all,36530,,20260428T035113Z,2026-04-28T03:57:13.627689+00:00 +2026-04-11,Copilot,all,427,,20260428T035113Z,2026-04-28T03:57:13.627689+00:00 +2026-04-11,Copilot SWE Agent,all,0,,20260428T035113Z,2026-04-28T03:57:13.627689+00:00 +2026-04-11,Cursor,all,1711,,20260428T035113Z,2026-04-28T03:57:13.627689+00:00 +2026-04-11,Aider,all,6,,20260428T035113Z,2026-04-28T03:57:13.627689+00:00 +2026-04-11,Devin,all,96,,20260428T035113Z,2026-04-28T03:57:13.627689+00:00 +2026-04-11,Lovable,all,1,,20260428T035113Z,2026-04-28T03:57:13.627689+00:00 +2026-04-11,OpenHands,all,321,,20260428T035113Z,2026-04-28T03:57:13.627689+00:00 +2026-04-11,Gemini Code Assist,all,0,,20260428T035113Z,2026-04-28T03:57:13.627689+00:00 +2026-04-11,Coderabbit,all,62,,20260428T035113Z,2026-04-28T03:57:13.627689+00:00 +2026-04-11,ChatGPT,all,2,,20260428T035113Z,2026-04-28T03:57:13.627689+00:00 +2026-04-11,Gemini CLI,all,0,,20260428T035113Z,2026-04-28T03:57:13.627689+00:00 +2026-04-11,Jules (Google),all,2713,,20260428T035113Z,2026-04-28T03:57:13.627689+00:00 +2026-04-11,Cline,all,136,,20260428T035113Z,2026-04-28T03:57:13.627689+00:00 +2026-04-11,Sourcery AI,all,0,,20260428T035113Z,2026-04-28T03:57:13.627689+00:00 +2026-04-11,DeepSource,all,5,,20260428T035113Z,2026-04-28T03:57:13.627689+00:00 +2026-04-11,Sweep AI,all,0,,20260428T035113Z,2026-04-28T03:57:13.627689+00:00 +2026-04-11,Qwen Coder,all,0,,20260428T035113Z,2026-04-28T03:57:13.627689+00:00 +2026-04-11,Roo Code,all,45,,20260428T035113Z,2026-04-28T03:57:13.627689+00:00 +2026-04-11,OpenCode,all,0,,20260428T035113Z,2026-04-28T03:57:13.627689+00:00 +2026-04-11,OpenAI Codex,all,328,,20260428T035113Z,2026-04-28T03:57:13.627689+00:00 +2026-04-11,Amp (Sourcegraph),all,0,,20260428T035113Z,2026-04-28T03:57:13.627689+00:00 +2026-04-11,Warp (Oz Agent),all,11,,20260428T035113Z,2026-04-28T03:57:13.627689+00:00 +2026-04-11,Codegen,all,0,,20260428T035113Z,2026-04-28T03:57:13.627689+00:00 +2026-04-11,Gru,all,0,,20260428T035113Z,2026-04-28T03:57:13.627689+00:00 +2026-04-11,Junie (JetBrains),all,3,,20260428T035113Z,2026-04-28T03:57:13.627689+00:00 +2026-04-11,Crush,all,0,,20260428T035113Z,2026-04-28T03:57:13.627689+00:00 +2026-04-11,Sketch,all,0,,20260428T035113Z,2026-04-28T03:57:13.627689+00:00 +2026-04-11,Kilo Code,all,157,,20260428T035113Z,2026-04-28T03:57:13.627689+00:00 +2026-04-12,Claude Code,all,37463,,20260428T035113Z,2026-04-28T04:03:14.553014+00:00 +2026-04-12,Copilot,all,339,,20260428T035113Z,2026-04-28T04:03:14.553014+00:00 +2026-04-12,Copilot SWE Agent,all,0,,20260428T035113Z,2026-04-28T04:03:14.553014+00:00 +2026-04-12,Cursor,all,1771,,20260428T035113Z,2026-04-28T04:03:14.553014+00:00 +2026-04-12,Aider,all,6,,20260428T035113Z,2026-04-28T04:03:14.553014+00:00 +2026-04-12,Devin,all,168,,20260428T035113Z,2026-04-28T04:03:14.553014+00:00 +2026-04-12,Lovable,all,0,,20260428T035113Z,2026-04-28T04:03:14.553014+00:00 +2026-04-12,OpenHands,all,206,,20260428T035113Z,2026-04-28T04:03:14.553014+00:00 +2026-04-12,Gemini Code Assist,all,0,,20260428T035113Z,2026-04-28T04:03:14.553014+00:00 +2026-04-12,Coderabbit,all,88,,20260428T035113Z,2026-04-28T04:03:14.553014+00:00 +2026-04-12,ChatGPT,all,2,,20260428T035113Z,2026-04-28T04:03:14.553014+00:00 +2026-04-12,Gemini CLI,all,0,,20260428T035113Z,2026-04-28T04:03:14.553014+00:00 +2026-04-12,Jules (Google),all,2955,,20260428T035113Z,2026-04-28T04:03:14.553014+00:00 +2026-04-12,Cline,all,186,,20260428T035113Z,2026-04-28T04:03:14.553014+00:00 +2026-04-12,Sourcery AI,all,0,,20260428T035113Z,2026-04-28T04:03:14.553014+00:00 +2026-04-12,DeepSource,all,15,,20260428T035113Z,2026-04-28T04:03:14.553014+00:00 +2026-04-12,Sweep AI,all,1,,20260428T035113Z,2026-04-28T04:03:14.553014+00:00 +2026-04-12,Qwen Coder,all,6,,20260428T035113Z,2026-04-28T04:03:14.553014+00:00 +2026-04-12,Roo Code,all,41,,20260428T035113Z,2026-04-28T04:03:14.553014+00:00 +2026-04-12,OpenCode,all,1,,20260428T035113Z,2026-04-28T04:03:14.553014+00:00 +2026-04-12,OpenAI Codex,all,397,,20260428T035113Z,2026-04-28T04:03:14.553014+00:00 +2026-04-12,Amp (Sourcegraph),all,0,,20260428T035113Z,2026-04-28T04:03:14.553014+00:00 +2026-04-12,Warp (Oz Agent),all,18,,20260428T035113Z,2026-04-28T04:03:14.553014+00:00 +2026-04-12,Codegen,all,0,,20260428T035113Z,2026-04-28T04:03:14.553014+00:00 +2026-04-12,Gru,all,0,,20260428T035113Z,2026-04-28T04:03:14.553014+00:00 +2026-04-12,Junie (JetBrains),all,1,,20260428T035113Z,2026-04-28T04:03:14.553014+00:00 +2026-04-12,Crush,all,0,,20260428T035113Z,2026-04-28T04:03:14.553014+00:00 +2026-04-12,Sketch,all,0,,20260428T035113Z,2026-04-28T04:03:14.553014+00:00 +2026-04-12,Kilo Code,all,225,,20260428T035113Z,2026-04-28T04:03:14.553014+00:00 +2026-04-13,Claude Code,all,38498,,20260428T035113Z,2026-04-28T04:09:14.699967+00:00 +2026-04-13,Copilot,all,500,,20260428T035113Z,2026-04-28T04:09:14.699967+00:00 +2026-04-13,Copilot SWE Agent,all,0,1,20260428T035113Z,2026-04-28T04:09:14.699967+00:00 +2026-04-13,Cursor,all,1786,,20260428T035113Z,2026-04-28T04:09:14.699967+00:00 +2026-04-13,Aider,all,8,,20260428T035113Z,2026-04-28T04:09:14.699967+00:00 +2026-04-13,Devin,all,114,,20260428T035113Z,2026-04-28T04:09:14.699967+00:00 +2026-04-13,Lovable,all,0,,20260428T035113Z,2026-04-28T04:09:14.699967+00:00 +2026-04-13,OpenHands,all,373,,20260428T035113Z,2026-04-28T04:09:14.699967+00:00 +2026-04-13,Gemini Code Assist,all,0,,20260428T035113Z,2026-04-28T04:09:14.699967+00:00 +2026-04-13,Coderabbit,all,84,,20260428T035113Z,2026-04-28T04:09:14.699967+00:00 +2026-04-13,ChatGPT,all,3,,20260428T035113Z,2026-04-28T04:09:14.699967+00:00 +2026-04-13,Gemini CLI,all,0,,20260428T035113Z,2026-04-28T04:09:14.699967+00:00 +2026-04-13,Jules (Google),all,3100,,20260428T035113Z,2026-04-28T04:09:14.699967+00:00 +2026-04-13,Cline,all,241,,20260428T035113Z,2026-04-28T04:09:14.699967+00:00 +2026-04-13,Sourcery AI,all,0,,20260428T035113Z,2026-04-28T04:09:14.699967+00:00 +2026-04-13,DeepSource,all,5,,20260428T035113Z,2026-04-28T04:09:14.699967+00:00 +2026-04-13,Sweep AI,all,0,,20260428T035113Z,2026-04-28T04:09:14.699967+00:00 +2026-04-13,Qwen Coder,all,0,,20260428T035113Z,2026-04-28T04:09:14.699967+00:00 +2026-04-13,Roo Code,all,21,,20260428T035113Z,2026-04-28T04:09:14.699967+00:00 +2026-04-13,OpenCode,all,0,,20260428T035113Z,2026-04-28T04:09:14.699967+00:00 +2026-04-13,OpenAI Codex,all,382,,20260428T035113Z,2026-04-28T04:09:14.699967+00:00 +2026-04-13,Amp (Sourcegraph),all,0,,20260428T035113Z,2026-04-28T04:09:14.699967+00:00 +2026-04-13,Warp (Oz Agent),all,11,,20260428T035113Z,2026-04-28T04:09:14.699967+00:00 +2026-04-13,Codegen,all,0,,20260428T035113Z,2026-04-28T04:09:14.699967+00:00 +2026-04-13,Gru,all,0,,20260428T035113Z,2026-04-28T04:09:14.699967+00:00 +2026-04-13,Junie (JetBrains),all,20,,20260428T035113Z,2026-04-28T04:09:14.699967+00:00 +2026-04-13,Crush,all,0,,20260428T035113Z,2026-04-28T04:09:14.699967+00:00 +2026-04-13,Sketch,all,0,,20260428T035113Z,2026-04-28T04:09:14.699967+00:00 +2026-04-13,Kilo Code,all,170,,20260428T035113Z,2026-04-28T04:09:14.699967+00:00 +2026-04-14,Claude Code,all,39664,,20260428T035113Z,2026-04-28T04:15:17.515089+00:00 +2026-04-14,Copilot,all,386,,20260428T035113Z,2026-04-28T04:15:17.515089+00:00 +2026-04-14,Copilot SWE Agent,all,0,,20260428T035113Z,2026-04-28T04:15:17.515089+00:00 +2026-04-14,Cursor,all,1797,,20260428T035113Z,2026-04-28T04:15:17.515089+00:00 +2026-04-14,Aider,all,12,,20260428T035113Z,2026-04-28T04:15:17.515089+00:00 +2026-04-14,Devin,all,175,,20260428T035113Z,2026-04-28T04:15:17.515089+00:00 +2026-04-14,Lovable,all,0,,20260428T035113Z,2026-04-28T04:15:17.515089+00:00 +2026-04-14,OpenHands,all,391,,20260428T035113Z,2026-04-28T04:15:17.515089+00:00 +2026-04-14,Gemini Code Assist,all,0,,20260428T035113Z,2026-04-28T04:15:17.515089+00:00 +2026-04-14,Coderabbit,all,66,,20260428T035113Z,2026-04-28T04:15:17.515089+00:00 +2026-04-14,ChatGPT,all,24,,20260428T035113Z,2026-04-28T04:15:17.515089+00:00 +2026-04-14,Gemini CLI,all,0,,20260428T035113Z,2026-04-28T04:15:17.515089+00:00 +2026-04-14,Jules (Google),all,2920,,20260428T035113Z,2026-04-28T04:15:17.515089+00:00 +2026-04-14,Cline,all,393,,20260428T035113Z,2026-04-28T04:15:17.515089+00:00 +2026-04-14,Sourcery AI,all,0,,20260428T035113Z,2026-04-28T04:15:17.515089+00:00 +2026-04-14,DeepSource,all,14,,20260428T035113Z,2026-04-28T04:15:17.515089+00:00 +2026-04-14,Sweep AI,all,0,,20260428T035113Z,2026-04-28T04:15:17.515089+00:00 +2026-04-14,Qwen Coder,all,0,,20260428T035113Z,2026-04-28T04:15:17.515089+00:00 +2026-04-14,Roo Code,all,49,,20260428T035113Z,2026-04-28T04:15:17.515089+00:00 +2026-04-14,OpenCode,all,8,,20260428T035113Z,2026-04-28T04:15:17.515089+00:00 +2026-04-14,OpenAI Codex,all,508,,20260428T035113Z,2026-04-28T04:15:17.515089+00:00 +2026-04-14,Amp (Sourcegraph),all,0,,20260428T035113Z,2026-04-28T04:15:17.515089+00:00 +2026-04-14,Warp (Oz Agent),all,0,,20260428T035113Z,2026-04-28T04:15:17.515089+00:00 +2026-04-14,Codegen,all,0,,20260428T035113Z,2026-04-28T04:15:17.515089+00:00 +2026-04-14,Gru,all,0,,20260428T035113Z,2026-04-28T04:15:17.515089+00:00 +2026-04-14,Junie (JetBrains),all,14,,20260428T035113Z,2026-04-28T04:15:17.515089+00:00 +2026-04-14,Crush,all,0,,20260428T035113Z,2026-04-28T04:15:17.515089+00:00 +2026-04-14,Sketch,all,0,,20260428T035113Z,2026-04-28T04:15:17.515089+00:00 +2026-04-14,Kilo Code,all,149,,20260428T035113Z,2026-04-28T04:15:17.515089+00:00 +2026-04-15,Claude Code,all,36867,,20260428T035113Z,2026-04-28T04:21:17.974715+00:00 +2026-04-15,Copilot,all,422,1,20260428T035113Z,2026-04-28T04:21:17.974715+00:00 +2026-04-15,Copilot SWE Agent,all,0,,20260428T035113Z,2026-04-28T04:21:17.974715+00:00 +2026-04-15,Cursor,all,1676,,20260428T035113Z,2026-04-28T04:21:17.974715+00:00 +2026-04-15,Aider,all,23,,20260428T035113Z,2026-04-28T04:21:17.974715+00:00 +2026-04-15,Devin,all,176,,20260428T035113Z,2026-04-28T04:21:17.974715+00:00 +2026-04-15,Lovable,all,0,,20260428T035113Z,2026-04-28T04:21:17.974715+00:00 +2026-04-15,OpenHands,all,369,,20260428T035113Z,2026-04-28T04:21:17.974715+00:00 +2026-04-15,Gemini Code Assist,all,0,,20260428T035113Z,2026-04-28T04:21:17.974715+00:00 +2026-04-15,Coderabbit,all,62,,20260428T035113Z,2026-04-28T04:21:17.974715+00:00 +2026-04-15,ChatGPT,all,11,,20260428T035113Z,2026-04-28T04:21:17.974715+00:00 +2026-04-15,Gemini CLI,all,0,,20260428T035113Z,2026-04-28T04:21:17.974715+00:00 +2026-04-15,Jules (Google),all,2953,1,20260428T035113Z,2026-04-28T04:21:17.974715+00:00 +2026-04-15,Cline,all,126,,20260428T035113Z,2026-04-28T04:21:17.974715+00:00 +2026-04-15,Sourcery AI,all,0,,20260428T035113Z,2026-04-28T04:21:17.974715+00:00 +2026-04-15,DeepSource,all,5,,20260428T035113Z,2026-04-28T04:21:17.974715+00:00 +2026-04-15,Sweep AI,all,0,,20260428T035113Z,2026-04-28T04:21:17.974715+00:00 +2026-04-15,Qwen Coder,all,0,,20260428T035113Z,2026-04-28T04:21:17.974715+00:00 +2026-04-15,Roo Code,all,46,,20260428T035113Z,2026-04-28T04:21:17.974715+00:00 +2026-04-15,OpenCode,all,1,,20260428T035113Z,2026-04-28T04:21:17.974715+00:00 +2026-04-15,OpenAI Codex,all,561,,20260428T035113Z,2026-04-28T04:21:17.974715+00:00 +2026-04-15,Amp (Sourcegraph),all,0,,20260428T035113Z,2026-04-28T04:21:17.974715+00:00 +2026-04-15,Warp (Oz Agent),all,0,,20260428T035113Z,2026-04-28T04:21:17.974715+00:00 +2026-04-15,Codegen,all,0,,20260428T035113Z,2026-04-28T04:21:17.974715+00:00 +2026-04-15,Gru,all,0,,20260428T035113Z,2026-04-28T04:21:17.974715+00:00 +2026-04-15,Junie (JetBrains),all,12,,20260428T035113Z,2026-04-28T04:21:17.974715+00:00 +2026-04-15,Crush,all,0,,20260428T035113Z,2026-04-28T04:21:17.974715+00:00 +2026-04-15,Sketch,all,0,,20260428T035113Z,2026-04-28T04:21:17.974715+00:00 +2026-04-15,Kilo Code,all,135,,20260428T035113Z,2026-04-28T04:21:17.974715+00:00 +2026-04-16,Claude Code,all,42090,,20260428T035113Z,2026-04-28T04:27:18.593080+00:00 +2026-04-16,Copilot,all,395,,20260428T035113Z,2026-04-28T04:27:18.593080+00:00 +2026-04-16,Copilot SWE Agent,all,0,,20260428T035113Z,2026-04-28T04:27:18.593080+00:00 +2026-04-16,Cursor,all,1647,,20260428T035113Z,2026-04-28T04:27:18.593080+00:00 +2026-04-16,Aider,all,5,,20260428T035113Z,2026-04-28T04:27:18.593080+00:00 +2026-04-16,Devin,all,105,,20260428T035113Z,2026-04-28T04:27:18.593080+00:00 +2026-04-16,Lovable,all,0,,20260428T035113Z,2026-04-28T04:27:18.593080+00:00 +2026-04-16,OpenHands,all,438,,20260428T035113Z,2026-04-28T04:27:18.593080+00:00 +2026-04-16,Gemini Code Assist,all,0,,20260428T035113Z,2026-04-28T04:27:18.593080+00:00 +2026-04-16,Coderabbit,all,54,,20260428T035113Z,2026-04-28T04:27:18.593080+00:00 +2026-04-16,ChatGPT,all,17,,20260428T035113Z,2026-04-28T04:27:18.593080+00:00 +2026-04-16,Gemini CLI,all,0,,20260428T035113Z,2026-04-28T04:27:18.593080+00:00 +2026-04-16,Jules (Google),all,2801,,20260428T035113Z,2026-04-28T04:27:18.593080+00:00 +2026-04-16,Cline,all,241,,20260428T035113Z,2026-04-28T04:27:18.593080+00:00 +2026-04-16,Sourcery AI,all,0,,20260428T035113Z,2026-04-28T04:27:18.593080+00:00 +2026-04-16,DeepSource,all,0,,20260428T035113Z,2026-04-28T04:27:18.593080+00:00 +2026-04-16,Sweep AI,all,0,,20260428T035113Z,2026-04-28T04:27:18.593080+00:00 +2026-04-16,Qwen Coder,all,0,1,20260428T035113Z,2026-04-28T04:27:18.593080+00:00 +2026-04-16,Roo Code,all,44,,20260428T035113Z,2026-04-28T04:27:18.593080+00:00 +2026-04-16,OpenCode,all,0,,20260428T035113Z,2026-04-28T04:27:18.593080+00:00 +2026-04-16,OpenAI Codex,all,571,,20260428T035113Z,2026-04-28T04:27:18.593080+00:00 +2026-04-16,Amp (Sourcegraph),all,0,,20260428T035113Z,2026-04-28T04:27:18.593080+00:00 +2026-04-16,Warp (Oz Agent),all,0,,20260428T035113Z,2026-04-28T04:27:18.593080+00:00 +2026-04-16,Codegen,all,1,,20260428T035113Z,2026-04-28T04:27:18.593080+00:00 +2026-04-16,Gru,all,0,,20260428T035113Z,2026-04-28T04:27:18.593080+00:00 +2026-04-16,Junie (JetBrains),all,20,,20260428T035113Z,2026-04-28T04:27:18.593080+00:00 +2026-04-16,Crush,all,0,,20260428T035113Z,2026-04-28T04:27:18.593080+00:00 +2026-04-16,Sketch,all,0,,20260428T035113Z,2026-04-28T04:27:18.593080+00:00 +2026-04-16,Kilo Code,all,157,,20260428T035113Z,2026-04-28T04:27:18.593080+00:00 +2026-04-17,Claude Code,all,43941,,20260428T035113Z,2026-04-28T04:46:31.729660+00:00 +2026-04-17,Copilot,all,388,,20260428T035113Z,2026-04-28T04:46:31.729660+00:00 +2026-04-17,Copilot SWE Agent,all,0,,20260428T035113Z,2026-04-28T04:46:31.729660+00:00 +2026-04-17,Cursor,all,1796,,20260428T035113Z,2026-04-28T04:46:31.729660+00:00 +2026-04-17,Aider,all,12,,20260428T035113Z,2026-04-28T04:46:31.729660+00:00 +2026-04-17,Devin,all,194,,20260428T035113Z,2026-04-28T04:46:31.729660+00:00 +2026-04-17,Lovable,all,0,,20260428T035113Z,2026-04-28T04:46:31.729660+00:00 +2026-04-17,OpenHands,all,484,,20260428T035113Z,2026-04-28T04:46:31.729660+00:00 +2026-04-17,Gemini Code Assist,all,0,,20260428T035113Z,2026-04-28T04:46:31.729660+00:00 +2026-04-17,Coderabbit,all,89,,20260428T035113Z,2026-04-28T04:46:31.729660+00:00 +2026-04-17,ChatGPT,all,6,,20260428T035113Z,2026-04-28T04:46:31.729660+00:00 +2026-04-17,Gemini CLI,all,0,,20260428T035113Z,2026-04-28T04:46:31.729660+00:00 +2026-04-17,Jules (Google),all,2958,,20260428T035113Z,2026-04-28T04:46:31.729660+00:00 +2026-04-17,Cline,all,186,,20260428T035113Z,2026-04-28T04:46:31.729660+00:00 +2026-04-17,Sourcery AI,all,0,,20260428T035113Z,2026-04-28T04:46:31.729660+00:00 +2026-04-17,DeepSource,all,7,,20260428T035113Z,2026-04-28T04:46:31.729660+00:00 +2026-04-17,Sweep AI,all,0,,20260428T035113Z,2026-04-28T04:46:31.729660+00:00 +2026-04-17,Qwen Coder,all,0,1,20260428T035113Z,2026-04-28T04:46:31.729660+00:00 +2026-04-17,Roo Code,all,46,,20260428T035113Z,2026-04-28T04:46:31.729660+00:00 +2026-04-17,OpenCode,all,0,,20260428T035113Z,2026-04-28T04:46:31.729660+00:00 +2026-04-17,OpenAI Codex,all,512,,20260428T035113Z,2026-04-28T04:46:31.729660+00:00 +2026-04-17,Amp (Sourcegraph),all,0,,20260428T035113Z,2026-04-28T04:46:31.729660+00:00 +2026-04-17,Warp (Oz Agent),all,0,,20260428T035113Z,2026-04-28T04:46:31.729660+00:00 +2026-04-17,Codegen,all,0,,20260428T035113Z,2026-04-28T04:46:31.729660+00:00 +2026-04-17,Gru,all,0,,20260428T035113Z,2026-04-28T04:46:31.729660+00:00 +2026-04-17,Junie (JetBrains),all,26,,20260428T035113Z,2026-04-28T04:46:31.729660+00:00 +2026-04-17,Crush,all,0,,20260428T035113Z,2026-04-28T04:46:31.729660+00:00 +2026-04-17,Sketch,all,0,,20260428T035113Z,2026-04-28T04:46:31.729660+00:00 +2026-04-17,Kilo Code,all,111,,20260428T035113Z,2026-04-28T04:46:31.729660+00:00 +2026-04-18,Claude Code,all,60979,,20260428T035113Z,2026-04-28T04:52:33.312820+00:00 +2026-04-18,Copilot,all,267,,20260428T035113Z,2026-04-28T04:52:33.312820+00:00 +2026-04-18,Copilot SWE Agent,all,0,,20260428T035113Z,2026-04-28T04:52:33.312820+00:00 +2026-04-18,Cursor,all,1799,,20260428T035113Z,2026-04-28T04:52:33.312820+00:00 +2026-04-18,Aider,all,15,,20260428T035113Z,2026-04-28T04:52:33.312820+00:00 +2026-04-18,Devin,all,252,,20260428T035113Z,2026-04-28T04:52:33.312820+00:00 +2026-04-18,Lovable,all,0,,20260428T035113Z,2026-04-28T04:52:33.312820+00:00 +2026-04-18,OpenHands,all,507,,20260428T035113Z,2026-04-28T04:52:33.312820+00:00 +2026-04-18,Gemini Code Assist,all,0,,20260428T035113Z,2026-04-28T04:52:33.312820+00:00 +2026-04-18,Coderabbit,all,86,,20260428T035113Z,2026-04-28T04:52:33.312820+00:00 +2026-04-18,ChatGPT,all,6,,20260428T035113Z,2026-04-28T04:52:33.312820+00:00 +2026-04-18,Gemini CLI,all,0,,20260428T035113Z,2026-04-28T04:52:33.312820+00:00 +2026-04-18,Jules (Google),all,3390,,20260428T035113Z,2026-04-28T04:52:33.312820+00:00 +2026-04-18,Cline,all,145,,20260428T035113Z,2026-04-28T04:52:33.312820+00:00 +2026-04-18,Sourcery AI,all,0,,20260428T035113Z,2026-04-28T04:52:33.312820+00:00 +2026-04-18,DeepSource,all,19,,20260428T035113Z,2026-04-28T04:52:33.312820+00:00 +2026-04-18,Sweep AI,all,0,,20260428T035113Z,2026-04-28T04:52:33.312820+00:00 +2026-04-18,Qwen Coder,all,0,,20260428T035113Z,2026-04-28T04:52:33.312820+00:00 +2026-04-18,Roo Code,all,34,,20260428T035113Z,2026-04-28T04:52:33.312820+00:00 +2026-04-18,OpenCode,all,11,,20260428T035113Z,2026-04-28T04:52:33.312820+00:00 +2026-04-18,OpenAI Codex,all,683,,20260428T035113Z,2026-04-28T04:52:33.312820+00:00 +2026-04-18,Amp (Sourcegraph),all,0,,20260428T035113Z,2026-04-28T04:52:33.312820+00:00 +2026-04-18,Warp (Oz Agent),all,0,,20260428T035113Z,2026-04-28T04:52:33.312820+00:00 +2026-04-18,Codegen,all,0,,20260428T035113Z,2026-04-28T04:52:33.312820+00:00 +2026-04-18,Gru,all,0,,20260428T035113Z,2026-04-28T04:52:33.312820+00:00 +2026-04-18,Junie (JetBrains),all,4,,20260428T035113Z,2026-04-28T04:52:33.312820+00:00 +2026-04-18,Crush,all,0,,20260428T035113Z,2026-04-28T04:52:33.312820+00:00 +2026-04-18,Sketch,all,,,20260428T035113Z,2026-04-28T04:52:33.312820+00:00 +2026-04-18,Kilo Code,all,60,,20260428T035113Z,2026-04-28T04:52:33.312820+00:00 +2026-04-19,Claude Code,all,41269,,20260428T035113Z,2026-04-28T05:47:48.792774+00:00 +2026-04-19,Copilot,all,368,,20260428T035113Z,2026-04-28T05:47:48.792774+00:00 +2026-04-19,Copilot SWE Agent,all,0,1,20260428T035113Z,2026-04-28T05:47:48.792774+00:00 +2026-04-19,Cursor,all,1989,,20260428T035113Z,2026-04-28T05:47:48.792774+00:00 +2026-04-19,Aider,all,2,,20260428T035113Z,2026-04-28T05:47:48.792774+00:00 +2026-04-19,Devin,all,350,,20260428T035113Z,2026-04-28T05:47:48.792774+00:00 +2026-04-19,Lovable,all,0,,20260428T035113Z,2026-04-28T05:47:48.792774+00:00 +2026-04-19,OpenHands,all,389,,20260428T035113Z,2026-04-28T05:47:48.792774+00:00 +2026-04-19,Gemini Code Assist,all,0,,20260428T035113Z,2026-04-28T05:47:48.792774+00:00 +2026-04-19,Coderabbit,all,74,,20260428T035113Z,2026-04-28T05:47:48.792774+00:00 +2026-04-19,ChatGPT,all,2,1,20260428T035113Z,2026-04-28T05:47:48.792774+00:00 +2026-04-19,Gemini CLI,all,0,,20260428T035113Z,2026-04-28T05:47:48.792774+00:00 +2026-04-19,Jules (Google),all,3108,,20260428T035113Z,2026-04-28T05:47:48.792774+00:00 +2026-04-19,Cline,all,72,,20260428T035113Z,2026-04-28T05:47:48.792774+00:00 +2026-04-19,Sourcery AI,all,0,,20260428T035113Z,2026-04-28T05:47:48.792774+00:00 +2026-04-19,DeepSource,all,3,,20260428T035113Z,2026-04-28T05:47:48.792774+00:00 +2026-04-19,Sweep AI,all,0,,20260428T035113Z,2026-04-28T05:47:48.792774+00:00 +2026-04-19,Qwen Coder,all,2,,20260428T035113Z,2026-04-28T05:47:48.792774+00:00 +2026-04-19,Roo Code,all,28,,20260428T035113Z,2026-04-28T05:47:48.792774+00:00 +2026-04-19,OpenCode,all,0,,20260428T035113Z,2026-04-28T05:47:48.792774+00:00 +2026-04-19,OpenAI Codex,all,492,,20260428T035113Z,2026-04-28T05:47:48.792774+00:00 +2026-04-19,Amp (Sourcegraph),all,0,,20260428T035113Z,2026-04-28T05:47:48.792774+00:00 +2026-04-19,Warp (Oz Agent),all,0,,20260428T035113Z,2026-04-28T05:47:48.792774+00:00 +2026-04-19,Codegen,all,0,,20260428T035113Z,2026-04-28T05:47:48.792774+00:00 +2026-04-19,Gru,all,0,,20260428T035113Z,2026-04-28T05:47:48.792774+00:00 +2026-04-19,Junie (JetBrains),all,0,,20260428T035113Z,2026-04-28T05:47:48.792774+00:00 +2026-04-19,Crush,all,0,,20260428T035113Z,2026-04-28T05:47:48.792774+00:00 +2026-04-19,Sketch,all,0,,20260428T035113Z,2026-04-28T05:47:48.792774+00:00 +2026-04-19,Kilo Code,all,50,,20260428T035113Z,2026-04-28T05:47:48.792774+00:00 +2026-04-20,Claude Code,all,42801,,20260428T035113Z,2026-04-28T06:08:51.131266+00:00 +2026-04-20,Copilot,all,454,1,20260428T035113Z,2026-04-28T06:08:51.131266+00:00 +2026-04-20,Copilot SWE Agent,all,0,,20260428T035113Z,2026-04-28T06:08:51.131266+00:00 +2026-04-20,Cursor,all,1936,,20260428T035113Z,2026-04-28T06:08:51.131266+00:00 +2026-04-20,Aider,all,28,,20260428T035113Z,2026-04-28T06:08:51.131266+00:00 +2026-04-20,Devin,all,311,,20260428T035113Z,2026-04-28T06:08:51.131266+00:00 +2026-04-20,Lovable,all,1,,20260428T035113Z,2026-04-28T06:08:51.131266+00:00 +2026-04-20,OpenHands,all,345,,20260428T035113Z,2026-04-28T06:08:51.131266+00:00 +2026-04-20,Gemini Code Assist,all,0,,20260428T035113Z,2026-04-28T06:08:51.131266+00:00 +2026-04-20,Coderabbit,all,80,,20260428T035113Z,2026-04-28T06:08:51.131266+00:00 +2026-04-20,ChatGPT,all,3,,20260428T035113Z,2026-04-28T06:08:51.131266+00:00 +2026-04-20,Gemini CLI,all,0,,20260428T035113Z,2026-04-28T06:08:51.131266+00:00 +2026-04-20,Jules (Google),all,2842,,20260428T035113Z,2026-04-28T06:08:51.131266+00:00 +2026-04-20,Cline,all,99,,20260428T035113Z,2026-04-28T06:08:51.131266+00:00 +2026-04-20,Sourcery AI,all,0,1,20260428T035113Z,2026-04-28T06:08:51.131266+00:00 +2026-04-20,DeepSource,all,6,,20260428T035113Z,2026-04-28T06:08:51.131266+00:00 +2026-04-20,Sweep AI,all,0,,20260428T035113Z,2026-04-28T06:08:51.131266+00:00 +2026-04-20,Qwen Coder,all,0,,20260428T035113Z,2026-04-28T06:08:51.131266+00:00 +2026-04-20,Roo Code,all,64,,20260428T035113Z,2026-04-28T06:08:51.131266+00:00 +2026-04-20,OpenCode,all,0,,20260428T035113Z,2026-04-28T06:08:51.131266+00:00 +2026-04-20,OpenAI Codex,all,544,,20260428T035113Z,2026-04-28T06:08:51.131266+00:00 +2026-04-20,Amp (Sourcegraph),all,0,,20260428T035113Z,2026-04-28T06:08:51.131266+00:00 +2026-04-20,Warp (Oz Agent),all,0,,20260428T035113Z,2026-04-28T06:08:51.131266+00:00 +2026-04-20,Codegen,all,0,,20260428T035113Z,2026-04-28T06:08:51.131266+00:00 +2026-04-20,Gru,all,0,,20260428T035113Z,2026-04-28T06:08:51.131266+00:00 +2026-04-20,Junie (JetBrains),all,23,,20260428T035113Z,2026-04-28T06:08:51.131266+00:00 +2026-04-20,Crush,all,0,,20260428T035113Z,2026-04-28T06:08:51.131266+00:00 +2026-04-20,Sketch,all,0,,20260428T035113Z,2026-04-28T06:08:51.131266+00:00 +2026-04-20,Kilo Code,all,37,,20260428T035113Z,2026-04-28T06:08:51.131266+00:00 +2026-04-21,Claude Code,all,39891,,20260428T035113Z,2026-04-28T07:08:09.305782+00:00 +2026-04-21,Copilot,all,318,1,20260428T035113Z,2026-04-28T07:08:09.305782+00:00 +2026-04-21,Copilot SWE Agent,all,1,,20260428T035113Z,2026-04-28T07:08:09.305782+00:00 +2026-04-21,Cursor,all,1945,,20260428T035113Z,2026-04-28T07:08:09.305782+00:00 +2026-04-21,Aider,all,43,,20260428T035113Z,2026-04-28T07:08:09.305782+00:00 +2026-04-21,Devin,all,254,,20260428T035113Z,2026-04-28T07:08:09.305782+00:00 +2026-04-21,Lovable,all,0,,20260428T035113Z,2026-04-28T07:08:09.305782+00:00 +2026-04-21,OpenHands,all,281,,20260428T035113Z,2026-04-28T07:08:09.305782+00:00 +2026-04-21,Gemini Code Assist,all,0,,20260428T035113Z,2026-04-28T07:08:09.305782+00:00 +2026-04-21,Coderabbit,all,69,,20260428T035113Z,2026-04-28T07:08:09.305782+00:00 +2026-04-21,ChatGPT,all,2,1,20260428T035113Z,2026-04-28T07:08:09.305782+00:00 +2026-04-21,Gemini CLI,all,0,,20260428T035113Z,2026-04-28T07:08:09.305782+00:00 +2026-04-21,Jules (Google),all,2525,1,20260428T035113Z,2026-04-28T07:08:09.305782+00:00 +2026-04-21,Cline,all,104,1,20260428T035113Z,2026-04-28T07:08:09.305782+00:00 +2026-04-21,Sourcery AI,all,0,,20260428T035113Z,2026-04-28T07:08:09.305782+00:00 +2026-04-21,DeepSource,all,12,,20260428T035113Z,2026-04-28T07:08:09.305782+00:00 +2026-04-21,Sweep AI,all,0,,20260428T035113Z,2026-04-28T07:08:09.305782+00:00 +2026-04-21,Qwen Coder,all,0,,20260428T035113Z,2026-04-28T07:08:09.305782+00:00 +2026-04-21,Roo Code,all,14,,20260428T035113Z,2026-04-28T07:08:09.305782+00:00 +2026-04-21,OpenCode,all,0,,20260428T035113Z,2026-04-28T07:08:09.305782+00:00 +2026-04-21,OpenAI Codex,all,558,,20260428T035113Z,2026-04-28T07:08:09.305782+00:00 +2026-04-21,Amp (Sourcegraph),all,0,,20260428T035113Z,2026-04-28T07:08:09.305782+00:00 +2026-04-21,Warp (Oz Agent),all,4,,20260428T035113Z,2026-04-28T07:08:09.305782+00:00 +2026-04-21,Codegen,all,0,,20260428T035113Z,2026-04-28T07:08:09.305782+00:00 +2026-04-21,Gru,all,0,1,20260428T035113Z,2026-04-28T07:08:09.305782+00:00 +2026-04-21,Junie (JetBrains),all,28,,20260428T035113Z,2026-04-28T07:08:09.305782+00:00 +2026-04-21,Crush,all,0,,20260428T035113Z,2026-04-28T07:08:09.305782+00:00 +2026-04-21,Sketch,all,0,,20260428T035113Z,2026-04-28T07:08:09.305782+00:00 +2026-04-21,Kilo Code,all,97,,20260428T035113Z,2026-04-28T07:08:09.305782+00:00 +2026-04-22,Claude Code,all,40096,,20260428T035113Z,2026-04-28T08:50:23.255963+00:00 +2026-04-22,Copilot,all,370,,20260428T035113Z,2026-04-28T08:50:23.255963+00:00 +2026-04-22,Copilot SWE Agent,all,0,1,20260428T035113Z,2026-04-28T08:50:23.255963+00:00 +2026-04-22,Cursor,all,1934,,20260428T035113Z,2026-04-28T08:50:23.255963+00:00 +2026-04-22,Aider,all,5,,20260428T035113Z,2026-04-28T08:50:23.255963+00:00 +2026-04-22,Devin,all,351,,20260428T035113Z,2026-04-28T08:50:23.255963+00:00 +2026-04-22,Lovable,all,0,1,20260428T035113Z,2026-04-28T08:50:23.255963+00:00 +2026-04-22,OpenHands,all,850,,20260428T035113Z,2026-04-28T08:50:23.255963+00:00 +2026-04-22,Gemini Code Assist,all,0,,20260428T035113Z,2026-04-28T08:50:23.255963+00:00 +2026-04-22,Coderabbit,all,79,,20260428T035113Z,2026-04-28T08:50:23.255963+00:00 +2026-04-22,ChatGPT,all,6,,20260428T035113Z,2026-04-28T08:50:23.255963+00:00 +2026-04-22,Gemini CLI,all,0,,20260428T035113Z,2026-04-28T08:50:23.255963+00:00 +2026-04-22,Jules (Google),all,2917,,20260428T035113Z,2026-04-28T08:50:23.255963+00:00 +2026-04-22,Cline,all,47,,20260428T035113Z,2026-04-28T08:50:23.255963+00:00 +2026-04-22,Sourcery AI,all,0,,20260428T035113Z,2026-04-28T08:50:23.255963+00:00 +2026-04-22,DeepSource,all,5,,20260428T035113Z,2026-04-28T08:50:23.255963+00:00 +2026-04-22,Sweep AI,all,0,,20260428T035113Z,2026-04-28T08:50:23.255963+00:00 +2026-04-22,Qwen Coder,all,0,,20260428T035113Z,2026-04-28T08:50:23.255963+00:00 +2026-04-22,Roo Code,all,15,,20260428T035113Z,2026-04-28T08:50:23.255963+00:00 +2026-04-22,OpenCode,all,0,,20260428T035113Z,2026-04-28T08:50:23.255963+00:00 +2026-04-22,OpenAI Codex,all,626,,20260428T035113Z,2026-04-28T08:50:23.255963+00:00 +2026-04-22,Amp (Sourcegraph),all,0,,20260428T035113Z,2026-04-28T08:50:23.255963+00:00 +2026-04-22,Warp (Oz Agent),all,0,,20260428T035113Z,2026-04-28T08:50:23.255963+00:00 +2026-04-22,Codegen,all,0,,20260428T035113Z,2026-04-28T08:50:23.255963+00:00 +2026-04-22,Gru,all,0,,20260428T035113Z,2026-04-28T08:50:23.255963+00:00 +2026-04-22,Junie (JetBrains),all,42,,20260428T035113Z,2026-04-28T08:50:23.255963+00:00 +2026-04-22,Crush,all,0,,20260428T035113Z,2026-04-28T08:50:23.255963+00:00 +2026-04-22,Sketch,all,0,,20260428T035113Z,2026-04-28T08:50:23.255963+00:00 +2026-04-22,Kilo Code,all,27,,20260428T035113Z,2026-04-28T08:50:23.255963+00:00 +2026-04-23,Claude Code,all,39378,,20260428T035113Z,2026-04-28T10:16:00.371869+00:00 +2026-04-23,Copilot,all,474,,20260428T035113Z,2026-04-28T10:16:00.371869+00:00 +2026-04-23,Copilot SWE Agent,all,,,20260428T035113Z,2026-04-28T10:16:00.371869+00:00 +2026-04-23,Cursor,all,1694,,20260428T035113Z,2026-04-28T10:16:00.371869+00:00 +2026-04-23,Aider,all,5,,20260428T035113Z,2026-04-28T10:16:00.371869+00:00 +2026-04-23,Devin,all,240,,20260428T035113Z,2026-04-28T10:16:00.371869+00:00 +2026-04-23,Lovable,all,0,,20260428T035113Z,2026-04-28T10:16:00.371869+00:00 +2026-04-23,OpenHands,all,1096,,20260428T035113Z,2026-04-28T10:16:00.371869+00:00 +2026-04-23,Gemini Code Assist,all,0,,20260428T035113Z,2026-04-28T10:16:00.371869+00:00 +2026-04-23,Coderabbit,all,66,,20260428T035113Z,2026-04-28T10:16:00.371869+00:00 +2026-04-23,ChatGPT,all,21,,20260428T035113Z,2026-04-28T10:16:00.371869+00:00 +2026-04-23,Gemini CLI,all,0,,20260428T035113Z,2026-04-28T10:16:00.371869+00:00 +2026-04-23,Jules (Google),all,2737,,20260428T035113Z,2026-04-28T10:16:00.371869+00:00 +2026-04-23,Cline,all,101,,20260428T035113Z,2026-04-28T10:16:00.371869+00:00 +2026-04-23,Sourcery AI,all,0,,20260428T035113Z,2026-04-28T10:16:00.371869+00:00 +2026-04-23,DeepSource,all,4,,20260428T035113Z,2026-04-28T10:16:00.371869+00:00 +2026-04-23,Sweep AI,all,0,,20260428T035113Z,2026-04-28T10:16:00.371869+00:00 +2026-04-23,Qwen Coder,all,1,,20260428T035113Z,2026-04-28T10:16:00.371869+00:00 +2026-04-23,Roo Code,all,14,,20260428T035113Z,2026-04-28T10:16:00.371869+00:00 +2026-04-23,OpenCode,all,0,,20260428T035113Z,2026-04-28T10:16:00.371869+00:00 +2026-04-23,OpenAI Codex,all,684,,20260428T035113Z,2026-04-28T10:16:00.371869+00:00 +2026-04-23,Amp (Sourcegraph),all,0,,20260428T035113Z,2026-04-28T10:16:00.371869+00:00 +2026-04-23,Warp (Oz Agent),all,0,,20260428T035113Z,2026-04-28T10:16:00.371869+00:00 +2026-04-23,Codegen,all,0,,20260428T035113Z,2026-04-28T10:16:00.371869+00:00 +2026-04-23,Gru,all,0,1,20260428T035113Z,2026-04-28T10:16:00.371869+00:00 +2026-04-23,Junie (JetBrains),all,29,,20260428T035113Z,2026-04-28T10:16:00.371869+00:00 +2026-04-23,Crush,all,0,,20260428T035113Z,2026-04-28T10:16:00.371869+00:00 +2026-04-23,Sketch,all,0,,20260428T035113Z,2026-04-28T10:16:00.371869+00:00 +2026-04-23,Kilo Code,all,45,,20260428T035113Z,2026-04-28T10:16:00.371869+00:00 +2026-04-24,Claude Code,all,42514,,20260428T035113Z,2026-04-28T11:16:32.938204+00:00 +2026-04-24,Copilot,all,397,,20260428T035113Z,2026-04-28T11:16:32.938204+00:00 +2026-04-24,Copilot SWE Agent,all,0,,20260428T035113Z,2026-04-28T11:16:32.938204+00:00 +2026-04-24,Cursor,all,1635,1,20260428T035113Z,2026-04-28T11:16:32.938204+00:00 +2026-04-24,Aider,all,8,,20260428T035113Z,2026-04-28T11:16:32.938204+00:00 +2026-04-24,Devin,all,230,1,20260428T035113Z,2026-04-28T11:16:32.938204+00:00 +2026-04-24,Lovable,all,0,,20260428T035113Z,2026-04-28T11:16:32.938204+00:00 +2026-04-24,OpenHands,all,1022,,20260428T035113Z,2026-04-28T11:16:32.938204+00:00 +2026-04-24,Gemini Code Assist,all,7,,20260428T035113Z,2026-04-28T11:16:32.938204+00:00 +2026-04-24,Coderabbit,all,64,,20260428T035113Z,2026-04-28T11:16:32.938204+00:00 +2026-04-24,ChatGPT,all,0,,20260428T035113Z,2026-04-28T11:16:32.938204+00:00 +2026-04-24,Gemini CLI,all,0,,20260428T035113Z,2026-04-28T11:16:32.938204+00:00 +2026-04-24,Jules (Google),all,2657,1,20260428T035113Z,2026-04-28T11:16:32.938204+00:00 +2026-04-24,Cline,all,87,,20260428T035113Z,2026-04-28T11:16:32.938204+00:00 +2026-04-24,Sourcery AI,all,0,,20260428T035113Z,2026-04-28T11:16:32.938204+00:00 +2026-04-24,DeepSource,all,13,,20260428T035113Z,2026-04-28T11:16:32.938204+00:00 +2026-04-24,Sweep AI,all,0,,20260428T035113Z,2026-04-28T11:16:32.938204+00:00 +2026-04-24,Qwen Coder,all,0,1,20260428T035113Z,2026-04-28T11:16:32.938204+00:00 +2026-04-24,Roo Code,all,6,,20260428T035113Z,2026-04-28T11:16:32.938204+00:00 +2026-04-24,OpenCode,all,0,,20260428T035113Z,2026-04-28T11:16:32.938204+00:00 +2026-04-24,OpenAI Codex,all,731,,20260428T035113Z,2026-04-28T11:16:32.938204+00:00 +2026-04-24,Amp (Sourcegraph),all,0,,20260428T035113Z,2026-04-28T11:16:32.938204+00:00 +2026-04-24,Warp (Oz Agent),all,0,,20260428T035113Z,2026-04-28T11:16:32.938204+00:00 +2026-04-24,Codegen,all,0,,20260428T035113Z,2026-04-28T11:16:32.938204+00:00 +2026-04-24,Gru,all,0,,20260428T035113Z,2026-04-28T11:16:32.938204+00:00 +2026-04-24,Junie (JetBrains),all,19,,20260428T035113Z,2026-04-28T11:16:32.938204+00:00 +2026-04-24,Crush,all,0,,20260428T035113Z,2026-04-28T11:16:32.938204+00:00 +2026-04-24,Sketch,all,0,,20260428T035113Z,2026-04-28T11:16:32.938204+00:00 +2026-04-24,Kilo Code,all,37,,20260428T035113Z,2026-04-28T11:16:32.938204+00:00 +2026-04-25,Claude Code,all,38630,,20260428T035113Z,2026-04-28T11:23:37.741907+00:00 +2026-04-25,Copilot,all,351,1,20260428T035113Z,2026-04-28T11:23:37.741907+00:00 +2026-04-25,Copilot SWE Agent,all,0,,20260428T035113Z,2026-04-28T11:23:37.741907+00:00 +2026-04-25,Cursor,all,1984,,20260428T035113Z,2026-04-28T11:23:37.741907+00:00 +2026-04-25,Aider,all,0,,20260428T035113Z,2026-04-28T11:23:37.741907+00:00 +2026-04-25,Devin,all,260,1,20260428T035113Z,2026-04-28T11:23:37.741907+00:00 +2026-04-25,Lovable,all,0,,20260428T035113Z,2026-04-28T11:23:37.741907+00:00 +2026-04-25,OpenHands,all,960,,20260428T035113Z,2026-04-28T11:23:37.741907+00:00 +2026-04-25,Gemini Code Assist,all,3,1,20260428T035113Z,2026-04-28T11:23:37.741907+00:00 +2026-04-25,Coderabbit,all,79,,20260428T035113Z,2026-04-28T11:23:37.741907+00:00 +2026-04-25,ChatGPT,all,10,,20260428T035113Z,2026-04-28T11:23:37.741907+00:00 +2026-04-25,Gemini CLI,all,0,,20260428T035113Z,2026-04-28T11:23:37.741907+00:00 +2026-04-25,Jules (Google),all,2558,,20260428T035113Z,2026-04-28T11:23:37.741907+00:00 +2026-04-25,Cline,all,101,,20260428T035113Z,2026-04-28T11:23:37.741907+00:00 +2026-04-25,Sourcery AI,all,0,,20260428T035113Z,2026-04-28T11:23:37.741907+00:00 +2026-04-25,DeepSource,all,7,,20260428T035113Z,2026-04-28T11:23:37.741907+00:00 +2026-04-25,Sweep AI,all,0,,20260428T035113Z,2026-04-28T11:23:37.741907+00:00 +2026-04-25,Qwen Coder,all,0,,20260428T035113Z,2026-04-28T11:23:37.741907+00:00 +2026-04-25,Roo Code,all,11,,20260428T035113Z,2026-04-28T11:23:37.741907+00:00 +2026-04-25,OpenCode,all,0,,20260428T035113Z,2026-04-28T11:23:37.741907+00:00 +2026-04-25,OpenAI Codex,all,805,,20260428T035113Z,2026-04-28T11:23:37.741907+00:00 +2026-04-25,Amp (Sourcegraph),all,0,,20260428T035113Z,2026-04-28T11:23:37.741907+00:00 +2026-04-25,Warp (Oz Agent),all,0,,20260428T035113Z,2026-04-28T11:23:37.741907+00:00 +2026-04-25,Codegen,all,0,1,20260428T035113Z,2026-04-28T11:23:37.741907+00:00 +2026-04-25,Gru,all,0,1,20260428T035113Z,2026-04-28T11:23:37.741907+00:00 +2026-04-25,Junie (JetBrains),all,0,,20260428T035113Z,2026-04-28T11:23:37.741907+00:00 +2026-04-25,Crush,all,0,,20260428T035113Z,2026-04-28T11:23:37.741907+00:00 +2026-04-25,Sketch,all,0,,20260428T035113Z,2026-04-28T11:23:37.741907+00:00 +2026-04-25,Kilo Code,all,,,20260428T035113Z,2026-04-28T11:23:37.741907+00:00 +2026-04-26,Claude Code,all,38108,,20260428T035113Z,2026-04-28T12:39:53.358673+00:00 +2026-04-26,Copilot,all,251,,20260428T035113Z,2026-04-28T12:39:53.358673+00:00 +2026-04-26,Copilot SWE Agent,all,0,,20260428T035113Z,2026-04-28T12:39:53.358673+00:00 +2026-04-26,Cursor,all,1968,,20260428T035113Z,2026-04-28T12:39:53.358673+00:00 +2026-04-26,Aider,all,2,,20260428T035113Z,2026-04-28T12:39:53.358673+00:00 +2026-04-26,Devin,all,169,,20260428T035113Z,2026-04-28T12:39:53.358673+00:00 +2026-04-26,Lovable,all,0,,20260428T035113Z,2026-04-28T12:39:53.358673+00:00 +2026-04-26,OpenHands,all,420,,20260428T035113Z,2026-04-28T12:39:53.358673+00:00 +2026-04-26,Gemini Code Assist,all,0,1,20260428T035113Z,2026-04-28T12:39:53.358673+00:00 +2026-04-26,Coderabbit,all,75,,20260428T035113Z,2026-04-28T12:39:53.358673+00:00 +2026-04-26,ChatGPT,all,4,,20260428T035113Z,2026-04-28T12:39:53.358673+00:00 +2026-04-26,Gemini CLI,all,0,,20260428T035113Z,2026-04-28T12:39:53.358673+00:00 +2026-04-26,Jules (Google),all,2551,1,20260428T035113Z,2026-04-28T12:39:53.358673+00:00 +2026-04-26,Cline,all,96,,20260428T035113Z,2026-04-28T12:39:53.358673+00:00 +2026-04-26,Sourcery AI,all,0,,20260428T035113Z,2026-04-28T12:39:53.358673+00:00 +2026-04-26,DeepSource,all,16,,20260428T035113Z,2026-04-28T12:39:53.358673+00:00 +2026-04-26,Sweep AI,all,0,,20260428T035113Z,2026-04-28T12:39:53.358673+00:00 +2026-04-26,Qwen Coder,all,2,,20260428T035113Z,2026-04-28T12:39:53.358673+00:00 +2026-04-26,Roo Code,all,15,,20260428T035113Z,2026-04-28T12:39:53.358673+00:00 +2026-04-26,OpenCode,all,4,,20260428T035113Z,2026-04-28T12:39:53.358673+00:00 +2026-04-26,OpenAI Codex,all,872,,20260428T035113Z,2026-04-28T12:39:53.358673+00:00 +2026-04-26,Amp (Sourcegraph),all,0,,20260428T035113Z,2026-04-28T12:39:53.358673+00:00 +2026-04-26,Warp (Oz Agent),all,0,,20260428T035113Z,2026-04-28T12:39:53.358673+00:00 +2026-04-26,Codegen,all,0,,20260428T035113Z,2026-04-28T12:39:53.358673+00:00 +2026-04-26,Gru,all,0,,20260428T035113Z,2026-04-28T12:39:53.358673+00:00 +2026-04-26,Junie (JetBrains),all,13,,20260428T035113Z,2026-04-28T12:39:53.358673+00:00 +2026-04-26,Crush,all,0,,20260428T035113Z,2026-04-28T12:39:53.358673+00:00 +2026-04-26,Sketch,all,0,,20260428T035113Z,2026-04-28T12:39:53.358673+00:00 +2026-04-26,Kilo Code,all,53,,20260428T035113Z,2026-04-28T12:39:53.358673+00:00 +2026-04-10,Copilot SWE Agent (new),all,19640,,20260504T182539Z,2026-05-04T18:25:39.476862+00:00 +2026-04-11,Copilot SWE Agent (new),all,18432,,20260504T182539Z,2026-05-04T18:25:43.962346+00:00 +2026-04-12,Copilot SWE Agent (new),all,19194,,20260504T182539Z,2026-05-04T18:25:48.489726+00:00 +2026-04-13,Copilot SWE Agent (new),all,18895,,20260504T182539Z,2026-05-04T18:25:53.003520+00:00 +2026-04-14,Copilot SWE Agent (new),all,18552,,20260504T182539Z,2026-05-04T18:25:57.641713+00:00 +2026-04-15,Copilot SWE Agent (new),all,18593,,20260504T182539Z,2026-05-04T18:26:02.208051+00:00 +2026-04-16,Copilot SWE Agent (new),all,19178,,20260504T182539Z,2026-05-04T18:26:06.818824+00:00 +2026-04-17,Copilot SWE Agent (new),all,18687,,20260504T182539Z,2026-05-04T18:26:11.474133+00:00 +2026-04-18,Copilot SWE Agent (new),all,17020,,20260504T182539Z,2026-05-04T18:26:15.933578+00:00 +2026-04-19,Copilot SWE Agent (new),all,17333,,20260504T182539Z,2026-05-04T18:26:20.587498+00:00 +2026-04-20,Copilot SWE Agent (new),all,17520,,20260504T182539Z,2026-05-04T18:26:25.379209+00:00 +2026-04-21,Copilot SWE Agent (new),all,16396,,20260504T182539Z,2026-05-04T18:26:29.929787+00:00 +2026-04-22,Copilot SWE Agent (new),all,12753,,20260504T182539Z,2026-05-04T18:26:34.477807+00:00 +2026-04-23,Copilot SWE Agent (new),all,13590,,20260504T182539Z,2026-05-04T18:26:38.969288+00:00 +2026-04-24,Copilot SWE Agent (new),all,12194,,20260504T182539Z,2026-05-04T18:26:43.740455+00:00 +2026-04-25,Copilot SWE Agent (new),all,10878,,20260504T182539Z,2026-05-04T18:26:48.269370+00:00 +2026-04-26,Copilot SWE Agent (new),all,10041,,20260504T182539Z,2026-05-04T18:26:52.778216+00:00 +2026-04-27,Claude Code,all,40808,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-27,Copilot,all,314,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-27,Copilot SWE Agent,all,0,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-27,Copilot SWE Agent (new),all,11952,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-27,Cursor,all,1861,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-27,Aider,all,8,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-27,Devin,all,312,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-27,Lovable,all,0,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-27,OpenHands,all,192,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-27,Gemini Code Assist,all,0,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-27,Coderabbit,all,67,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-27,ChatGPT,all,15,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-27,Gemini CLI,all,0,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-27,Jules (Google),all,2854,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-27,Cline,all,142,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-27,Sourcery AI,all,0,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-27,DeepSource,all,19,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-27,Sweep AI,all,1,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-27,Qwen Coder,all,0,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-27,Roo Code,all,9,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-27,OpenCode,all,1,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-27,OpenAI Codex,all,1071,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-27,Amp (Sourcegraph),all,0,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-27,Warp (Oz Agent),all,12,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-27,Codegen,all,0,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-27,Gru,all,0,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-27,Junie (JetBrains),all,32,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-27,Crush,all,0,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-27,Sketch,all,0,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-27,Kilo Code,all,55,,20260504T182539Z,2026-05-04T18:26:57.258091+00:00 +2026-04-28,Claude Code,all,37582,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-28,Copilot,all,288,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-28,Copilot SWE Agent,all,5,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-28,Copilot SWE Agent (new),all,11921,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-28,Cursor,all,2019,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-28,Aider,all,20,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-28,Devin,all,274,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-28,Lovable,all,0,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-28,OpenHands,all,323,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-28,Gemini Code Assist,all,0,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-28,Coderabbit,all,90,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-28,ChatGPT,all,8,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-28,Gemini CLI,all,0,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-28,Jules (Google),all,2266,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-28,Cline,all,101,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-28,Sourcery AI,all,0,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-28,DeepSource,all,12,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-28,Sweep AI,all,3,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-28,Qwen Coder,all,0,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-28,Roo Code,all,37,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-28,OpenCode,all,0,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-28,OpenAI Codex,all,868,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-28,Amp (Sourcegraph),all,1,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-28,Warp (Oz Agent),all,0,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-28,Codegen,all,0,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-28,Gru,all,0,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-28,Junie (JetBrains),all,23,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-28,Crush,all,0,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-28,Sketch,all,0,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-28,Kilo Code,all,55,,20260504T182539Z,2026-05-04T18:29:13.535623+00:00 +2026-04-29,Claude Code,all,41054,,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-29,Copilot,all,319,1,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-29,Copilot SWE Agent,all,0,,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-29,Copilot SWE Agent (new),all,11325,,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-29,Cursor,all,1981,,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-29,Aider,all,26,,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-29,Devin,all,262,,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-29,Lovable,all,0,,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-29,OpenHands,all,329,,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-29,Gemini Code Assist,all,0,,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-29,Coderabbit,all,60,,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-29,ChatGPT,all,6,,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-29,Gemini CLI,all,0,,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-29,Jules (Google),all,2500,,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-29,Cline,all,119,,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-29,Sourcery AI,all,0,,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-29,DeepSource,all,10,,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-29,Sweep AI,all,2,,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-29,Qwen Coder,all,0,,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-29,Roo Code,all,22,,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-29,OpenCode,all,0,,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-29,OpenAI Codex,all,1053,,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-29,Amp (Sourcegraph),all,0,,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-29,Warp (Oz Agent),all,6,,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-29,Codegen,all,0,,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-29,Gru,all,0,,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-29,Junie (JetBrains),all,26,,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-29,Crush,all,0,,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-29,Sketch,all,0,,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-29,Kilo Code,all,93,,20260504T182539Z,2026-05-04T18:31:29.986177+00:00 +2026-04-30,Claude Code,all,38473,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-04-30,Copilot,all,366,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-04-30,Copilot SWE Agent,all,0,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-04-30,Copilot SWE Agent (new),all,10500,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-04-30,Cursor,all,1748,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-04-30,Aider,all,3,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-04-30,Devin,all,266,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-04-30,Lovable,all,24,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-04-30,OpenHands,all,199,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-04-30,Gemini Code Assist,all,0,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-04-30,Coderabbit,all,87,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-04-30,ChatGPT,all,9,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-04-30,Gemini CLI,all,0,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-04-30,Jules (Google),all,2313,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-04-30,Cline,all,104,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-04-30,Sourcery AI,all,0,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-04-30,DeepSource,all,42,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-04-30,Sweep AI,all,0,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-04-30,Qwen Coder,all,0,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-04-30,Roo Code,all,59,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-04-30,OpenCode,all,0,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-04-30,OpenAI Codex,all,1144,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-04-30,Amp (Sourcegraph),all,2,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-04-30,Warp (Oz Agent),all,14,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-04-30,Codegen,all,0,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-04-30,Gru,all,0,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-04-30,Junie (JetBrains),all,6,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-04-30,Crush,all,0,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-04-30,Sketch,all,0,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-04-30,Kilo Code,all,65,,20260504T182539Z,2026-05-04T18:33:46.657058+00:00 +2026-05-01,Claude Code,all,37891,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-01,Copilot,all,272,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-01,Copilot SWE Agent,all,0,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-01,Copilot SWE Agent (new),all,9990,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-01,Cursor,all,1722,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-01,Aider,all,2,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-01,Devin,all,178,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-01,Lovable,all,28,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-01,OpenHands,all,267,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-01,Gemini Code Assist,all,0,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-01,Coderabbit,all,99,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-01,ChatGPT,all,11,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-01,Gemini CLI,all,0,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-01,Jules (Google),all,2505,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-01,Cline,all,102,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-01,Sourcery AI,all,0,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-01,DeepSource,all,17,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-01,Sweep AI,all,0,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-01,Qwen Coder,all,0,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-01,Roo Code,all,56,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-01,OpenCode,all,5,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-01,OpenAI Codex,all,912,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-01,Amp (Sourcegraph),all,0,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-01,Warp (Oz Agent),all,0,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-01,Codegen,all,0,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-01,Gru,all,0,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-01,Junie (JetBrains),all,1,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-01,Crush,all,0,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-01,Sketch,all,0,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-01,Kilo Code,all,64,,20260504T182539Z,2026-05-04T18:36:03.202706+00:00 +2026-05-02,Claude Code,all,32138,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-02,Copilot,all,260,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-02,Copilot SWE Agent,all,0,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-02,Copilot SWE Agent (new),all,10089,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-02,Cursor,all,1545,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-02,Aider,all,7,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-02,Devin,all,212,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-02,Lovable,all,0,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-02,OpenHands,all,680,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-02,Gemini Code Assist,all,0,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-02,Coderabbit,all,98,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-02,ChatGPT,all,8,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-02,Gemini CLI,all,0,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-02,Jules (Google),all,2407,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-02,Cline,all,59,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-02,Sourcery AI,all,0,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-02,DeepSource,all,29,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-02,Sweep AI,all,0,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-02,Qwen Coder,all,0,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-02,Roo Code,all,103,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-02,OpenCode,all,0,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-02,OpenAI Codex,all,901,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-02,Amp (Sourcegraph),all,0,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-02,Warp (Oz Agent),all,9,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-02,Codegen,all,0,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-02,Gru,all,0,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-02,Junie (JetBrains),all,0,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-02,Crush,all,0,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-02,Sketch,all,0,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-02,Kilo Code,all,35,,20260504T182539Z,2026-05-04T18:38:18.621468+00:00 +2026-05-03,Claude Code,all,34702,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-03,Copilot,all,342,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-03,Copilot SWE Agent,all,6,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-03,Copilot SWE Agent (new),all,10484,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-03,Cursor,all,1510,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-03,Aider,all,2,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-03,Devin,all,229,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-03,Lovable,all,1,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-03,OpenHands,all,669,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-03,Gemini Code Assist,all,0,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-03,Coderabbit,all,63,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-03,ChatGPT,all,10,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-03,Gemini CLI,all,0,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-03,Jules (Google),all,2490,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-03,Cline,all,62,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-03,Sourcery AI,all,0,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-03,DeepSource,all,37,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-03,Sweep AI,all,0,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-03,Qwen Coder,all,0,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-03,Roo Code,all,54,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-03,OpenCode,all,0,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-03,OpenAI Codex,all,913,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-03,Amp (Sourcegraph),all,0,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-03,Warp (Oz Agent),all,1,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-03,Codegen,all,0,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-03,Gru,all,0,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-03,Junie (JetBrains),all,0,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-03,Crush,all,0,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-03,Sketch,all,0,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-03,Kilo Code,all,10,,20260504T182539Z,2026-05-04T18:40:35.037414+00:00 +2026-05-04,Claude Code,all,40780,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-04,Copilot,all,454,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-04,Copilot SWE Agent,all,7,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-04,Copilot SWE Agent (new),all,11784,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-04,Cursor,all,1717,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-04,Aider,all,21,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-04,Devin,all,214,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-04,Lovable,all,0,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-04,OpenHands,all,540,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-04,Gemini Code Assist,all,0,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-04,Coderabbit,all,52,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-04,ChatGPT,all,32,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-04,Gemini CLI,all,0,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-04,Jules (Google),all,2462,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-04,Cline,all,106,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-04,Sourcery AI,all,0,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-04,DeepSource,all,28,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-04,Sweep AI,all,0,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-04,Qwen Coder,all,0,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-04,Roo Code,all,5,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-04,OpenCode,all,0,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-04,OpenAI Codex,all,908,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-04,Amp (Sourcegraph),all,0,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-04,Warp (Oz Agent),all,0,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-04,Codegen,all,0,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-04,Gru,all,0,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-04,Junie (JetBrains),all,1,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-04,Crush,all,0,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-04,Sketch,all,0,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-04,Kilo Code,all,48,,20260511T215822Z,2026-05-11T21:58:22.330509+00:00 +2026-05-05,Claude Code,all,40465,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-05,Copilot,all,309,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-05,Copilot SWE Agent,all,0,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-05,Copilot SWE Agent (new),all,11963,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-05,Cursor,all,1782,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-05,Aider,all,10,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-05,Devin,all,273,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-05,Lovable,all,0,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-05,OpenHands,all,552,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-05,Gemini Code Assist,all,0,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-05,Coderabbit,all,85,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-05,ChatGPT,all,49,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-05,Gemini CLI,all,0,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-05,Jules (Google),all,2315,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-05,Cline,all,170,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-05,Sourcery AI,all,0,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-05,DeepSource,all,21,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-05,Sweep AI,all,0,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-05,Qwen Coder,all,0,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-05,Roo Code,all,11,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-05,OpenCode,all,0,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-05,OpenAI Codex,all,1058,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-05,Amp (Sourcegraph),all,0,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-05,Warp (Oz Agent),all,0,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-05,Codegen,all,0,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-05,Gru,all,0,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-05,Junie (JetBrains),all,0,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-05,Crush,all,0,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-05,Sketch,all,0,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-05,Kilo Code,all,98,,20260511T215822Z,2026-05-11T22:00:37.500332+00:00 +2026-05-06,Claude Code,all,45500,,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-06,Copilot,all,457,1,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-06,Copilot SWE Agent,all,0,,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-06,Copilot SWE Agent (new),all,12321,,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-06,Cursor,all,2122,,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-06,Aider,all,4,,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-06,Devin,all,161,,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-06,Lovable,all,0,,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-06,OpenHands,all,368,,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-06,Gemini Code Assist,all,0,,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-06,Coderabbit,all,44,,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-06,ChatGPT,all,11,,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-06,Gemini CLI,all,0,,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-06,Jules (Google),all,2254,,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-06,Cline,all,289,,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-06,Sourcery AI,all,0,,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-06,DeepSource,all,11,,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-06,Sweep AI,all,0,,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-06,Qwen Coder,all,0,,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-06,Roo Code,all,29,,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-06,OpenCode,all,0,,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-06,OpenAI Codex,all,1104,,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-06,Amp (Sourcegraph),all,0,,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-06,Warp (Oz Agent),all,0,,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-06,Codegen,all,0,,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-06,Gru,all,0,,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-06,Junie (JetBrains),all,17,,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-06,Crush,all,1,,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-06,Sketch,all,0,,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-06,Kilo Code,all,60,,20260511T215822Z,2026-05-11T22:02:53.360691+00:00 +2026-05-07,Claude Code,all,48359,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-07,Copilot,all,393,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-07,Copilot SWE Agent,all,1,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-07,Copilot SWE Agent (new),all,14831,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-07,Cursor,all,2122,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-07,Aider,all,4,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-07,Devin,all,139,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-07,Lovable,all,0,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-07,OpenHands,all,462,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-07,Gemini Code Assist,all,0,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-07,Coderabbit,all,35,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-07,ChatGPT,all,16,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-07,Gemini CLI,all,0,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-07,Jules (Google),all,2697,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-07,Cline,all,125,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-07,Sourcery AI,all,0,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-07,DeepSource,all,10,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-07,Sweep AI,all,0,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-07,Qwen Coder,all,0,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-07,Roo Code,all,49,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-07,OpenCode,all,0,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-07,OpenAI Codex,all,1294,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-07,Amp (Sourcegraph),all,0,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-07,Warp (Oz Agent),all,0,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-07,Codegen,all,0,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-07,Gru,all,0,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-07,Junie (JetBrains),all,10,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-07,Crush,all,0,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-07,Sketch,all,0,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-07,Kilo Code,all,47,,20260511T215822Z,2026-05-11T22:05:08.354660+00:00 +2026-05-08,Claude Code,all,41046,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-08,Copilot,all,431,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-08,Copilot SWE Agent,all,1,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-08,Copilot SWE Agent (new),all,13103,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-08,Cursor,all,1822,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-08,Aider,all,8,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-08,Devin,all,142,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-08,Lovable,all,0,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-08,OpenHands,all,400,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-08,Gemini Code Assist,all,0,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-08,Coderabbit,all,56,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-08,ChatGPT,all,17,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-08,Gemini CLI,all,0,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-08,Jules (Google),all,3029,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-08,Cline,all,93,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-08,Sourcery AI,all,0,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-08,DeepSource,all,37,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-08,Sweep AI,all,0,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-08,Qwen Coder,all,0,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-08,Roo Code,all,23,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-08,OpenCode,all,0,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-08,OpenAI Codex,all,1567,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-08,Amp (Sourcegraph),all,0,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-08,Warp (Oz Agent),all,0,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-08,Codegen,all,0,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-08,Gru,all,0,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-08,Junie (JetBrains),all,35,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-08,Crush,all,0,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-08,Sketch,all,0,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-08,Kilo Code,all,45,,20260511T215822Z,2026-05-11T22:07:24.185060+00:00 +2026-05-09,Claude Code,all,30912,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-09,Copilot,all,545,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-09,Copilot SWE Agent,all,5,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-09,Copilot SWE Agent (new),all,11504,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-09,Cursor,all,1858,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-09,Aider,all,6,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-09,Devin,all,70,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-09,Lovable,all,0,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-09,OpenHands,all,427,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-09,Gemini Code Assist,all,0,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-09,Coderabbit,all,54,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-09,ChatGPT,all,6,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-09,Gemini CLI,all,0,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-09,Jules (Google),all,2992,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-09,Cline,all,18,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-09,Sourcery AI,all,0,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-09,DeepSource,all,7,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-09,Sweep AI,all,0,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-09,Qwen Coder,all,0,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-09,Roo Code,all,27,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-09,OpenCode,all,0,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-09,OpenAI Codex,all,1121,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-09,Amp (Sourcegraph),all,0,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-09,Warp (Oz Agent),all,0,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-09,Codegen,all,0,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-09,Gru,all,0,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-09,Junie (JetBrains),all,1,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-09,Crush,all,2,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-09,Sketch,all,0,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-09,Kilo Code,all,51,,20260511T215822Z,2026-05-11T22:09:39.963281+00:00 +2026-05-10,Claude Code,all,30311,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 +2026-05-10,Copilot,all,256,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 +2026-05-10,Copilot SWE Agent,all,0,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 +2026-05-10,Copilot SWE Agent (new),all,10898,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 +2026-05-10,Cursor,all,2258,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 +2026-05-10,Aider,all,1,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 +2026-05-10,Devin,all,154,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 +2026-05-10,Lovable,all,0,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 +2026-05-10,OpenHands,all,804,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 +2026-05-10,Gemini Code Assist,all,0,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 +2026-05-10,Coderabbit,all,46,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 +2026-05-10,ChatGPT,all,17,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 +2026-05-10,Gemini CLI,all,0,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 +2026-05-10,Jules (Google),all,3096,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 +2026-05-10,Cline,all,37,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 +2026-05-10,Sourcery AI,all,0,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 +2026-05-10,DeepSource,all,11,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 +2026-05-10,Sweep AI,all,0,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 +2026-05-10,Qwen Coder,all,0,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 +2026-05-10,Roo Code,all,24,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 +2026-05-10,OpenCode,all,4,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 +2026-05-10,OpenAI Codex,all,934,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 +2026-05-10,Amp (Sourcegraph),all,0,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 +2026-05-10,Warp (Oz Agent),all,25,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 +2026-05-10,Codegen,all,0,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 +2026-05-10,Gru,all,0,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 +2026-05-10,Junie (JetBrains),all,5,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 +2026-05-10,Crush,all,0,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 +2026-05-10,Sketch,all,0,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 +2026-05-10,Kilo Code,all,39,,20260511T215822Z,2026-05-11T22:11:54.745659+00:00 diff --git a/daily_carbon_estimates.csv b/daily_carbon_estimates.csv new file mode 100644 index 0000000..7f9572f --- /dev/null +++ b/daily_carbon_estimates.csv @@ -0,0 +1,3477 @@ +date,provider_group,signal,activity_count,tokens_mid,kwh_low,kwh_mid,kwh_high,tco2e_low,tco2e_mid,tco2e_high +2025-02-01,AWS / Anthropic,commit,433,909090000,221.8349,633.6964,1774.1852,0.054117,0.181871,0.58557 +2025-02-01,Azure / Microsoft,commit,384,383950000,19.9617,56.9969,159.5404,0.005939,0.019949,0.064215 +2025-02-01,Google,commit,144,201810000,7.5907,21.6805,60.695,0.001807,0.006071,0.019544 +2025-02-01,Other / Unknown,commit,95,142500000,23.7982,67.9731,190.2943,0.008091,0.027189,0.087535 +2025-02-02,AWS / Anthropic,commit,420,881160000,215.0195,614.2273,1719.6769,0.052454,0.176283,0.567579 +2025-02-02,Azure / Microsoft,commit,368,367650000,19.1142,54.5772,152.7674,0.005686,0.019102,0.061489 +2025-02-02,Google,commit,139,194250000,7.3064,20.8683,58.4213,0.001739,0.005843,0.018812 +2025-02-02,Other / Unknown,commit,122,183000000,30.5619,87.2918,244.378,0.010391,0.034917,0.112414 +2025-02-03,AWS / Anthropic,commit,531,1115730000,272.2589,777.7383,2177.465,0.066418,0.223211,0.718672 +2025-02-03,Azure / Microsoft,commit,467,467450000,24.3029,69.3924,194.2366,0.00723,0.024287,0.07818 +2025-02-03,Google,commit,176,246750000,9.2811,26.5084,74.2109,0.002209,0.007422,0.023896 +2025-02-03,Other / Unknown,commit,34,51000000,8.5173,24.3272,68.1053,0.002896,0.009731,0.031328 +2025-02-04,AWS / Anthropic,commit,1260,2645370000,645.5197,1843.9995,5162.7192,0.157475,0.529228,1.703955 +2025-02-04,Azure / Microsoft,commit,1112,1112100000,57.8184,165.09,462.1041,0.017201,0.057781,0.185997 +2025-02-04,Google,commit,418,585480000,22.0218,62.8981,176.0851,0.005241,0.017611,0.056699 +2025-02-04,Other / Unknown,commit,166,249000000,41.5842,118.7741,332.5143,0.014139,0.04751,0.152957 +2025-02-05,AWS / Anthropic,commit,564,1185030000,289.1694,826.045,2312.7113,0.070543,0.237075,0.76331 +2025-02-05,Azure / Microsoft,commit,489,488850000,25.4155,72.5692,203.1288,0.007561,0.025399,0.081759 +2025-02-05,Google,commit,186,260190000,9.7866,27.9522,78.253,0.002329,0.007827,0.025197 +2025-02-05,Other / Unknown,commit,100,150000000,25.0507,71.5507,200.3098,0.008517,0.02862,0.092143 +2025-02-06,AWS / Anthropic,commit,951,1997415000,487.4065,1392.3316,3898.1665,0.118903,0.399599,1.28659 +2025-02-06,Azure / Microsoft,commit,837,836700000,43.5003,124.2072,347.6688,0.012941,0.043473,0.139937 +2025-02-06,Google,commit,315,441210000,16.5953,47.3992,132.6954,0.00395,0.013272,0.042728 +2025-02-06,Other / Unknown,commit,94,141000000,23.5477,67.2576,188.2912,0.008006,0.026903,0.086614 +2025-02-07,AWS / Anthropic,commit,691,1450680000,353.993,1011.2208,2831.1554,0.086357,0.29022,0.934423 +2025-02-07,Azure / Microsoft,commit,608,608150000,31.6179,90.2792,252.7008,0.009406,0.031598,0.101712 +2025-02-07,Google,commit,229,320670000,12.0614,34.4496,96.4426,0.002871,0.009646,0.031055 +2025-02-07,Other / Unknown,commit,100,150000000,25.0507,71.5507,200.3098,0.008517,0.02862,0.092143 +2025-02-08,AWS / Anthropic,commit,580,1218630000,297.3685,849.4665,2378.2853,0.072543,0.243797,0.784953 +2025-02-08,Azure / Microsoft,commit,506,506150000,26.3149,75.1374,210.3174,0.007829,0.026298,0.084653 +2025-02-08,Google,commit,192,268170000,10.0867,28.8095,80.653,0.002401,0.008067,0.02597 +2025-02-08,Other / Unknown,commit,51,76500000,12.7759,36.4908,102.158,0.004344,0.014596,0.046993 +2025-02-09,AWS / Anthropic,commit,527,1107330000,270.2092,771.8829,2161.0715,0.065918,0.22153,0.713262 +2025-02-09,Azure / Microsoft,commit,468,468050000,24.3341,69.4815,194.4859,0.007239,0.024319,0.078281 +2025-02-09,Google,commit,176,245910000,9.2495,26.4181,73.9583,0.002201,0.007397,0.023815 +2025-02-09,Other / Unknown,commit,147,220500000,36.8246,105.1795,294.4554,0.01252,0.042072,0.13545 +2025-02-10,AWS / Anthropic,commit,527,1106700000,270.0555,771.4438,2159.842,0.06588,0.221404,0.712856 +2025-02-10,Azure / Microsoft,commit,465,465250000,24.1885,69.0658,193.3225,0.007196,0.024173,0.077812 +2025-02-10,Google,commit,175,244650000,9.2021,26.2828,73.5793,0.00219,0.007359,0.023693 +2025-02-10,Other / Unknown,commit,151,226500000,37.8266,108.0415,302.4678,0.012861,0.043217,0.139135 +2025-02-11,AWS / Anthropic,commit,542,1137570000,277.5883,792.9622,2220.0881,0.067718,0.22758,0.73274 +2025-02-11,Azure / Microsoft,commit,473,473350000,24.6096,70.2683,196.6882,0.007321,0.024594,0.079167 +2025-02-11,Google,commit,179,250530000,9.4232,26.9144,75.3477,0.002243,0.007536,0.024262 +2025-02-11,Other / Unknown,commit,119,178500000,29.8104,85.1453,238.3687,0.010136,0.034058,0.10965 +2025-02-12,AWS / Anthropic,commit,554,1162875000,283.7632,810.6015,2269.4735,0.069224,0.232643,0.74904 +2025-02-12,Azure / Microsoft,commit,483,483250000,25.1243,71.7379,200.8019,0.007474,0.025108,0.080823 +2025-02-12,Google,commit,183,256200000,9.6365,27.5236,77.053,0.002293,0.007707,0.024811 +2025-02-12,Other / Unknown,commit,74,111000000,18.5376,52.9475,148.2293,0.006303,0.021179,0.068185 +2025-02-13,AWS / Anthropic,commit,469,984690000,240.2827,686.3947,1921.7266,0.058617,0.196995,0.634266 +2025-02-13,Azure / Microsoft,commit,414,413550000,21.5006,61.391,171.8399,0.006396,0.021487,0.069166 +2025-02-13,Google,commit,156,217770000,8.191,23.395,65.4951,0.001949,0.006551,0.021089 +2025-02-13,Other / Unknown,commit,347,520500000,86.9261,248.2808,695.0751,0.029555,0.099312,0.319735 +2025-02-14,AWS / Anthropic,commit,499,1047375000,255.579,730.0903,2044.063,0.062349,0.209536,0.674643 +2025-02-14,Azure / Microsoft,commit,435,434550000,22.5924,64.5085,180.5659,0.006721,0.022578,0.072678 +2025-02-14,Google,commit,165,230580000,8.6728,24.7712,69.3477,0.002064,0.006936,0.02233 +2025-02-14,Other / Unknown,commit,89,133500000,22.2952,63.6801,178.2757,0.00758,0.025472,0.082007 +2025-02-15,AWS / Anthropic,commit,524,1100190000,268.4669,766.9059,2147.1371,0.065492,0.220102,0.708663 +2025-02-15,Azure / Microsoft,commit,461,461400000,23.9883,68.4943,191.7227,0.007137,0.023973,0.077168 +2025-02-15,Google,commit,174,243180000,9.1468,26.1248,73.1372,0.002177,0.007315,0.02355 +2025-02-15,Other / Unknown,commit,236,354000000,59.1198,168.8596,472.7312,0.020101,0.067544,0.217456 +2025-02-16,AWS / Anthropic,commit,632,1327095000,323.8359,925.0738,2589.9662,0.079,0.265496,0.854818 +2025-02-16,Azure / Microsoft,commit,560,559750000,29.1016,83.0942,232.5895,0.008658,0.029083,0.093617 +2025-02-16,Google,commit,210,294420000,11.0741,31.6295,88.5478,0.002636,0.008856,0.028512 +2025-02-16,Other / Unknown,commit,177,265500000,44.3398,126.6447,354.5484,0.015076,0.050658,0.163092 +2025-02-17,AWS / Anthropic,commit,633,1329510000,324.4253,926.7572,2594.6793,0.079144,0.265979,0.856374 +2025-02-17,Azure / Microsoft,commit,562,562300000,29.2342,83.4728,233.6491,0.008697,0.029215,0.094044 +2025-02-17,Google,commit,211,294840000,11.0899,31.6747,88.6741,0.002639,0.008869,0.028553 +2025-02-17,Other / Unknown,commit,200,300000000,50.1015,143.1013,400.6196,0.017035,0.057241,0.184285 +2025-02-18,AWS / Anthropic,commit,614,1290135000,314.817,899.3102,2517.8348,0.0768,0.258102,0.831011 +2025-02-18,Azure / Microsoft,commit,547,547350000,28.4569,81.2535,227.437,0.008466,0.028439,0.091543 +2025-02-18,Google,commit,204,286020000,10.7581,30.7271,86.0215,0.00256,0.008604,0.027699 +2025-02-18,Other / Unknown,commit,131,196500000,32.8165,93.7314,262.4059,0.011158,0.037493,0.120707 +2025-02-19,AWS / Anthropic,commit,717,1506540000,367.6239,1050.1589,2940.1721,0.089682,0.301396,0.970404 +2025-02-19,Azure / Microsoft,commit,637,636650000,33.0996,94.51,264.5433,0.009847,0.033078,0.106479 +2025-02-19,Google,commit,239,334530000,12.5827,35.9386,100.611,0.002995,0.010063,0.032397 +2025-02-19,Other / Unknown,commit,73,109500000,18.287,52.232,146.2262,0.006218,0.020893,0.067264 +2025-02-20,AWS / Anthropic,commit,834,1750875000,427.2462,1220.4768,3417.0176,0.104227,0.350277,1.127787 +2025-02-20,Azure / Microsoft,commit,741,740750000,38.5118,109.9635,307.7993,0.011457,0.038487,0.123889 +2025-02-20,Google,commit,278,388500000,14.6127,41.7366,116.8427,0.003478,0.011686,0.037623 +2025-02-20,Other / Unknown,commit,467,700500000,116.987,334.1416,935.4469,0.039776,0.133657,0.430306 +2025-02-21,AWS / Anthropic,commit,744,1562085000,381.1779,1088.8775,3048.574,0.092988,0.312508,1.006182 +2025-02-21,Azure / Microsoft,commit,659,658650000,34.2434,97.7758,273.6848,0.010187,0.034222,0.110158 +2025-02-21,Google,commit,248,346500000,13.033,37.2245,104.211,0.003102,0.010423,0.033556 +2025-02-21,Other / Unknown,commit,140,210000000,35.071,100.1709,280.4338,0.011924,0.040068,0.129 +2025-02-22,AWS / Anthropic,commit,752,1579305000,385.3799,1100.881,3082.1806,0.094013,0.315953,1.017274 +2025-02-22,Azure / Microsoft,commit,668,667600000,34.7087,99.1045,277.4037,0.010326,0.034687,0.111655 +2025-02-22,Google,commit,250,350490000,13.183,37.6531,105.411,0.003138,0.010543,0.033942 +2025-02-22,Other / Unknown,commit,33,49500000,8.2667,23.6117,66.1022,0.002811,0.009445,0.030407 +2025-02-23,AWS / Anthropic,commit,464,975345000,238.0024,679.8806,1903.4889,0.058061,0.195126,0.628247 +2025-02-23,Azure / Microsoft,commit,435,434750000,22.6028,64.5381,180.649,0.006724,0.022588,0.072711 +2025-02-23,Google,commit,155,216720000,8.1515,23.2822,65.1793,0.00194,0.006519,0.020988 +2025-02-23,Other / Unknown,commit,78,117000000,19.5396,55.8095,156.2417,0.006643,0.022324,0.071871 +2025-02-24,AWS / Anthropic,commit,883,1854930000,452.6375,1293.01,3620.092,0.110421,0.371094,1.194811 +2025-02-24,Azure / Microsoft,commit,779,778650000,40.4823,115.5897,323.5477,0.012043,0.040456,0.130228 +2025-02-24,Google,commit,292,408870000,15.3789,43.9249,122.969,0.00366,0.012299,0.039596 +2025-02-24,Other / Unknown,commit,169,253500000,42.3358,120.9206,338.5236,0.014394,0.048368,0.155721 +2025-02-25,AWS / Anthropic,commit,7,14700000,3.5871,10.2469,28.6886,0.000875,0.002941,0.009469 +2025-02-25,Azure / Microsoft,commit,5,4900000,0.2548,0.7274,2.0361,7.6e-05,0.000255,0.00082 +2025-02-25,Google,commit,2,2940000,0.1106,0.3158,0.8842,2.6e-05,8.8e-05,0.000285 +2025-02-25,Other / Unknown,commit,104,156000000,26.0528,74.4127,208.3222,0.008858,0.029765,0.095828 +2025-02-26,AWS / Anthropic,commit,736,1545180000,377.0528,1077.0936,3015.5821,0.091982,0.309126,0.995293 +2025-02-26,Azure / Microsoft,commit,653,653150000,33.9575,96.9594,271.3994,0.010102,0.033936,0.109238 +2025-02-26,Google,commit,244,341670000,12.8513,36.7056,102.7584,0.003059,0.010278,0.033088 +2025-02-26,Other / Unknown,commit,262,393000000,65.633,187.4627,524.8117,0.022315,0.074985,0.241413 +2025-02-27,AWS / Anthropic,commit,613,1287300000,314.1252,897.334,2512.302,0.076631,0.257535,0.829185 +2025-02-27,Azure / Microsoft,commit,540,539600000,28.054,80.103,224.2167,0.008346,0.028036,0.090247 +2025-02-27,Google,commit,206,288960000,10.8687,31.043,86.9057,0.002587,0.008692,0.027984 +2025-02-27,Other / Unknown,commit,130,195000000,32.566,93.0159,260.4028,0.011072,0.037206,0.119785 +2025-02-28,AWS / Anthropic,commit,726,1524285000,371.954,1062.5284,2974.8033,0.090738,0.304946,0.981834 +2025-02-28,Azure / Microsoft,commit,641,641100000,33.331,95.1706,266.3924,0.009916,0.03331,0.107223 +2025-02-28,Google,commit,242,338870000,12.746,36.4048,101.9163,0.003034,0.010193,0.032817 +2025-02-28,Other / Unknown,commit,164,246000000,41.0832,117.3431,328.5081,0.013968,0.046937,0.151114 +2025-03-01,AWS / Anthropic,commit,672,1411515000,344.436,983.9202,2754.7207,0.084025,0.282385,0.909196 +2025-03-01,Azure / Microsoft,commit,619,618500000,32.156,91.8156,257.0015,0.009566,0.032135,0.103443 +2025-03-01,Google,commit,223,312690000,11.7613,33.5923,94.0426,0.002799,0.009406,0.030282 +2025-03-01,Other / Unknown,commit,249,373500000,62.3764,178.1612,498.7715,0.021208,0.071264,0.229435 +2025-03-02,AWS / Anthropic,commit,496,1042545000,254.4004,726.7235,2034.6368,0.062061,0.20857,0.671532 +2025-03-02,Azure / Microsoft,commit,443,442700000,23.0161,65.7183,183.9524,0.006847,0.023001,0.074041 +2025-03-02,Google,commit,165,230790000,8.6807,24.7938,69.4109,0.002066,0.006942,0.02235 +2025-03-02,Other / Unknown,commit,79,118500000,19.7901,56.525,158.2448,0.006729,0.02261,0.072793 +2025-03-03,AWS / Anthropic,commit,543,1141035000,278.4338,795.3776,2226.8504,0.067924,0.228273,0.734972 +2025-03-03,Azure / Microsoft,commit,480,480200000,24.9658,71.2851,199.5346,0.007427,0.02495,0.080313 +2025-03-03,Google,commit,180,252630000,9.5022,27.14,75.9793,0.002262,0.007599,0.024465 +2025-03-03,Other / Unknown,commit,449,673500000,112.4778,321.2625,899.3911,0.038242,0.128505,0.41372 +2025-03-04,AWS / Anthropic,commit,728,1527960000,372.8508,1065.0901,2981.9755,0.090957,0.305681,0.984201 +2025-03-04,Azure / Microsoft,commit,643,643450000,33.4532,95.5194,267.3688,0.009952,0.033432,0.107616 +2025-03-04,Google,commit,242,338730000,12.7407,36.3898,101.8742,0.003032,0.010189,0.032803 +2025-03-04,Other / Unknown,commit,119,178500000,29.8104,85.1453,238.3687,0.010136,0.034058,0.10965 +2025-03-05,AWS / Anthropic,commit,860,1805685000,440.6208,1258.683,3523.9851,0.107489,0.361242,1.163091 +2025-03-05,Azure / Microsoft,commit,762,761700000,39.601,113.0735,316.5045,0.011781,0.039576,0.127393 +2025-03-05,Google,commit,294,412230000,15.5053,44.2859,123.9795,0.00369,0.0124,0.039921 +2025-03-05,Other / Unknown,commit,111,166500000,27.8063,79.4212,222.3439,0.009454,0.031768,0.102278 +2025-03-06,AWS / Anthropic,commit,1357,2848965000,695.2006,1985.9188,5560.0563,0.169594,0.569959,1.835097 +2025-03-06,Azure / Microsoft,commit,1203,1202700000,62.5288,178.5394,499.7506,0.018602,0.062489,0.20115 +2025-03-06,Google,commit,473,661710000,24.889,71.0875,199.0115,0.005924,0.019905,0.064082 +2025-03-06,Other / Unknown,commit,130,195000000,32.566,93.0159,260.4028,0.011072,0.037206,0.119785 +2025-03-07,AWS / Anthropic,commit,830,1741950000,425.0683,1214.2554,3399.5996,0.103695,0.348491,1.122038 +2025-03-07,Azure / Microsoft,commit,741,741350000,38.543,110.0526,308.0486,0.011467,0.038518,0.12399 +2025-03-07,Google,commit,292,409010000,15.3842,43.94,123.0111,0.003661,0.012303,0.03961 +2025-03-07,Other / Unknown,commit,181,271500000,45.3418,129.5067,362.5608,0.015416,0.051803,0.166778 +2025-03-08,AWS / Anthropic,commit,1280,2687160000,655.7172,1873.1299,5244.2768,0.159962,0.537588,1.730874 +2025-03-08,Azure / Microsoft,commit,1115,1114750000,57.9562,165.4834,463.2052,0.017242,0.057919,0.18644 +2025-03-08,Google,commit,422,590310000,22.2034,63.417,177.5377,0.005284,0.017757,0.057167 +2025-03-08,Other / Unknown,commit,195,292500000,48.849,139.5238,390.6042,0.016609,0.05581,0.179678 +2025-03-09,AWS / Anthropic,commit,964,2024715000,494.0683,1411.3615,3951.4453,0.120528,0.405061,1.304175 +2025-03-09,Azure / Microsoft,commit,838,837600000,43.5471,124.3408,348.0428,0.012955,0.043519,0.140087 +2025-03-09,Google,commit,314,439950000,16.5479,47.2638,132.3164,0.003938,0.013234,0.042606 +2025-03-09,Other / Unknown,commit,163,244500000,40.8327,116.6276,326.505,0.013883,0.046651,0.150192 +2025-03-10,AWS / Anthropic,commit,711,1492785000,364.2674,1040.5708,2913.3277,0.088863,0.298644,0.961544 +2025-03-10,Azure / Microsoft,commit,600,599950000,31.1916,89.0619,249.2935,0.00928,0.031172,0.100341 +2025-03-10,Google,commit,228,319480000,12.0167,34.3217,96.0847,0.00286,0.00961,0.030939 +2025-03-10,Other / Unknown,commit,141,211500000,35.3215,100.8864,282.4368,0.012009,0.040355,0.129921 +2025-03-11,AWS / Anthropic,commit,1007,2114490000,515.975,1473.9407,4126.6507,0.125872,0.423021,1.362001 +2025-03-11,Azure / Microsoft,commit,890,889900000,46.2662,132.1046,369.7747,0.013764,0.046237,0.148834 +2025-03-11,Google,commit,343,480480000,18.0724,51.618,144.506,0.004301,0.014453,0.046531 +2025-03-11,Other / Unknown,commit,187,280500000,46.8449,133.7997,374.5794,0.015927,0.05352,0.172307 +2025-03-12,AWS / Anthropic,commit,2190,4599735000,1122.4212,3206.3223,8976.8691,0.273815,0.920215,2.962816 +2025-03-12,Azure / Microsoft,commit,1938,1938250000,100.7703,287.731,805.3891,0.029979,0.100706,0.324169 +2025-03-12,Google,commit,732,1025360000,38.5671,110.1544,308.3804,0.009179,0.030843,0.099298 +2025-03-12,Other / Unknown,commit,194,291000000,48.5984,138.8083,388.6011,0.016523,0.055523,0.178756 +2025-03-13,AWS / Anthropic,commit,1084,2276190000,555.4328,1586.6564,4442.2254,0.135498,0.45537,1.466156 +2025-03-13,Azure / Microsoft,commit,908,908350000,47.2254,134.8435,377.4411,0.01405,0.047195,0.15192 +2025-03-13,Google,commit,347,485450000,18.2593,52.1519,146.0007,0.004346,0.014603,0.047012 +2025-03-13,Other / Unknown,commit,164,246000000,41.0832,117.3431,328.5081,0.013968,0.046937,0.151114 +2025-03-14,AWS / Anthropic,commit,1222,2567040000,626.4057,1789.3982,5009.8499,0.152812,0.513557,1.653501 +2025-03-14,Azure / Microsoft,commit,1048,1048400000,54.5067,155.6338,435.6352,0.016216,0.054472,0.175343 +2025-03-14,Google,commit,403,564480000,21.2319,60.6421,169.7692,0.005053,0.01698,0.054666 +2025-03-14,Other / Unknown,commit,272,408000000,68.138,194.6178,544.8427,0.023167,0.077847,0.250628 +2025-03-15,AWS / Anthropic,commit,971,2038995000,497.5528,1421.3156,3979.3143,0.121378,0.407918,1.313373 +2025-03-15,Azure / Microsoft,commit,857,857400000,44.5765,127.28,356.2702,0.013262,0.044548,0.143399 +2025-03-15,Google,commit,328,458710000,17.2535,49.2792,137.9586,0.004106,0.013798,0.044423 +2025-03-15,Other / Unknown,commit,164,246000000,41.0832,117.3431,328.5081,0.013968,0.046937,0.151114 +2025-03-16,AWS / Anthropic,commit,981,2059995000,502.6772,1435.954,4020.298,0.122628,0.412119,1.326899 +2025-03-16,Azure / Microsoft,commit,871,870500000,45.2576,129.2247,361.7135,0.013464,0.045229,0.14559 +2025-03-16,Google,commit,329,459970000,17.3009,49.4146,138.3375,0.004118,0.013836,0.044545 +2025-03-16,Other / Unknown,commit,56,84000000,14.0284,40.0684,112.1735,0.00477,0.016027,0.0516 +2025-03-17,AWS / Anthropic,commit,419,880215000,214.7889,613.5686,1717.8326,0.052398,0.176094,0.566971 +2025-03-17,Azure / Microsoft,commit,364,363700000,18.9089,53.9908,151.126,0.005625,0.018897,0.060828 +2025-03-17,Google,commit,141,197610000,7.4327,21.2292,59.4319,0.001769,0.005944,0.019137 +2025-03-17,Other / Unknown,commit,287,430500000,71.8956,205.3504,574.8892,0.024445,0.08214,0.264449 +2025-03-18,AWS / Anthropic,commit,1272,2670885000,651.7458,1861.7851,5212.5144,0.158993,0.534332,1.72039 +2025-03-18,Azure / Microsoft,commit,1122,1121900000,58.328,166.5448,466.1762,0.017353,0.058291,0.187636 +2025-03-18,Google,commit,425,595350000,22.393,63.9585,179.0535,0.00533,0.017908,0.057655 +2025-03-18,Other / Unknown,commit,112,168000000,28.0568,80.1367,224.347,0.009539,0.032055,0.1032 +2025-03-19,AWS / Anthropic,commit,1552,3259830000,795.4594,2272.3191,6361.9028,0.194052,0.652156,2.099746 +2025-03-19,Azure / Microsoft,commit,1374,1373700000,71.4191,203.9242,570.8051,0.021247,0.071373,0.229749 +2025-03-19,Google,commit,522,730800000,27.4877,78.5099,219.7905,0.006542,0.021983,0.070773 +2025-03-19,Other / Unknown,commit,136,204000000,34.069,97.3089,272.4214,0.011583,0.038924,0.125314 +2025-03-20,AWS / Anthropic,commit,1423,2987670000,729.0472,2082.6054,5830.7538,0.177851,0.597708,1.92444 +2025-03-20,Azure / Microsoft,commit,1263,1262600000,65.643,187.4315,524.6404,0.019529,0.065601,0.211168 +2025-03-20,Google,commit,478,668780000,25.1549,71.847,201.1378,0.005987,0.020117,0.064766 +2025-03-20,Other / Unknown,commit,228,342000000,57.1157,163.1355,456.7064,0.019419,0.065254,0.210085 +2025-03-21,AWS / Anthropic,commit,1064,2234925000,545.3634,1557.8919,4361.6924,0.133041,0.447115,1.439577 +2025-03-21,Azure / Microsoft,commit,941,940950000,48.9203,139.683,390.9872,0.014554,0.048889,0.157372 +2025-03-21,Google,commit,359,502320000,18.8939,53.9642,151.0744,0.004497,0.01511,0.048646 +2025-03-21,Other / Unknown,commit,84,126000000,21.0426,60.1026,168.2603,0.007154,0.024041,0.0774 +2025-03-22,AWS / Anthropic,commit,726,1525335000,372.2102,1063.2603,2976.8525,0.090801,0.305156,0.98251 +2025-03-22,Azure / Microsoft,commit,644,643850000,33.474,95.5788,267.535,0.009959,0.033453,0.107683 +2025-03-22,Google,commit,242,338520000,12.7328,36.3672,101.811,0.00303,0.010183,0.032783 +2025-03-22,Other / Unknown,commit,109,163500000,27.3053,77.9902,218.3377,0.009284,0.031196,0.100435 +2025-03-23,AWS / Anthropic,commit,544,1141350000,278.5107,795.5971,2227.4652,0.067943,0.228336,0.735175 +2025-03-23,Azure / Microsoft,commit,475,475000000,24.6954,70.5132,197.3738,0.007347,0.02468,0.079443 +2025-03-23,Google,commit,178,249900000,9.3995,26.8468,75.1583,0.002237,0.007517,0.024201 +2025-03-23,Other / Unknown,commit,147,220500000,36.8246,105.1795,294.4554,0.01252,0.042072,0.13545 +2025-03-24,AWS / Anthropic,commit,941,1975680000,482.1028,1377.1808,3855.7484,0.117609,0.395251,1.27259 +2025-03-24,Azure / Microsoft,commit,808,807650000,41.99,119.8947,335.5979,0.012492,0.041963,0.135078 +2025-03-24,Google,commit,312,436170000,16.4057,46.8577,131.1796,0.003905,0.01312,0.04224 +2025-03-24,Other / Unknown,commit,258,387000000,64.6309,184.6007,516.7993,0.021975,0.07384,0.237728 +2025-03-25,AWS / Anthropic,commit,1093,2295405000,560.1217,1600.0505,4479.7255,0.136642,0.459214,1.478533 +2025-03-25,Azure / Microsoft,commit,951,951100000,49.448,141.1897,395.2048,0.014711,0.049416,0.15907 +2025-03-25,Google,commit,360,503790000,18.9491,54.1222,151.5165,0.00451,0.015154,0.048788 +2025-03-25,Other / Unknown,commit,265,397500000,66.3845,189.6093,530.821,0.022571,0.075844,0.244178 +2025-03-26,AWS / Anthropic,commit,989,2077740000,507.0073,1448.3235,4054.9292,0.123684,0.415669,1.338329 +2025-03-26,Azure / Microsoft,commit,879,879050000,45.7021,130.494,365.2663,0.013596,0.045673,0.14702 +2025-03-26,Google,commit,332,464170000,17.4589,49.8658,139.6007,0.004155,0.013962,0.044951 +2025-03-26,Other / Unknown,commit,288,432000000,72.1461,206.0659,576.8923,0.02453,0.082426,0.26537 +2025-03-27,AWS / Anthropic,commit,619,1300320000,317.3023,906.4098,2537.7119,0.077406,0.26014,0.837572 +2025-03-27,Azure / Microsoft,commit,550,549850000,28.5869,81.6246,228.4758,0.008505,0.028569,0.091962 +2025-03-27,Google,commit,210,293930000,11.0556,31.5769,88.4004,0.002631,0.008842,0.028465 +2025-03-27,Other / Unknown,commit,223,334500000,55.8632,159.558,446.6909,0.018993,0.063823,0.205478 +2025-03-28,AWS / Anthropic,commit,436,915180000,223.321,637.9416,1786.0705,0.054479,0.183089,0.589493 +2025-03-28,Azure / Microsoft,commit,384,383600000,19.9435,56.945,159.395,0.005933,0.019931,0.064156 +2025-03-28,Google,commit,148,206640000,7.7724,22.1993,62.1477,0.00185,0.006216,0.020012 +2025-03-28,Other / Unknown,commit,225,337500000,56.3642,160.989,450.6971,0.019164,0.064396,0.207321 +2025-03-29,AWS / Anthropic,commit,1334,2800665000,683.4145,1952.2505,5465.7938,0.166719,0.560296,1.803985 +2025-03-29,Azure / Microsoft,commit,1204,1204250000,62.6094,178.7695,500.3946,0.018626,0.062569,0.201409 +2025-03-29,Google,commit,446,624540000,23.4909,67.0943,187.8325,0.005591,0.018786,0.060482 +2025-03-29,Other / Unknown,commit,233,349500000,58.3682,166.7131,466.7219,0.019845,0.066685,0.214692 +2025-03-30,AWS / Anthropic,commit,1116,2344020000,571.9846,1633.9384,4574.6028,0.139536,0.46894,1.509848 +2025-03-30,Azure / Microsoft,commit,1000,999700000,51.9747,148.4043,415.3992,0.015462,0.051942,0.167198 +2025-03-30,Google,commit,375,525140000,19.7522,56.4158,157.9376,0.004701,0.015796,0.050856 +2025-03-30,Other / Unknown,commit,207,310500000,51.855,148.1099,414.6413,0.017631,0.059244,0.190735 +2025-03-31,AWS / Anthropic,commit,513,1077825000,263.0094,751.316,2103.4894,0.064161,0.215628,0.694257 +2025-03-31,Azure / Microsoft,commit,453,453200000,23.562,67.277,188.3154,0.00701,0.023547,0.075797 +2025-03-31,Google,commit,162,226170000,8.507,24.2974,68.0214,0.002025,0.006803,0.021903 +2025-03-31,Other / Unknown,commit,142,213000000,35.5721,101.6019,284.4399,0.012094,0.040641,0.130842 +2025-04-01,Azure / Microsoft,commit,504,503600000,26.1823,74.7588,209.2578,0.007789,0.026166,0.084226 +2025-04-01,AWS / Anthropic,commit,586,1231230000,300.4431,858.2495,2402.8755,0.073293,0.246318,0.793069 +2025-04-01,Google,commit,188,263340000,9.9051,28.2906,79.2004,0.002357,0.007921,0.025503 +2025-04-01,Other / Unknown,commit,267,400500000,66.8855,191.0403,534.8272,0.022741,0.076416,0.246021 +2025-04-02,Azure / Microsoft,commit,530,529700000,27.5393,78.6334,220.103,0.008193,0.027522,0.088591 +2025-04-02,AWS / Anthropic,commit,604,1268085000,309.4364,883.9399,2474.8019,0.075487,0.253691,0.816808 +2025-04-02,Google,commit,201,282030000,10.608,30.2985,84.8215,0.002525,0.008484,0.027313 +2025-04-02,Other / Unknown,commit,204,306000000,51.1035,145.9634,408.632,0.017375,0.058385,0.187971 +2025-04-03,Azure / Microsoft,commit,356,356250000,18.5216,52.8849,148.0304,0.00551,0.01851,0.059582 +2025-04-03,AWS / Anthropic,commit,404,848610000,207.0767,591.5378,1656.1521,0.050516,0.169771,0.546613 +2025-04-03,Google,commit,131,182910000,6.8798,19.65,55.0108,0.001637,0.005502,0.017713 +2025-04-03,Other / Unknown,commit,140,210000000,35.071,100.1709,280.4338,0.011924,0.040068,0.129 +2025-04-04,Azure / Microsoft,commit,717,716950000,37.2745,106.4304,297.9098,0.011089,0.037251,0.119909 +2025-04-04,AWS / Anthropic,commit,767,1611120000,393.1434,1123.0582,3144.271,0.095907,0.322318,1.037767 +2025-04-04,Google,commit,255,356790000,13.42,38.33,107.3058,0.003194,0.010732,0.034552 +2025-04-04,Other / Unknown,commit,152,228000000,38.0771,108.757,304.4709,0.012946,0.043503,0.140057 +2025-04-05,Azure / Microsoft,commit,468,467550000,24.3081,69.4073,194.2782,0.007232,0.024293,0.078197 +2025-04-05,AWS / Anthropic,commit,512,1076250000,262.6251,750.2181,2100.4156,0.064067,0.215313,0.693242 +2025-04-05,Google,commit,170,237930000,8.9493,25.5608,71.5582,0.00213,0.007157,0.023042 +2025-04-05,Other / Unknown,commit,36,54000000,9.0183,25.7582,72.1115,0.003066,0.010303,0.033171 +2025-04-06,Azure / Microsoft,commit,632,631650000,32.8397,93.7677,262.4657,0.00977,0.032819,0.105642 +2025-04-06,AWS / Anthropic,commit,694,1458240000,355.8378,1016.4906,2845.9095,0.086807,0.291733,0.939292 +2025-04-06,Google,commit,232,324730000,12.2141,34.8857,97.6636,0.002907,0.009768,0.031448 +2025-04-06,Other / Unknown,commit,355,532500000,88.9301,254.0049,711.0999,0.030236,0.101602,0.327106 +2025-04-07,Azure / Microsoft,commit,637,636500000,33.0918,94.4877,264.4809,0.009845,0.033071,0.106454 +2025-04-07,AWS / Anthropic,commit,719,1510215000,368.5206,1052.7207,2947.3442,0.089901,0.302131,0.972771 +2025-04-07,Google,commit,239,335090000,12.6038,35.9987,100.7794,0.003,0.01008,0.032451 +2025-04-07,Other / Unknown,commit,79,118500000,19.7901,56.525,158.2448,0.006729,0.02261,0.072793 +2025-04-08,Azure / Microsoft,commit,661,661000000,34.3656,98.1247,274.6613,0.010224,0.034344,0.110551 +2025-04-08,AWS / Anthropic,commit,756,1588440000,387.609,1107.2487,3100.0086,0.094557,0.31778,1.023158 +2025-04-08,Google,commit,251,350840000,13.1962,37.6907,105.5163,0.003141,0.010553,0.033976 +2025-04-08,Other / Unknown,commit,490,735000000,122.7486,350.5983,981.5181,0.041735,0.140239,0.451498 +2025-04-09,Azure / Microsoft,commit,519,518950000,26.9804,77.0375,215.6361,0.008027,0.026963,0.086794 +2025-04-09,AWS / Anthropic,commit,602,1264620000,308.5909,881.5246,2468.0396,0.075281,0.252998,0.814576 +2025-04-09,Google,commit,201,281190000,10.5765,30.2082,84.5688,0.002517,0.008458,0.027231 +2025-04-09,Other / Unknown,commit,104,156000000,26.0528,74.4127,208.3222,0.008858,0.029765,0.095828 +2025-04-10,Azure / Microsoft,commit,621,621000000,32.286,92.1867,258.0403,0.009605,0.032265,0.103861 +2025-04-10,AWS / Anthropic,commit,715,1500870000,366.2403,1046.2066,2929.1065,0.089344,0.300261,0.966752 +2025-04-10,Google,commit,235,329420000,12.3905,35.3896,99.0742,0.002949,0.009909,0.031902 +2025-04-10,Other / Unknown,commit,266,399000000,66.635,190.3248,532.8241,0.022656,0.07613,0.245099 +2025-04-11,Azure / Microsoft,commit,469,469000000,24.3835,69.6225,194.8807,0.007254,0.024368,0.078439 +2025-04-11,AWS / Anthropic,commit,546,1146390000,279.7406,799.1104,2237.3013,0.068243,0.229345,0.738421 +2025-04-11,Google,commit,181,253540000,9.5364,27.2378,76.253,0.00227,0.007627,0.024553 +2025-04-11,Other / Unknown,commit,492,738000000,123.2497,352.0293,985.5243,0.041905,0.140812,0.453341 +2025-04-12,Azure / Microsoft,commit,708,708100000,36.8144,105.1166,294.2325,0.010952,0.036791,0.118429 +2025-04-12,AWS / Anthropic,commit,798,1676325000,409.0546,1168.5104,3271.5254,0.099789,0.335362,1.079767 +2025-04-12,Google,commit,280,391510000,14.7259,42.0599,117.7479,0.003505,0.011777,0.037915 +2025-04-12,Other / Unknown,commit,385,577500000,96.4454,275.4701,771.1928,0.032791,0.110188,0.354749 +2025-04-13,Azure / Microsoft,commit,1452,1451800000,75.4796,215.518,603.2576,0.022455,0.075431,0.242811 +2025-04-13,AWS / Anthropic,commit,1563,3282405000,800.9681,2288.0554,6405.9603,0.195396,0.656672,2.114287 +2025-04-13,Google,commit,528,739410000,27.8116,79.4348,222.38,0.006619,0.022242,0.071606 +2025-04-13,Other / Unknown,commit,77,115500000,19.2891,55.094,154.2386,0.006558,0.022038,0.07095 +2025-04-14,Azure / Microsoft,commit,790,790300000,41.088,117.3191,328.3885,0.012224,0.041062,0.132176 +2025-04-14,AWS / Anthropic,commit,783,1643460000,401.0349,1145.6013,3207.3859,0.097832,0.328788,1.058598 +2025-04-14,Google,commit,265,371140000,13.9598,39.8716,111.6216,0.003322,0.011164,0.035942 +2025-04-14,Other / Unknown,commit,1123,1684500000,281.3199,803.514,2249.4793,0.095649,0.321406,1.03476 +2025-04-15,Azure / Microsoft,commit,483,482800000,25.1009,71.6711,200.6149,0.007468,0.025085,0.080748 +2025-04-15,AWS / Anthropic,commit,518,1087485000,265.3666,758.0496,2122.3419,0.064736,0.21756,0.700479 +2025-04-15,Google,commit,185,259490000,9.7602,27.877,78.0425,0.002323,0.007806,0.02513 +2025-04-15,Other / Unknown,commit,233,349500000,58.3682,166.7131,466.7219,0.019845,0.066685,0.214692 +2025-04-16,Azure / Microsoft,commit,408,408000000,21.2121,60.5671,169.5337,0.006311,0.021198,0.068237 +2025-04-16,AWS / Anthropic,commit,454,953085000,232.5705,664.3639,1860.0461,0.056736,0.190672,0.613908 +2025-04-16,Google,commit,150,210210000,7.9067,22.5829,63.2214,0.001882,0.006323,0.020357 +2025-04-16,Other / Unknown,commit,248,372000000,62.1258,177.4457,496.7684,0.021123,0.070978,0.228513 +2025-04-17,Azure / Microsoft,commit,402,402450000,20.9235,59.7432,167.2276,0.006225,0.02091,0.067309 +2025-04-17,AWS / Anthropic,commit,476,1000335000,244.1004,697.3003,1952.2595,0.059548,0.200125,0.644343 +2025-04-17,Google,commit,152,213080000,8.0146,22.8912,64.0845,0.001907,0.00641,0.020635 +2025-04-17,Other / Unknown,commit,236,354000000,59.1198,168.8596,472.7312,0.020101,0.067544,0.217456 +2025-04-18,Azure / Microsoft,commit,580,580450000,30.1778,86.1671,241.1908,0.008978,0.030158,0.097079 +2025-04-18,AWS / Anthropic,commit,675,1416555000,345.6659,987.4334,2764.5568,0.084325,0.283393,0.912442 +2025-04-18,Google,commit,233,326200000,12.2694,35.0437,98.1057,0.00292,0.009812,0.03159 +2025-04-18,Other / Unknown,commit,89,133500000,22.2952,63.6801,178.2757,0.00758,0.025472,0.082007 +2025-04-19,Azure / Microsoft,commit,445,445000000,23.1357,66.0597,184.9081,0.006883,0.023121,0.074426 +2025-04-19,AWS / Anthropic,commit,508,1066905000,260.3447,743.704,2082.1779,0.063511,0.213443,0.687223 +2025-04-19,Google,commit,164,229530000,8.6334,24.6584,69.0319,0.002055,0.006904,0.022228 +2025-04-19,Other / Unknown,commit,184,276000000,46.0934,131.6532,368.5701,0.015672,0.052661,0.169542 +2025-04-20,Azure / Microsoft,commit,708,708200000,36.8196,105.1315,294.274,0.010954,0.036796,0.118445 +2025-04-20,AWS / Anthropic,commit,798,1675275000,408.7984,1167.7785,3269.4762,0.099726,0.335152,1.079091 +2025-04-20,Google,commit,266,372470000,14.0098,40.0145,112.0216,0.003334,0.011204,0.036071 +2025-04-20,Other / Unknown,commit,235,352500000,58.8692,168.1441,470.7281,0.020016,0.067258,0.216535 +2025-04-21,Azure / Microsoft,commit,438,438250000,22.7848,65.0577,182.1033,0.006778,0.02277,0.073297 +2025-04-21,AWS / Anthropic,commit,521,1094100000,266.9808,762.6607,2135.2518,0.06513,0.218884,0.70474 +2025-04-21,Google,commit,169,236250000,8.8861,25.3803,71.053,0.002115,0.007106,0.022879 +2025-04-21,Other / Unknown,commit,157,235500000,39.3297,112.3345,314.4864,0.013372,0.044934,0.144664 +2025-04-22,Azure / Microsoft,commit,431,430550000,22.3844,63.9147,178.9038,0.006659,0.02237,0.072009 +2025-04-22,AWS / Anthropic,commit,526,1104600000,269.543,769.9799,2155.7437,0.065755,0.220984,0.711503 +2025-04-22,Google,commit,172,241430000,9.081,25.9368,72.6109,0.002161,0.007262,0.023381 +2025-04-22,Other / Unknown,commit,381,571500000,95.4433,272.608,763.1804,0.032451,0.109043,0.351063 +2025-04-23,Azure / Microsoft,commit,582,582000000,30.2584,86.3972,241.8349,0.009002,0.030239,0.097339 +2025-04-23,AWS / Anthropic,commit,691,1451940000,354.3005,1012.0991,2833.6144,0.086432,0.290472,0.935234 +2025-04-23,Google,commit,225,314440000,11.8271,33.7803,94.5689,0.002815,0.009458,0.030451 +2025-04-23,Other / Unknown,commit,316,474000000,79.1604,226.1001,632.979,0.026915,0.09044,0.29117 +2025-04-24,Azure / Microsoft,commit,454,453800000,23.5932,67.3661,188.5647,0.007019,0.023578,0.075897 +2025-04-24,AWS / Anthropic,commit,528,1109850000,270.8241,773.6395,2165.9896,0.066068,0.222035,0.714885 +2025-04-24,Google,commit,176,245980000,9.2521,26.4256,73.9793,0.002202,0.007399,0.023821 +2025-04-24,Other / Unknown,commit,459,688500000,114.9829,328.4176,919.4221,0.039094,0.131367,0.422934 +2025-04-25,Azure / Microsoft,commit,493,493350000,25.6494,73.2372,204.9987,0.007631,0.025633,0.082512 +2025-04-25,AWS / Anthropic,commit,536,1126020000,274.7699,784.9111,2197.5471,0.06703,0.225269,0.7253 +2025-04-25,Google,commit,192,269430000,10.1341,28.9449,81.032,0.002412,0.008105,0.026092 +2025-04-25,Other / Unknown,commit,256,384000000,64.1299,183.1697,512.7931,0.021804,0.073268,0.235885 +2025-04-26,Azure / Microsoft,commit,418,418450000,21.7554,62.1184,173.876,0.006472,0.021741,0.069985 +2025-04-26,AWS / Anthropic,commit,443,930195000,226.9849,648.408,1815.3739,0.055373,0.186093,0.599164 +2025-04-26,Google,commit,164,229040000,8.6149,24.6058,68.8845,0.00205,0.00689,0.022181 +2025-04-26,Other / Unknown,commit,236,354000000,59.1198,168.8596,472.7312,0.020101,0.067544,0.217456 +2025-04-27,Azure / Microsoft,commit,649,648950000,33.7391,96.3359,269.6542,0.010037,0.033718,0.108536 +2025-04-27,AWS / Anthropic,commit,645,1353870000,330.3695,943.7378,2642.2204,0.080594,0.270853,0.872065 +2025-04-27,Google,commit,228,319690000,12.0246,34.3443,96.1478,0.002862,0.009616,0.03096 +2025-04-27,Other / Unknown,commit,99,148500000,24.8002,70.8352,198.3067,0.008432,0.028334,0.091221 +2025-04-28,Azure / Microsoft,commit,626,626200000,32.5563,92.9587,260.201,0.009686,0.032536,0.104731 +2025-04-28,AWS / Anthropic,commit,711,1493205000,364.3699,1040.8636,2914.1474,0.088888,0.298728,0.961814 +2025-04-28,Google,commit,251,351050000,13.2041,37.7133,105.5795,0.003143,0.01056,0.033997 +2025-04-28,Other / Unknown,commit,328,492000000,82.1664,234.6862,657.0162,0.027937,0.093874,0.302227 +2025-04-29,Azure / Microsoft,commit,432,431550000,22.4364,64.0631,179.3193,0.006675,0.022422,0.072176 +2025-04-29,AWS / Anthropic,commit,484,1017450000,248.2768,709.2306,1985.6612,0.060567,0.203549,0.655367 +2025-04-29,Google,commit,166,232330000,8.7387,24.9592,69.874,0.00208,0.006989,0.022499 +2025-04-29,Other / Unknown,commit,521,781500000,130.5144,372.779,1043.6142,0.044375,0.149112,0.480063 +2025-04-30,Azure / Microsoft,commit,425,425250000,22.1089,63.1279,176.7015,0.006577,0.022095,0.071122 +2025-04-30,AWS / Anthropic,commit,476,1000020000,244.0235,697.0807,1951.6447,0.05953,0.200062,0.64414 +2025-04-30,Google,commit,157,219170000,8.2437,23.5454,65.9161,0.001962,0.006593,0.021225 +2025-04-30,Other / Unknown,commit,289,433500000,72.3967,206.7814,578.8954,0.024615,0.082713,0.266292 +2025-05-01,Azure / Microsoft,commit,541,540850000,28.119,80.2886,224.7361,0.008365,0.028101,0.090456 +2025-05-01,AWS / Anthropic,commit,579,1215165000,296.5229,847.0511,2371.5229,0.072337,0.243104,0.782721 +2025-05-01,Google,commit,192,269500000,10.1368,28.9524,81.053,0.002413,0.008107,0.026099 +2025-05-01,Other / Unknown,commit,166,249000000,41.5842,118.7741,332.5143,0.014139,0.04751,0.152957 +2025-05-02,Azure / Microsoft,commit,529,528700000,27.4873,78.4849,219.6875,0.008177,0.02747,0.088424 +2025-05-02,AWS / Anthropic,commit,587,1232700000,300.8018,859.2742,2405.7444,0.073381,0.246612,0.794016 +2025-05-02,Google,commit,189,265020000,9.9682,28.4711,79.7056,0.002372,0.007972,0.025665 +2025-05-02,Other / Unknown,commit,278,417000000,69.6411,198.9109,556.8613,0.023678,0.079564,0.256156 +2025-05-03,Azure / Microsoft,commit,576,575850000,29.9386,85.4843,239.2794,0.008907,0.029919,0.09631 +2025-05-03,AWS / Anthropic,commit,637,1338225000,326.5519,932.8322,2611.6875,0.079662,0.267723,0.861987 +2025-05-03,Google,commit,260,363860000,13.6859,39.0895,109.4321,0.003257,0.010945,0.035237 +2025-05-03,Other / Unknown,commit,221,331500000,55.3621,158.127,442.6847,0.018823,0.063251,0.203635 +2025-05-04,Azure / Microsoft,commit,480,480150000,24.9632,71.2777,199.5138,0.007427,0.024947,0.080304 +2025-05-04,AWS / Anthropic,commit,529,1110270000,270.9266,773.9323,2166.8093,0.066093,0.222119,0.715155 +2025-05-04,Google,commit,222,311010000,11.6981,33.4118,93.5373,0.002784,0.009355,0.030119 +2025-05-04,Other / Unknown,commit,301,451500000,75.4027,215.3675,602.9326,0.025637,0.086147,0.277349 +2025-05-05,Azure / Microsoft,commit,575,574900000,29.8892,85.3432,238.8847,0.008892,0.02987,0.096151 +2025-05-05,AWS / Anthropic,commit,633,1328355000,324.1434,925.9521,2592.4252,0.079075,0.265748,0.85563 +2025-05-05,Google,commit,252,352170000,13.2462,37.8336,105.9163,0.003153,0.010593,0.034105 +2025-05-05,Other / Unknown,commit,232,348000000,58.1177,165.9975,464.7188,0.01976,0.066399,0.213771 +2025-05-06,Azure / Microsoft,commit,431,431100000,22.413,63.9963,179.1323,0.006668,0.022399,0.072101 +2025-05-06,AWS / Anthropic,commit,485,1018080000,248.4305,709.6697,1986.8907,0.060605,0.203675,0.655773 +2025-05-06,Google,commit,182,254940000,9.5891,27.3882,76.6741,0.002282,0.007669,0.024689 +2025-05-06,Other / Unknown,commit,589,883500000,147.5489,421.4334,1179.8249,0.050167,0.168573,0.542719 +2025-05-07,Azure / Microsoft,commit,502,501500000,26.0732,74.4471,208.3852,0.007757,0.026056,0.083875 +2025-05-07,AWS / Anthropic,commit,548,1151325000,280.9448,802.5504,2246.9324,0.068536,0.230332,0.7416 +2025-05-07,Google,commit,197,276150000,10.3869,29.6668,83.053,0.002472,0.008307,0.026743 +2025-05-07,Other / Unknown,commit,654,981000000,163.8319,467.9414,1310.0262,0.055703,0.187177,0.602612 +2025-05-08,Azure / Microsoft,commit,1041,1041050000,54.1245,154.5427,432.5811,0.016102,0.05409,0.174114 +2025-05-08,AWS / Anthropic,commit,1158,2432745000,593.6352,1695.7857,4747.759,0.144817,0.48669,1.566998 +2025-05-08,Google,commit,384,536900000,20.1945,57.6792,161.4745,0.004806,0.01615,0.051995 +2025-05-08,Other / Unknown,commit,333,499500000,83.419,238.2637,667.0317,0.028362,0.095305,0.306835 +2025-05-09,Azure / Microsoft,commit,766,765800000,39.8142,113.6821,318.2082,0.011845,0.039789,0.128079 +2025-05-09,AWS / Anthropic,commit,849,1782375000,434.9328,1242.4344,3478.4932,0.106102,0.356579,1.148077 +2025-05-09,Google,commit,286,401030000,15.084,43.0827,120.6111,0.00359,0.012063,0.038837 +2025-05-09,Other / Unknown,commit,342,513000000,85.6735,244.7033,685.0596,0.029129,0.097881,0.315127 +2025-05-10,Azure / Microsoft,commit,800,800350000,41.6105,118.811,332.5645,0.012379,0.041584,0.133857 +2025-05-10,AWS / Anthropic,commit,887,1863330000,454.6873,1298.8654,3636.4855,0.110921,0.372774,1.200222 +2025-05-10,Google,commit,301,421890000,15.8686,45.3236,126.8848,0.003777,0.012691,0.040857 +2025-05-10,Other / Unknown,commit,371,556500000,92.9383,265.453,743.1494,0.031599,0.106181,0.341849 +2025-05-11,Azure / Microsoft,commit,561,560650000,29.1484,83.2279,232.9635,0.008672,0.02913,0.093768 +2025-05-11,AWS / Anthropic,commit,602,1263255000,308.2578,880.5731,2465.3757,0.075199,0.252724,0.813697 +2025-05-11,Google,commit,213,297920000,11.2057,32.0056,89.6004,0.002667,0.008962,0.028851 +2025-05-11,Other / Unknown,commit,92,138000000,23.0467,65.8266,184.285,0.007836,0.026331,0.084771 +2025-05-12,Azure / Microsoft,commit,334,333650000,17.3466,49.53,138.6395,0.005161,0.017335,0.055802 +2025-05-12,AWS / Anthropic,commit,349,733530000,178.995,511.3194,1431.5613,0.043666,0.146749,0.472487 +2025-05-12,Google,commit,130,182070000,6.8482,19.5598,54.7582,0.00163,0.005477,0.017632 +2025-05-12,Other / Unknown,commit,311,466500000,77.9078,222.5226,622.9635,0.026489,0.089009,0.286563 +2025-05-13,Azure / Microsoft,commit,413,412750000,21.459,61.2723,171.5075,0.006384,0.021445,0.069032 +2025-05-13,AWS / Anthropic,commit,422,887250000,216.5056,618.4725,1731.5622,0.052817,0.177502,0.571502 +2025-05-13,Google,commit,142,198450000,7.4643,21.3195,59.6845,0.001777,0.005969,0.019218 +2025-05-13,Other / Unknown,commit,590,885000000,147.7994,422.1489,1181.828,0.050252,0.16886,0.543641 +2025-05-14,Azure / Microsoft,commit,432,431900000,22.4546,64.1151,179.4648,0.00668,0.02244,0.072235 +2025-05-14,AWS / Anthropic,commit,457,959280000,234.0822,668.6822,1872.1363,0.057104,0.191912,0.617899 +2025-05-14,Google,commit,152,213220000,8.0199,22.9062,64.1266,0.001909,0.006414,0.020649 +2025-05-14,Other / Unknown,commit,420,630000000,105.2131,300.5128,841.3013,0.035772,0.120205,0.386999 +2025-05-15,Azure / Microsoft,commit,311,310650000,16.1508,46.1156,129.0825,0.004805,0.01614,0.051956 +2025-05-15,AWS / Anthropic,commit,357,749070000,182.7871,522.1518,1461.8893,0.044591,0.149858,0.482497 +2025-05-15,Google,commit,113,157710000,5.932,16.9428,47.4318,0.001412,0.004744,0.015273 +2025-05-15,Other / Unknown,commit,325,487500000,81.4149,232.5397,651.0069,0.027681,0.093016,0.299463 +2025-05-16,Azure / Microsoft,commit,369,369200000,19.1948,54.8073,153.4114,0.00571,0.019183,0.061748 +2025-05-16,AWS / Anthropic,commit,384,806400000,196.7767,562.1146,1573.7748,0.048004,0.161327,0.519424 +2025-05-16,Google,commit,128,178920000,6.7298,19.2214,53.8108,0.001602,0.005382,0.017327 +2025-05-16,Other / Unknown,commit,632,948000000,158.3207,452.2002,1265.9581,0.053829,0.18088,0.582341 +2025-05-17,Azure / Microsoft,commit,336,335600000,17.448,49.8194,139.4498,0.005191,0.017437,0.056129 +2025-05-17,AWS / Anthropic,commit,340,714000000,174.2293,497.7057,1393.4465,0.042503,0.142842,0.459907 +2025-05-17,Google,commit,116,162960000,6.1294,17.5068,49.0108,0.001459,0.004902,0.015781 +2025-05-17,Other / Unknown,commit,770,1155000000,192.8907,550.9401,1542.3856,0.065583,0.220376,0.709497 +2025-05-18,Azure / Microsoft,commit,354,354100000,18.4098,52.5657,147.137,0.005477,0.018398,0.059223 +2025-05-18,AWS / Anthropic,commit,340,714735000,174.4087,498.218,1394.8809,0.042547,0.142989,0.46038 +2025-05-18,Google,commit,119,165970000,6.2427,17.8302,49.916,0.001486,0.004992,0.016073 +2025-05-18,Other / Unknown,commit,168,252000000,42.0853,120.2051,336.5205,0.014309,0.048082,0.154799 +2025-05-19,Azure / Microsoft,commit,510,510050000,26.5177,75.7163,211.938,0.007889,0.026501,0.085305 +2025-05-19,AWS / Anthropic,commit,397,833280000,203.3359,580.8518,1626.234,0.049604,0.166704,0.536739 +2025-05-19,Google,commit,242,339010000,12.7512,36.4198,101.9584,0.003035,0.010198,0.032831 +2025-05-19,Other / Unknown,commit,653,979500000,163.5814,467.2259,1308.0231,0.055618,0.18689,0.601691 +2025-05-20,Azure / Microsoft,commit,829,828850000,43.0922,123.0418,344.407,0.01282,0.043065,0.138624 +2025-05-20,AWS / Anthropic,commit,284,596085000,145.4559,415.511,1163.3229,0.035484,0.119252,0.383955 +2025-05-20,Google,commit,796,1114820000,41.9319,119.7651,335.2858,0.00998,0.033534,0.107962 +2025-05-20,Other / Unknown,commit,1573,2359500000,394.0482,1125.492,3150.8735,0.133976,0.450197,1.449402 +2025-05-21,Azure / Microsoft,commit,1026,1025700000,53.3265,152.264,426.2028,0.015865,0.053292,0.171547 +2025-05-21,AWS / Anthropic,commit,378,794430000,193.8557,553.7707,1550.4141,0.047291,0.158932,0.511714 +2025-05-21,Google,commit,2447,3425800000,128.8552,368.0337,1030.3208,0.030668,0.103049,0.331763 +2025-05-21,Other / Unknown,commit,1559,2338500000,390.5411,1115.4749,3122.8301,0.132784,0.44619,1.436502 +2025-05-22,Azure / Microsoft,commit,1093,1093450000,56.8488,162.3214,454.3546,0.016913,0.056812,0.182878 +2025-05-22,AWS / Anthropic,commit,535,1122870000,274.0012,782.7153,2191.3995,0.066843,0.224639,0.723271 +2025-05-22,Google,commit,2564,3589390000,135.0084,385.6082,1079.521,0.032132,0.10797,0.347606 +2025-05-22,Other / Unknown,commit,1338,2007000000,335.179,957.3479,2680.1454,0.113961,0.382939,1.232867 +2025-05-23,Azure / Microsoft,commit,908,908150000,47.215,134.8138,377.358,0.014046,0.047185,0.151887 +2025-05-23,AWS / Anthropic,commit,502,1053885000,257.1676,734.6282,2056.768,0.062736,0.210838,0.678836 +2025-05-23,Google,commit,3051,4271400000,160.661,458.8766,1284.6378,0.038237,0.128485,0.413653 +2025-05-23,Other / Unknown,commit,1249,1873500000,312.8838,893.6678,2501.8697,0.10638,0.357467,1.15086 +2025-05-24,Azure / Microsoft,commit,912,912250000,47.4282,135.4225,379.0617,0.01411,0.047398,0.152572 +2025-05-24,AWS / Anthropic,commit,464,975240000,237.9768,679.8074,1903.2839,0.058054,0.195105,0.628179 +2025-05-24,Google,commit,2550,3570490000,134.2975,383.5778,1073.8368,0.031963,0.107402,0.345775 +2025-05-24,Other / Unknown,commit,1075,1612500000,269.2955,769.1697,2153.3306,0.09156,0.307668,0.990532 +2025-05-25,Azure / Microsoft,commit,978,978150000,50.8543,145.2052,406.4447,0.015129,0.050822,0.163594 +2025-05-25,AWS / Anthropic,commit,592,1242360000,303.159,866.0079,2424.5969,0.073956,0.248544,0.800238 +2025-05-25,Google,commit,2463,3448550000,129.7109,370.4778,1037.1629,0.030871,0.103734,0.333966 +2025-05-25,Other / Unknown,commit,737,1105500000,184.624,527.3284,1476.2834,0.062772,0.210931,0.67909 +2025-05-26,Azure / Microsoft,commit,1028,1028500000,53.4721,152.6796,427.3663,0.015908,0.053438,0.172015 +2025-05-26,AWS / Anthropic,commit,391,821415000,200.4406,572.5811,1603.0782,0.048897,0.164331,0.529096 +2025-05-26,Google,commit,2415,3381490000,127.1886,363.2735,1016.9944,0.030271,0.101717,0.327472 +2025-05-26,Other / Unknown,commit,1146,1719000000,287.0815,819.9706,2295.5506,0.097608,0.327988,1.055953 +2025-05-27,Azure / Microsoft,commit,1169,1168850000,60.7689,173.5144,485.6851,0.018079,0.06073,0.195488 +2025-05-27,AWS / Anthropic,commit,454,954240000,232.8524,665.169,1862.3002,0.056804,0.190903,0.614652 +2025-05-27,Google,commit,2268,3174850000,119.4162,341.0742,954.8467,0.028421,0.095501,0.307461 +2025-05-27,Other / Unknown,commit,1175,1762500000,294.3462,840.7203,2353.6404,0.100078,0.336288,1.082675 +2025-05-28,Azure / Microsoft,commit,1147,1147050000,59.6355,170.2783,476.6267,0.017742,0.059597,0.191842 +2025-05-28,AWS / Anthropic,commit,515,1081290000,263.8549,753.7313,2110.2517,0.064367,0.216321,0.696489 +2025-05-28,Google,commit,1986,2780470000,104.5823,298.7059,836.2356,0.024891,0.083638,0.269268 +2025-05-28,Other / Unknown,commit,1044,1566000000,261.5298,746.989,2091.2345,0.08892,0.298796,0.961968 +2025-05-29,Azure / Microsoft,commit,890,889700000,46.2558,132.0749,369.6916,0.013761,0.046226,0.148801 +2025-05-29,AWS / Anthropic,commit,374,784980000,191.5498,547.1835,1531.9714,0.046729,0.157042,0.505627 +2025-05-29,Google,commit,2092,2928100000,110.1352,314.5658,880.6358,0.026212,0.088078,0.283565 +2025-05-29,Other / Unknown,commit,1167,1750500000,292.3422,834.9963,2337.6156,0.099396,0.333999,1.075303 +2025-05-30,Azure / Microsoft,commit,882,881600000,45.8347,130.8725,366.3258,0.013636,0.045805,0.147446 +2025-05-30,AWS / Anthropic,commit,392,823830000,201.0299,574.2645,1607.7913,0.049041,0.164814,0.530652 +2025-05-30,Google,commit,2293,3210340000,120.7511,344.8869,965.5204,0.028739,0.096568,0.310898 +2025-05-30,Other / Unknown,commit,1388,2082000000,347.7043,993.1233,2780.3003,0.118219,0.397249,1.278938 +2025-05-31,Azure / Microsoft,commit,974,974450000,50.662,144.656,404.9072,0.015072,0.05063,0.162975 +2025-05-31,AWS / Anthropic,commit,410,860895000,210.0744,600.1013,1680.1276,0.051248,0.172229,0.554526 +2025-05-31,Google,commit,2857,3999240000,150.4241,429.6384,1202.7847,0.035801,0.120299,0.387297 +2025-05-31,Other / Unknown,commit,1050,1575000000,263.0328,751.282,2103.2531,0.089431,0.300513,0.967496 +2025-06-01,Azure / Microsoft,commit,1004,1004400000,52.2191,149.102,417.3522,0.015535,0.052186,0.167984 +2025-06-01,AWS / Anthropic,commit,407,853755000,208.3322,595.1242,1666.1931,0.050823,0.170801,0.549927 +2025-06-01,Google,commit,2922,4090870000,153.8706,439.4822,1230.3428,0.036621,0.123055,0.39617 +2025-06-01,Other / Unknown,commit,1173,1759500000,293.8452,839.2893,2349.6342,0.099907,0.335716,1.080832 +2025-06-02,Azure / Microsoft,commit,857,857100000,44.5609,127.2355,356.1455,0.013257,0.044532,0.143349 +2025-06-02,AWS / Anthropic,commit,351,736365000,179.6868,513.2956,1437.0941,0.043835,0.147316,0.474313 +2025-06-02,Google,commit,3096,4334750000,163.0437,465.6823,1303.6905,0.038804,0.130391,0.419788 +2025-06-02,Other / Unknown,commit,988,1482000000,247.5014,706.9206,1979.061,0.08415,0.282768,0.910368 +2025-06-03,Azure / Microsoft,commit,883,882900000,45.9023,131.0655,366.866,0.013656,0.045873,0.147664 +2025-06-03,AWS / Anthropic,commit,394,826980000,201.7986,576.4603,1613.9389,0.049229,0.165444,0.532681 +2025-06-03,Google,commit,3085,4319420000,162.4671,464.0354,1299.0799,0.038667,0.12993,0.418304 +2025-06-03,Other / Unknown,commit,956,1434000000,239.4851,684.0244,1914.9619,0.081425,0.27361,0.880882 +2025-06-04,Azure / Microsoft,commit,1575,1575400000,81.9056,233.8663,654.6163,0.024367,0.081853,0.263483 +2025-06-04,AWS / Anthropic,commit,429,901845000,220.067,628.6462,1760.0458,0.053685,0.180421,0.580903 +2025-06-04,Google,commit,2727,3818010000,143.6075,410.1689,1148.2792,0.034179,0.114847,0.369746 +2025-06-04,Other / Unknown,commit,1741,2611500000,436.1335,1245.6971,3487.394,0.148285,0.498279,1.604201 +2025-06-05,Azure / Microsoft,commit,2242,2241650000,116.5441,332.7704,931.4591,0.034672,0.11647,0.374912 +2025-06-05,AWS / Anthropic,commit,380,797475000,194.5988,555.8933,1556.3568,0.047472,0.159541,0.513676 +2025-06-05,Google,commit,2879,4030040000,151.5826,432.9473,1212.0479,0.036077,0.121225,0.390279 +2025-06-05,Other / Unknown,commit,2301,3451500000,576.4176,1646.3808,4609.129,0.195982,0.658552,2.120199 +2025-06-06,Azure / Microsoft,commit,1069,1068950000,55.5751,158.6844,444.1742,0.016534,0.05554,0.17878 +2025-06-06,AWS / Anthropic,commit,371,778470000,189.9612,542.6456,1519.2665,0.046341,0.155739,0.501434 +2025-06-06,Google,commit,2461,3445890000,129.6109,370.192,1036.3629,0.030847,0.103654,0.333709 +2025-06-06,Other / Unknown,commit,1342,2013000000,336.181,960.2099,2688.1578,0.114302,0.384084,1.236553 +2025-06-07,Azure / Microsoft,commit,1044,1044000000,54.2779,154.9806,433.8069,0.016148,0.054243,0.174607 +2025-06-07,AWS / Anthropic,commit,335,703920000,171.7696,490.6792,1373.7743,0.041903,0.140825,0.453414 +2025-06-07,Google,commit,2360,3303720000,124.2634,354.9187,993.6048,0.029575,0.099377,0.319941 +2025-06-07,Other / Unknown,commit,1323,1984500000,331.4213,946.6153,2650.0989,0.112683,0.378646,1.219046 +2025-06-08,Azure / Microsoft,commit,1056,1056200000,54.9122,156.7917,438.8763,0.016336,0.054877,0.176648 +2025-06-08,AWS / Anthropic,commit,503,1055985000,257.68,736.092,2060.8664,0.062861,0.211258,0.680189 +2025-06-08,Google,commit,2786,3900330000,146.7038,419.0125,1173.0372,0.034916,0.117324,0.377718 +2025-06-08,Other / Unknown,commit,965,1447500000,241.7397,690.4639,1932.9898,0.082191,0.276186,0.889175 +2025-06-09,Azure / Microsoft,commit,1058,1057800000,54.9954,157.0292,439.5412,0.016361,0.05496,0.176915 +2025-06-09,AWS / Anthropic,commit,436,915810000,223.4747,638.3807,1787.3,0.054517,0.183215,0.589898 +2025-06-09,Google,commit,2620,3668140000,137.9704,394.0683,1103.2053,0.032837,0.110339,0.355232 +2025-06-09,Other / Unknown,commit,1417,2125500000,354.969,1013.8729,2838.3902,0.120689,0.405549,1.305659 +2025-06-10,Azure / Microsoft,commit,1053,1052650000,54.7276,156.2647,437.4012,0.016281,0.054693,0.176054 +2025-06-10,AWS / Anthropic,commit,405,849555000,207.3073,592.1965,1657.9964,0.050573,0.16996,0.547222 +2025-06-10,Google,commit,2793,3909920000,147.0645,420.0428,1175.9215,0.035001,0.117612,0.378647 +2025-06-10,Other / Unknown,commit,1293,1939500000,323.9061,925.1501,2590.006,0.110128,0.37006,1.191403 +2025-06-11,Azure / Microsoft,commit,1267,1267100000,65.8769,188.0995,526.5103,0.019598,0.065835,0.21192 +2025-06-11,AWS / Anthropic,commit,367,770490000,188.0139,537.083,1503.6927,0.045866,0.154143,0.496294 +2025-06-11,Google,commit,2419,3386600000,127.3808,363.8225,1018.5312,0.030317,0.10187,0.327967 +2025-06-11,Other / Unknown,commit,1736,2604000000,434.8809,1242.1196,3477.3785,0.14786,0.496848,1.599594 +2025-06-12,Azure / Microsoft,commit,1113,1113350000,57.8834,165.2755,462.6235,0.01722,0.057846,0.186206 +2025-06-12,AWS / Anthropic,commit,403,845565000,206.3336,589.4152,1650.2095,0.050335,0.169162,0.544652 +2025-06-12,Google,commit,2170,3038000000,114.2689,326.3724,913.6886,0.027196,0.091384,0.294208 +2025-06-12,Other / Unknown,commit,1880,2820000000,470.954,1345.1525,3765.8247,0.160124,0.538061,1.732279 +2025-06-13,Azure / Microsoft,commit,1279,1279250000,66.5086,189.9032,531.5589,0.019786,0.066466,0.213952 +2025-06-13,AWS / Anthropic,commit,388,813855000,198.5958,567.3113,1588.3241,0.048447,0.162818,0.524226 +2025-06-13,Google,commit,2252,3153080000,118.5974,338.7354,948.2993,0.028226,0.094846,0.305352 +2025-06-13,Other / Unknown,commit,1912,2868000000,478.9702,1368.0487,3829.9238,0.16285,0.547219,1.761765 +2025-06-14,Azure / Microsoft,commit,941,941250000,48.9359,139.7275,391.1118,0.014558,0.048905,0.157423 +2025-06-14,AWS / Anthropic,commit,268,562170000,137.18,391.87,1097.1342,0.033465,0.112467,0.362109 +2025-06-14,Google,commit,1858,2601270000,97.842,279.4545,782.3406,0.023286,0.078247,0.251914 +2025-06-14,Other / Unknown,commit,1214,1821000000,304.116,868.6251,2431.7612,0.103399,0.34745,1.11861 +2025-06-15,Azure / Microsoft,commit,1067,1067150000,55.4815,158.4172,443.4263,0.016506,0.055446,0.178479 +2025-06-15,AWS / Anthropic,commit,491,1031940000,251.8126,719.3311,2013.94,0.06143,0.206448,0.664701 +2025-06-15,Google,commit,1965,2751630000,103.4976,295.6077,827.5619,0.024632,0.08277,0.266475 +2025-06-15,Other / Unknown,commit,994,1491000000,249.0044,711.2136,1991.0796,0.084661,0.284485,0.915897 +2025-06-16,Azure / Microsoft,commit,912,911850000,47.4074,135.3631,378.8954,0.014104,0.047377,0.152505 +2025-06-16,AWS / Anthropic,commit,536,1126650000,274.9236,785.3503,2198.7766,0.067068,0.225396,0.725706 +2025-06-16,Google,commit,2058,2880710000,108.3527,309.4747,866.3831,0.025788,0.086653,0.278975 +2025-06-16,Other / Unknown,commit,1465,2197500000,366.9934,1048.2173,2934.5389,0.124778,0.419287,1.349888 +2025-06-17,Azure / Microsoft,commit,952,951650000,49.4766,141.2714,395.4333,0.014719,0.049445,0.159162 +2025-06-17,AWS / Anthropic,commit,483,1014720000,247.6106,707.3276,1980.3333,0.060405,0.203003,0.653609 +2025-06-17,Google,commit,2288,3203410000,120.4904,344.1424,963.4362,0.028677,0.09636,0.310226 +2025-06-17,Other / Unknown,commit,1279,1918500000,320.399,915.133,2561.9626,0.108936,0.366053,1.178503 +2025-06-18,Azure / Microsoft,commit,1149,1149100000,59.7421,170.5826,477.4785,0.017773,0.059704,0.192185 +2025-06-18,AWS / Anthropic,commit,648,1359960000,331.8556,947.9829,2654.1057,0.080956,0.272071,0.875988 +2025-06-18,Google,commit,2550,3570420000,134.2949,383.5703,1073.8157,0.031962,0.1074,0.345769 +2025-06-18,Other / Unknown,commit,1324,1986000000,331.6719,947.3308,2652.102,0.112768,0.378932,1.219967 +2025-06-19,Azure / Microsoft,commit,1032,1032500000,53.68,153.2734,429.0284,0.01597,0.053646,0.172684 +2025-06-19,AWS / Anthropic,commit,631,1324365000,323.1698,923.1708,2584.6383,0.078837,0.26495,0.85306 +2025-06-19,Google,commit,2371,3319190000,124.8453,356.5806,998.2574,0.029713,0.099843,0.321439 +2025-06-19,Other / Unknown,commit,1190,1785000000,298.1039,851.4529,2383.6869,0.101355,0.340581,1.096496 +2025-06-20,Azure / Microsoft,commit,973,972950000,50.584,144.4333,404.284,0.015049,0.050552,0.162724 +2025-06-20,AWS / Anthropic,commit,560,1174950000,286.7097,819.0186,2293.0391,0.069943,0.235058,0.756818 +2025-06-20,Google,commit,2189,3063970000,115.2457,329.1623,921.4992,0.027428,0.092165,0.296723 +2025-06-20,Other / Unknown,commit,1086,1629000000,272.0511,777.0402,2175.3647,0.092497,0.310816,1.000668 +2025-06-21,Azure / Microsoft,commit,841,841100000,43.7291,124.8603,349.4971,0.013009,0.043701,0.140673 +2025-06-21,AWS / Anthropic,commit,421,883785000,215.66,616.0571,1724.7998,0.05261,0.176808,0.56927 +2025-06-21,Google,commit,1844,2581670000,97.1048,277.3488,776.4458,0.023111,0.077658,0.250016 +2025-06-21,Other / Unknown,commit,854,1281000000,213.9334,611.0427,1710.6459,0.072737,0.244417,0.786897 +2025-06-22,Azure / Microsoft,commit,885,885450000,46.0348,131.444,367.9256,0.013695,0.046005,0.14809 +2025-06-22,AWS / Anthropic,commit,518,1087170000,265.2898,757.8301,2121.7272,0.064717,0.217497,0.700276 +2025-06-22,Google,commit,1833,2565990000,96.5151,275.6643,771.73,0.022971,0.077186,0.248497 +2025-06-22,Other / Unknown,commit,815,1222500000,204.1636,583.1379,1632.5251,0.069416,0.233255,0.750962 +2025-06-23,Azure / Microsoft,commit,946,946100000,49.1881,140.4475,393.1271,0.014633,0.049157,0.158234 +2025-06-23,AWS / Anthropic,commit,683,1434510000,350.0472,999.9492,2799.5979,0.085394,0.286985,0.924007 +2025-06-23,Google,commit,1799,2518320000,94.722,270.5432,757.3931,0.022544,0.075752,0.243881 +2025-06-23,Other / Unknown,commit,1206,1809000000,302.112,862.901,2415.7365,0.102718,0.34516,1.111239 +2025-06-24,Azure / Microsoft,commit,1340,1339650000,69.6488,198.8695,556.6566,0.020721,0.069604,0.224054 +2025-06-24,AWS / Anthropic,commit,705,1481025000,361.3977,1032.3733,2890.3768,0.088163,0.296291,0.953969 +2025-06-24,Google,commit,2026,2836540000,106.6913,304.7295,853.0988,0.025393,0.085324,0.274698 +2025-06-24,Other / Unknown,commit,1220,1830000000,305.6191,872.9181,2443.7798,0.10391,0.349167,1.124139 +2025-06-25,Azure / Microsoft,commit,849,849050000,44.1424,126.0405,352.8005,0.013132,0.044114,0.142002 +2025-06-25,AWS / Anthropic,commit,475,998130000,243.5623,695.7632,1947.9562,0.059417,0.199684,0.642923 +2025-06-25,Google,commit,1625,2274510000,85.5516,244.3506,684.0665,0.020361,0.068418,0.220269 +2025-06-25,Other / Unknown,commit,1178,1767000000,295.0978,842.8669,2359.6497,0.100333,0.337147,1.085439 +2025-06-26,Azure / Microsoft,commit,1095,1095450000,56.9528,162.6183,455.1856,0.016943,0.056916,0.183212 +2025-06-26,AWS / Anthropic,commit,606,1272285000,310.4613,886.8676,2482.9987,0.075737,0.254531,0.819514 +2025-06-26,Google,commit,1598,2236780000,84.1324,240.2973,672.719,0.020024,0.067283,0.216616 +2025-06-26,Other / Unknown,commit,1404,2106000000,351.7125,1004.5714,2812.3499,0.119582,0.401829,1.293681 +2025-06-27,Azure / Microsoft,commit,1305,1304650000,67.8292,193.6738,542.1132,0.020179,0.067786,0.218201 +2025-06-27,AWS / Anthropic,commit,618,1297695000,316.6618,904.58,2532.589,0.07725,0.259614,0.835881 +2025-06-27,Google,commit,1497,2096360000,78.8508,225.212,630.4872,0.018766,0.063059,0.203017 +2025-06-27,Other / Unknown,commit,1321,1981500000,330.9203,945.1843,2646.0928,0.112513,0.378074,1.217203 +2025-06-28,Azure / Microsoft,commit,932,931700000,48.4394,138.3098,387.1436,0.014411,0.048408,0.155825 +2025-06-28,AWS / Anthropic,commit,605,1269765000,309.8464,885.111,2478.0806,0.075587,0.254027,0.817891 +2025-06-28,Google,commit,1552,2172310000,81.7075,233.3713,653.3295,0.019446,0.065344,0.210372 +2025-06-28,Other / Unknown,commit,966,1449000000,241.9902,691.1794,1934.9929,0.082277,0.276472,0.890097 +2025-06-29,Azure / Microsoft,commit,648,648050000,33.6923,96.2023,269.2802,0.010023,0.033671,0.108385 +2025-06-29,AWS / Anthropic,commit,295,619080000,151.0671,431.5401,1208.2001,0.036853,0.123852,0.398766 +2025-06-29,Google,commit,1387,1942010000,73.0452,208.6302,584.066,0.017385,0.058416,0.188069 +2025-06-29,Other / Unknown,commit,966,1449000000,241.9902,691.1794,1934.9929,0.082277,0.276472,0.890097 +2025-06-30,Azure / Microsoft,commit,1523,1523200000,79.1917,226.1173,632.926,0.02356,0.079141,0.254753 +2025-06-30,AWS / Anthropic,commit,316,662760000,161.7258,461.988,1293.4462,0.039453,0.132591,0.426902 +2025-06-30,Google,commit,1686,2360680000,88.7927,253.6079,709.9824,0.021133,0.07101,0.228614 +2025-06-30,Other / Unknown,commit,1625,2437500000,407.0746,1162.6983,3255.0346,0.138405,0.465079,1.497316 +2025-07-01,Azure / Microsoft,commit,1655,1654850000,86.0362,245.6606,687.6297,0.025596,0.085981,0.276771 +2025-07-01,AWS / Anthropic,commit,680,1428210000,348.5099,995.5577,2787.3028,0.085019,0.285725,0.919949 +2025-07-01,Google,commit,1649,2308670000,86.8364,248.0205,694.3402,0.020667,0.069446,0.223578 +2025-07-01,Other / Unknown,commit,1855,2782500000,464.6913,1327.2649,3715.7472,0.157995,0.530906,1.709244 +2025-07-02,Azure / Microsoft,commit,1772,1772450000,92.1503,263.1182,736.4953,0.027415,0.092091,0.296439 +2025-07-02,AWS / Anthropic,commit,942,1978200000,482.7177,1378.9375,3860.6664,0.117759,0.395755,1.274213 +2025-07-02,Google,commit,1766,2471770000,92.9711,265.5423,743.3931,0.022127,0.074352,0.239373 +2025-07-02,Other / Unknown,commit,1577,2365500000,395.0502,1128.354,3158.8859,0.134317,0.451342,1.453088 +2025-07-03,Azure / Microsoft,commit,1743,1742650000,90.601,258.6944,724.1127,0.026954,0.090543,0.291455 +2025-07-03,AWS / Anthropic,commit,620,1302000000,317.7123,907.5809,2540.9906,0.077506,0.260476,0.838654 +2025-07-03,Google,commit,1648,2307690000,86.7996,247.9152,694.0454,0.020658,0.069416,0.223483 +2025-07-03,Other / Unknown,commit,2127,3190500000,532.8293,1521.8827,4260.5899,0.181162,0.608753,1.959871 +2025-07-04,Azure / Microsoft,commit,1854,1853650000,96.3719,275.1722,770.2358,0.028671,0.09631,0.31002 +2025-07-04,AWS / Anthropic,commit,786,1649760000,402.5722,1149.9928,3219.681,0.098207,0.330048,1.062656 +2025-07-04,Google,commit,1586,2220050000,83.5031,238.5,667.6874,0.019874,0.06678,0.214995 +2025-07-04,Other / Unknown,commit,1709,2563500000,428.1172,1222.8009,3423.2949,0.14556,0.48912,1.574716 +2025-07-05,Azure / Microsoft,commit,1415,1414650000,73.5481,210.0032,587.8208,0.021881,0.073501,0.236598 +2025-07-05,AWS / Anthropic,commit,517,1085490000,264.8798,756.659,2118.4485,0.064617,0.217161,0.699194 +2025-07-05,Google,commit,1427,1998430000,75.1673,214.6914,601.0345,0.01789,0.060114,0.193533 +2025-07-05,Other / Unknown,commit,1265,1897500000,316.8919,905.1159,2533.9193,0.107743,0.362046,1.165603 +2025-07-06,Azure / Microsoft,commit,1238,1238350000,64.3822,183.8316,514.564,0.019154,0.064341,0.207112 +2025-07-06,AWS / Anthropic,commit,529,1110900000,271.0803,774.3715,2168.0388,0.06613,0.222245,0.715561 +2025-07-06,Google,commit,1565,2190510000,82.3921,235.3265,658.8032,0.019609,0.065891,0.212135 +2025-07-06,Other / Unknown,commit,1190,1785000000,298.1039,851.4529,2383.6869,0.101355,0.340581,1.096496 +2025-07-07,Azure / Microsoft,commit,1725,1724550000,89.6599,256.0075,716.5917,0.026674,0.089603,0.288428 +2025-07-07,AWS / Anthropic,commit,595,1250445000,305.1319,871.6436,2440.3756,0.074437,0.250162,0.805446 +2025-07-07,Google,commit,1463,2048200000,77.0393,220.0382,616.003,0.018335,0.061611,0.198353 +2025-07-07,Other / Unknown,commit,1688,2532000000,422.8566,1207.7753,3381.2298,0.143771,0.48311,1.555366 +2025-07-08,Azure / Microsoft,commit,2349,2349400000,122.1461,348.7657,976.2318,0.036338,0.122068,0.392933 +2025-07-08,AWS / Anthropic,commit,871,1828575000,446.2064,1274.6388,3568.6574,0.108852,0.365821,1.177835 +2025-07-08,Google,commit,1816,2542190000,95.6199,273.1075,764.5721,0.022758,0.07647,0.246192 +2025-07-08,Other / Unknown,commit,2057,3085500000,515.2938,1471.7972,4120.373,0.1752,0.588719,1.895372 +2025-07-09,Azure / Microsoft,commit,2171,2171250000,112.884,322.3196,902.2062,0.033583,0.112812,0.363138 +2025-07-09,AWS / Anthropic,commit,668,1402590000,342.2581,977.6989,2737.3026,0.083494,0.2806,0.903447 +2025-07-09,Google,commit,1714,2399390000,90.2487,257.7665,721.6245,0.021479,0.072175,0.232363 +2025-07-09,Other / Unknown,commit,1986,2979000000,497.5078,1420.9962,3978.1531,0.169153,0.568398,1.82995 +2025-07-10,Azure / Microsoft,commit,1917,1917100000,99.6707,284.5913,796.6008,0.029652,0.099607,0.320632 +2025-07-10,AWS / Anthropic,commit,668,1402275000,342.1813,977.4793,2736.6879,0.083475,0.280537,0.903244 +2025-07-10,Google,commit,1594,2231810000,83.9455,239.7634,671.2243,0.019979,0.067134,0.216134 +2025-07-10,Other / Unknown,commit,2401,3601500000,601.4684,1717.9315,4809.4388,0.204499,0.687173,2.212342 +2025-07-11,Azure / Microsoft,commit,2322,2321800000,120.7112,344.6686,964.7633,0.035912,0.120634,0.388317 +2025-07-11,AWS / Anthropic,commit,810,1700265000,414.8964,1185.1982,3318.2469,0.101214,0.340152,1.095187 +2025-07-11,Google,commit,1662,2326170000,87.4947,249.9005,699.6034,0.020824,0.069972,0.225272 +2025-07-11,Other / Unknown,commit,2981,4471500000,746.7627,2132.9254,5971.2358,0.253899,0.85317,2.746768 +2025-07-12,Azure / Microsoft,commit,1584,1584450000,82.3761,235.2098,658.3768,0.024507,0.082323,0.264997 +2025-07-12,AWS / Anthropic,commit,495,1040235000,253.8368,725.1132,2030.1286,0.061923,0.208107,0.670044 +2025-07-12,Google,commit,1520,2128280000,80.0514,228.6412,640.0873,0.019052,0.06402,0.206108 +2025-07-12,Other / Unknown,commit,1595,2392500000,399.5594,1141.2331,3194.9417,0.13585,0.456493,1.469673 +2025-07-13,Azure / Microsoft,commit,2218,2218300000,115.3302,329.3041,921.7566,0.034311,0.115256,0.371007 +2025-07-13,AWS / Anthropic,commit,650,1364055000,332.8549,950.8374,2662.0975,0.0812,0.27289,0.878625 +2025-07-13,Google,commit,1769,2476810000,93.1607,266.0837,744.9089,0.022172,0.074503,0.239861 +2025-07-13,Other / Unknown,commit,1921,2881500000,481.2248,1374.4883,3847.9517,0.163616,0.549795,1.770058 +2025-07-14,Azure / Microsoft,commit,6434,6434300000,334.5214,955.1645,2673.6052,0.09952,0.334308,1.076126 +2025-07-14,AWS / Anthropic,commit,668,1403745000,342.54,978.504,2739.5568,0.083563,0.280831,0.904191 +2025-07-14,Google,commit,1697,2376150000,89.3746,255.2698,714.635,0.021271,0.071476,0.230112 +2025-07-14,Other / Unknown,commit,6392,9588000000,1601.2436,4573.5186,12803.8038,0.544423,1.829407,5.88975 +2025-07-15,Azure / Microsoft,commit,2280,2279550000,118.5146,338.3966,947.2074,0.035258,0.118439,0.381251 +2025-07-15,AWS / Anthropic,commit,826,1735440000,423.4798,1209.7175,3386.8946,0.103308,0.347189,1.117845 +2025-07-15,Google,commit,1708,2391270000,89.9433,256.8942,719.1824,0.021407,0.07193,0.231577 +2025-07-15,Other / Unknown,commit,2247,3370500000,562.8902,1607.7435,4500.9617,0.191383,0.643097,2.070442 +2025-07-16,Azure / Microsoft,commit,2684,2684500000,139.568,398.511,1115.4738,0.041521,0.139479,0.448978 +2025-07-16,AWS / Anthropic,commit,1006,2112180000,515.4113,1472.3305,4122.1425,0.125735,0.422559,1.360513 +2025-07-16,Google,commit,1922,2690380000,101.1938,289.0276,809.1407,0.024084,0.080928,0.260543 +2025-07-16,Other / Unknown,commit,2630,3945000000,658.8346,1881.7825,5268.1483,0.224004,0.752713,2.423348 +2025-07-17,Azure / Microsoft,commit,2897,2896550000,150.5926,429.9895,1203.5857,0.044801,0.150496,0.484443 +2025-07-17,AWS / Anthropic,commit,875,1838025000,448.5124,1281.2261,3587.1001,0.109415,0.367712,1.183922 +2025-07-17,Google,commit,1906,2668680000,100.3776,286.6963,802.6144,0.02389,0.080275,0.258442 +2025-07-17,Other / Unknown,commit,2551,3826500000,639.0445,1825.2575,5109.9036,0.217275,0.730103,2.350556 +2025-07-18,Azure / Microsoft,commit,3505,3504650000,182.2079,520.2613,1456.2657,0.054207,0.182091,0.586147 +2025-07-18,AWS / Anthropic,commit,1061,2227365000,543.5186,1552.6221,4346.9382,0.132591,0.445603,1.434707 +2025-07-18,Google,commit,1733,2425780000,91.2413,260.6016,729.5614,0.021715,0.072968,0.234919 +2025-07-18,Other / Unknown,commit,3174,4761000000,795.1106,2271.0182,6357.8338,0.270338,0.908407,2.924604 +2025-07-19,Azure / Microsoft,commit,2640,2640350000,137.2727,391.9569,1097.1285,0.040839,0.137185,0.441594 +2025-07-19,AWS / Anthropic,commit,898,1885275000,460.0423,1314.1625,3679.3134,0.112227,0.377165,1.214357 +2025-07-19,Google,commit,1394,1951460000,73.4006,209.6454,586.9081,0.017469,0.058701,0.188984 +2025-07-19,Other / Unknown,commit,2465,3697500000,617.5009,1763.7239,4937.6371,0.20995,0.70549,2.271313 +2025-07-20,Azure / Microsoft,commit,2904,2904450000,151.0033,431.1623,1206.8683,0.044923,0.150907,0.485764 +2025-07-20,AWS / Anthropic,commit,882,1851990000,451.9201,1290.9607,3614.3542,0.110246,0.370506,1.192918 +2025-07-20,Google,commit,1631,2282910000,85.8675,245.2531,686.5928,0.020436,0.068671,0.221083 +2025-07-20,Other / Unknown,commit,2393,3589500000,599.4643,1712.2075,4793.414,0.203818,0.684883,2.20497 +2025-07-21,Azure / Microsoft,commit,3503,3502550000,182.0987,519.9495,1455.3931,0.054174,0.181982,0.585796 +2025-07-21,AWS / Anthropic,commit,1181,2480520000,605.2932,1729.088,4840.997,0.147661,0.496248,1.597771 +2025-07-21,Google,commit,1898,2657550000,99.9589,285.5006,799.267,0.02379,0.07994,0.257364 +2025-07-21,Other / Unknown,commit,2813,4219500000,704.6774,2012.7203,5634.7153,0.23959,0.805088,2.591969 +2025-07-22,Azure / Microsoft,commit,2881,2880950000,149.7815,427.6737,1197.1035,0.04456,0.149686,0.481834 +2025-07-22,AWS / Anthropic,commit,1243,2609880000,636.8594,1819.2606,5093.4567,0.155362,0.522128,1.681095 +2025-07-22,Google,commit,2387,3342150000,125.7089,359.0472,1005.1627,0.029919,0.100533,0.323662 +2025-07-22,Other / Unknown,commit,2341,3511500000,586.4379,1675.0011,4689.2529,0.199389,0.67,2.157056 +2025-07-23,Azure / Microsoft,commit,3283,3282900000,170.6791,487.3427,1364.1233,0.050777,0.17057,0.54906 +2025-07-23,AWS / Anthropic,commit,1228,2578170000,629.1216,1797.1566,5031.5713,0.153474,0.515784,1.66067 +2025-07-23,Google,commit,1861,2605960000,98.0185,279.9583,783.7511,0.023328,0.078388,0.252368 +2025-07-23,Other / Unknown,commit,3182,4773000000,797.1147,2276.7422,6373.8585,0.271019,0.910697,2.931975 +2025-07-24,Azure / Microsoft,commit,3509,3508550000,182.4107,520.8402,1457.8863,0.054267,0.182294,0.586799 +2025-07-24,AWS / Anthropic,commit,1350,2836050000,692.0491,1976.9162,5534.8514,0.168825,0.567375,1.826778 +2025-07-24,Google,commit,1622,2270730000,85.4094,243.9446,682.9296,0.020327,0.068304,0.219903 +2025-07-24,Other / Unknown,commit,2821,4231500000,706.6815,2018.4443,5650.7401,0.240272,0.807378,2.59934 +2025-07-25,Azure / Microsoft,commit,3613,3612900000,187.8359,536.3309,1501.2462,0.055881,0.187716,0.604252 +2025-07-25,AWS / Anthropic,commit,1009,2119425000,517.1793,1477.3807,4136.2819,0.126166,0.424008,1.36518 +2025-07-25,Google,commit,1567,2193590000,82.5079,235.6574,659.7295,0.019637,0.065984,0.212433 +2025-07-25,Other / Unknown,commit,3251,4876500000,814.3997,2326.1122,6512.0723,0.276896,0.930445,2.995553 +2025-07-26,Azure / Microsoft,commit,3159,3159300000,164.2531,468.9945,1312.7646,0.048865,0.164148,0.528388 +2025-07-26,AWS / Anthropic,commit,1212,2544990000,621.0251,1774.0279,4966.817,0.151499,0.509146,1.639298 +2025-07-26,Google,commit,1015,1420720000,53.4378,152.628,427.2863,0.012718,0.042736,0.137586 +2025-07-26,Other / Unknown,commit,2470,3705000000,618.7534,1767.3015,4947.6526,0.210376,0.706921,2.27592 +2025-07-27,Azure / Microsoft,commit,3672,3671750000,190.8955,545.0671,1525.6998,0.056791,0.190773,0.614094 +2025-07-27,AWS / Anthropic,commit,1135,2383290000,581.5672,1661.3122,4651.2424,0.141873,0.476797,1.535143 +2025-07-27,Google,commit,1470,2058490000,77.4264,221.1436,619.0977,0.018427,0.06192,0.199349 +2025-07-27,Other / Unknown,commit,2642,3963000000,661.8407,1890.3686,5292.1855,0.225026,0.756147,2.434405 +2025-07-28,Azure / Microsoft,commit,3659,3659200000,190.243,543.2041,1520.485,0.056597,0.190121,0.611995 +2025-07-28,AWS / Anthropic,commit,1043,2190090000,534.4228,1526.6389,4274.1921,0.130372,0.438145,1.410697 +2025-07-28,Google,commit,1667,2333660000,87.7764,250.7051,701.856,0.020891,0.070197,0.225998 +2025-07-28,Other / Unknown,commit,3335,5002500000,835.4423,2386.2147,6680.3326,0.28405,0.954486,3.072953 +2025-07-29,Azure / Microsoft,commit,3546,3545750000,184.3447,526.3625,1473.3438,0.054843,0.184227,0.593021 +2025-07-29,AWS / Anthropic,commit,1551,3256995000,794.7676,2270.3429,6356.37,0.193884,0.651588,2.09792 +2025-07-29,Google,commit,1578,2209620000,83.1108,237.3795,664.5506,0.01978,0.066466,0.213985 +2025-07-29,Other / Unknown,commit,2974,4461000000,745.0091,2127.9168,5957.2141,0.253303,0.851167,2.740318 +2025-07-30,Azure / Microsoft,commit,4092,4092350000,212.7626,607.5047,1700.4691,0.063297,0.212627,0.684439 +2025-07-30,AWS / Anthropic,commit,1799,3778740000,922.0831,2634.034,7374.6105,0.224942,0.755968,2.43399 +2025-07-30,Google,commit,1596,2234750000,84.0561,240.0792,672.1085,0.020005,0.067222,0.216419 +2025-07-30,Other / Unknown,commit,3354,5031000000,840.202,2399.8094,6718.3914,0.285669,0.959924,3.09046 +2025-07-31,Azure / Microsoft,commit,4205,4205050000,218.6219,624.2349,1747.2987,0.06504,0.218482,0.703288 +2025-07-31,AWS / Anthropic,commit,1579,3316425000,809.2696,2311.7696,6472.354,0.197421,0.663478,2.1362 +2025-07-31,Google,commit,1708,2390780000,89.9248,256.8415,719.035,0.021402,0.071916,0.231529 +2025-07-31,Other / Unknown,commit,3808,5712000000,953.9323,2724.6494,7627.798,0.324337,1.08986,3.508787 +2025-08-01,Azure / Microsoft,commit,3906,3905700000,203.0586,579.7967,1622.9116,0.06041,0.202929,0.653222 +2025-08-01,AWS / Anthropic,commit,1497,3143595000,767.0959,2191.2956,6135.0579,0.187133,0.628902,2.024876 +2025-08-01,Google,commit,1811,2535890000,95.3829,272.4307,762.6774,0.022701,0.076281,0.245582 +2025-08-01,Other / Unknown,commit,3125,4687500000,782.8358,2235.9583,6259.6819,0.266164,0.894383,2.879454 +2025-08-02,Azure / Microsoft,commit,3121,3121050000,162.2644,463.3163,1296.8708,0.048274,0.162161,0.52199 +2025-08-02,AWS / Anthropic,commit,1134,2380980000,581.0036,1659.702,4646.7342,0.141736,0.476334,1.533655 +2025-08-02,Google,commit,1654,2315810000,87.105,248.7875,696.4876,0.020731,0.069661,0.224269 +2025-08-02,Other / Unknown,commit,2323,3484500000,581.9288,1662.122,4653.1972,0.197856,0.664849,2.140471 +2025-08-03,Azure / Microsoft,commit,3816,3816500000,198.4211,566.5551,1585.8469,0.05903,0.198294,0.638303 +2025-08-03,AWS / Anthropic,commit,1599,3357795000,819.3647,2340.6073,6553.0919,0.199884,0.671754,2.162848 +2025-08-03,Google,commit,1787,2501170000,94.077,268.7007,752.2352,0.02239,0.075236,0.24222 +2025-08-03,Other / Unknown,commit,2592,3888000000,649.3153,1854.5933,5192.0306,0.220767,0.741837,2.388334 +2025-08-04,Azure / Microsoft,commit,4128,4127900000,214.6109,612.782,1715.241,0.063847,0.214474,0.690384 +2025-08-04,AWS / Anthropic,commit,1294,2716770000,662.9426,1893.77,5302.0638,0.161725,0.543512,1.749946 +2025-08-04,Google,commit,1560,2184560000,82.1683,234.6873,657.0137,0.019556,0.065712,0.211558 +2025-08-04,Other / Unknown,commit,3665,5497500000,918.1098,2622.3319,7341.355,0.312157,1.048933,3.377023 +2025-08-05,Azure / Microsoft,commit,4114,4114350000,213.9064,610.7706,1709.6106,0.063637,0.21377,0.688118 +2025-08-05,AWS / Anthropic,commit,1390,2919840000,712.4955,2035.3234,5698.3764,0.173813,0.584138,1.880749 +2025-08-05,Google,commit,1703,2384550000,89.6905,256.1722,717.1613,0.021346,0.071728,0.230926 +2025-08-05,Other / Unknown,commit,3570,5355000000,894.3116,2554.3588,7151.0607,0.304066,1.021744,3.289488 +2025-08-06,Azure / Microsoft,commit,4083,4083350000,212.2947,606.1686,1696.7294,0.063158,0.212159,0.682934 +2025-08-06,AWS / Anthropic,commit,1938,4069590000,993.0559,2836.7759,7942.2351,0.242256,0.814155,2.621335 +2025-08-06,Google,commit,2112,2956450000,111.2015,317.6115,889.1622,0.026466,0.088931,0.28631 +2025-08-06,Other / Unknown,commit,3391,5086500000,849.4707,2426.2831,6792.5061,0.28882,0.970513,3.124553 +2025-08-07,Azure / Microsoft,commit,4179,4178950000,217.265,620.3603,1736.4535,0.064636,0.217126,0.698923 +2025-08-07,AWS / Anthropic,commit,1280,2686950000,655.666,1872.9835,5243.8669,0.15995,0.537546,1.730738 +2025-08-07,Google,commit,2667,3733170000,140.4164,401.0545,1122.7633,0.033419,0.112295,0.36153 +2025-08-07,Other / Unknown,commit,3637,5455500000,911.0956,2602.2977,7285.2682,0.309772,1.040919,3.351223 +2025-08-08,Azure / Microsoft,commit,4008,4007600000,208.3564,594.9236,1665.2535,0.061986,0.208223,0.670265 +2025-08-08,AWS / Anthropic,commit,1286,2700075000,658.8687,1882.1325,5269.4818,0.160731,0.540172,1.739192 +2025-08-08,Google,commit,2719,3806110000,143.1599,408.8905,1144.7002,0.034072,0.114489,0.368593 +2025-08-08,Other / Unknown,commit,3259,4888500000,816.4038,2331.8362,6528.0971,0.277577,0.932734,3.002925 +2025-08-09,Azure / Microsoft,commit,4441,4441100000,230.8943,659.2762,1845.3831,0.068691,0.230747,0.742767 +2025-08-09,AWS / Anthropic,commit,1576,3309285000,807.5273,2306.7926,6458.4195,0.196996,0.662049,2.131601 +2025-08-09,Google,commit,2375,3325070000,125.0665,357.2123,1000.0259,0.029766,0.100019,0.322008 +2025-08-09,Other / Unknown,commit,3430,5145000000,859.2405,2454.1879,6870.6269,0.292142,0.981675,3.160488 +2025-08-10,Azure / Microsoft,commit,4278,4277650000,222.3964,635.0122,1777.4657,0.066163,0.222254,0.71543 +2025-08-10,AWS / Anthropic,commit,1324,2780820000,678.572,1938.4172,5427.0642,0.165538,0.556326,1.791203 +2025-08-10,Google,commit,2501,3501610000,131.7067,376.178,1053.1209,0.031346,0.10533,0.339105 +2025-08-10,Other / Unknown,commit,3372,5058000000,844.7111,2412.6885,6754.4472,0.287202,0.965075,3.107046 +2025-08-11,Azure / Microsoft,commit,5197,5197400000,270.2145,771.5481,2159.6438,0.080389,0.270042,0.869257 +2025-08-11,AWS / Anthropic,commit,2194,4608030000,1124.4453,3212.1045,8993.0576,0.274308,0.921874,2.968159 +2025-08-11,Google,commit,3408,4771620000,179.4758,512.6152,1435.0806,0.042715,0.143532,0.462096 +2025-08-11,Other / Unknown,commit,4133,6199500000,1035.3473,2957.1891,8278.805,0.352018,1.182876,3.80825 +2025-08-12,Azure / Microsoft,commit,4918,4917700000,255.6729,730.0269,2043.4217,0.076063,0.255509,0.822477 +2025-08-12,AWS / Anthropic,commit,1706,3582390000,874.17,2497.165,6991.4128,0.213254,0.716686,2.307516 +2025-08-12,Google,commit,3298,4617760000,173.6887,496.086,1388.8067,0.041338,0.138904,0.447196 +2025-08-12,Other / Unknown,commit,4126,6189000000,1033.5937,2952.1805,8264.7833,0.351422,1.180872,3.8018 +2025-08-13,Azure / Microsoft,commit,5249,5248650000,272.8791,779.1561,2180.9394,0.081182,0.272705,0.877828 +2025-08-13,AWS / Anthropic,commit,2511,5272890000,1286.6836,3675.5563,10290.6022,0.313886,1.054885,3.396413 +2025-08-13,Google,commit,3444,4822230000,181.3794,518.0522,1450.3017,0.043168,0.145055,0.466997 +2025-08-13,Other / Unknown,commit,4016,6024000000,1006.0379,2873.4748,8044.4425,0.342053,1.14939,3.700444 +2025-08-14,Azure / Microsoft,commit,4446,4446100000,231.1542,660.0185,1847.4607,0.068768,0.231006,0.743603 +2025-08-14,AWS / Anthropic,commit,1557,3269385000,797.791,2278.9796,6380.5504,0.194621,0.654067,2.105901 +2025-08-14,Google,commit,3458,4841270000,182.0956,520.0977,1456.0281,0.043339,0.145627,0.468841 +2025-08-14,Other / Unknown,commit,3776,5664000000,945.9161,2701.7532,7563.6989,0.321611,1.080701,3.479301 +2025-08-15,Azure / Microsoft,commit,4602,4602000000,239.2595,683.1616,1912.2409,0.07118,0.239107,0.769677 +2025-08-15,AWS / Anthropic,commit,1699,3567690000,870.5829,2486.9181,6962.7242,0.212379,0.713745,2.298047 +2025-08-15,Google,commit,3291,4607540000,173.3042,494.9881,1385.733,0.041246,0.138597,0.446206 +2025-08-15,Other / Unknown,commit,3831,5746500000,959.694,2741.106,7673.8693,0.326296,1.096442,3.52998 +2025-08-16,Azure / Microsoft,commit,4041,4041300000,210.1085,599.9264,1679.2566,0.062507,0.209974,0.675901 +2025-08-16,AWS / Anthropic,commit,1436,3016125000,735.9908,2102.4405,5886.2868,0.179545,0.6034,1.942769 +2025-08-16,Google,commit,2650,3710630000,139.5686,398.633,1115.9843,0.033217,0.111617,0.359347 +2025-08-16,Other / Unknown,commit,3126,4689000000,783.0863,2236.6738,6261.685,0.266249,0.89467,2.880375 +2025-08-17,Azure / Microsoft,commit,4606,4605550000,239.4441,683.6886,1913.716,0.071235,0.239291,0.770271 +2025-08-17,AWS / Anthropic,commit,1989,4177740000,1019.4465,2912.1637,8153.3012,0.248694,0.835791,2.690997 +2025-08-17,Google,commit,3114,4359670000,163.9811,468.3594,1311.1853,0.039027,0.131141,0.422202 +2025-08-17,Other / Unknown,commit,3127,4690500000,783.3368,2237.3893,6263.6881,0.266335,0.894956,2.881297 +2025-08-18,Azure / Microsoft,commit,4374,4373900000,227.4005,649.3005,1817.4599,0.067652,0.227255,0.731528 +2025-08-18,AWS / Anthropic,commit,1836,3855705000,940.864,2687.6838,7524.8159,0.229524,0.771365,2.483565 +2025-08-18,Google,commit,3136,4390470000,165.1396,471.6683,1320.4485,0.039303,0.132067,0.425184 +2025-08-18,Other / Unknown,commit,3286,4929000000,823.1675,2351.1549,6582.1808,0.279877,0.940462,3.027803 +2025-08-19,Azure / Microsoft,commit,5679,5678650000,295.2349,842.9891,2359.6146,0.087832,0.295046,0.949745 +2025-08-19,AWS / Anthropic,commit,2475,5196765000,1268.1077,3622.4921,10142.0362,0.309355,1.039655,3.347379 +2025-08-19,Google,commit,3361,4704980000,176.9693,505.4561,1415.0384,0.042119,0.141528,0.455642 +2025-08-19,Other / Unknown,commit,4572,6858000000,1145.32,3271.2965,9158.1651,0.389409,1.308519,4.212756 +2025-08-20,Azure / Microsoft,commit,5503,5503250000,286.1158,816.9512,2286.7317,0.085119,0.285933,0.92041 +2025-08-20,AWS / Anthropic,commit,1336,2804970000,684.465,1955.2513,5474.1955,0.166975,0.561157,1.806758 +2025-08-20,Google,commit,3165,4431070000,166.6666,476.0299,1332.659,0.039667,0.133288,0.429116 +2025-08-20,Other / Unknown,commit,5080,7620000000,1272.5778,3634.7739,10175.739,0.432676,1.45391,4.68084 +2025-08-21,Azure / Microsoft,commit,5348,5348500000,278.0703,793.9787,2222.4294,0.082726,0.277893,0.894528 +2025-08-21,AWS / Anthropic,commit,1679,3525165000,860.2061,2457.2753,6879.7321,0.209847,0.705238,2.270656 +2025-08-21,Google,commit,3227,4517590000,169.9209,485.3248,1358.6802,0.040441,0.135891,0.437495 +2025-08-21,Other / Unknown,commit,4925,7387500000,1233.7492,3523.8703,9865.2587,0.419475,1.409548,4.538019 +2025-08-22,Azure / Microsoft,commit,5640,5640500000,293.2515,837.3258,2343.7624,0.087242,0.293064,0.943364 +2025-08-22,AWS / Anthropic,commit,1988,4173960000,1018.5241,2909.5287,8145.9241,0.248469,0.835035,2.688562 +2025-08-22,Google,commit,3526,4936260000,185.6685,530.3025,1484.5966,0.044189,0.148485,0.47804 +2025-08-22,Other / Unknown,commit,4721,7081500000,1182.6456,3377.907,9456.6267,0.4021,1.351163,4.350048 +2025-08-23,Azure / Microsoft,commit,4958,4958300000,257.7837,736.054,2060.292,0.076691,0.257619,0.829268 +2025-08-23,AWS / Anthropic,commit,1538,3230325000,788.2596,2251.7522,6304.3207,0.192296,0.646253,2.080741 +2025-08-23,Google,commit,3067,4294430000,161.5272,461.3507,1291.5641,0.038443,0.129178,0.415884 +2025-08-23,Other / Unknown,commit,3836,5754000000,960.9466,2744.6836,7683.8848,0.326722,1.097873,3.534587 +2025-08-24,Azure / Microsoft,commit,4611,4611200000,239.7378,684.5274,1916.0637,0.071322,0.239585,0.771216 +2025-08-24,AWS / Anthropic,commit,1354,2843400000,693.8427,1982.0396,5549.1957,0.169263,0.568845,1.831512 +2025-08-24,Google,commit,2735,3828720000,144.0103,411.3194,1151.5003,0.034274,0.115169,0.370783 +2025-08-24,Other / Unknown,commit,3782,5673000000,947.4192,2706.0462,7575.7175,0.322123,1.082418,3.48483 +2025-08-25,Azure / Microsoft,commit,4566,4566500000,237.4138,677.8917,1897.4898,0.070631,0.237262,0.76374 +2025-08-25,AWS / Anthropic,commit,1119,2350005000,573.4451,1638.1104,4586.2832,0.139892,0.470138,1.513703 +2025-08-25,Google,commit,3382,4735430000,178.1146,508.7273,1424.1963,0.042391,0.142444,0.458591 +2025-08-25,Other / Unknown,commit,4341,6511500000,1087.4528,3106.0144,8695.4494,0.369734,1.242406,3.999907 +2025-08-26,Azure / Microsoft,commit,4957,4957000000,257.7161,735.861,2059.7518,0.076671,0.257551,0.82905 +2025-08-26,AWS / Anthropic,commit,1418,2977275000,726.5107,2075.3594,5810.4669,0.177232,0.595628,1.917745 +2025-08-26,Google,commit,3274,4583950000,172.417,492.4538,1378.6382,0.041035,0.137887,0.443922 +2025-08-26,Other / Unknown,commit,4320,6480000000,1082.1922,3090.9888,8653.3843,0.367945,1.236396,3.980557 +2025-08-27,Azure / Microsoft,commit,5379,5378800000,279.6456,798.4767,2235.0198,0.083195,0.279467,0.899595 +2025-08-27,AWS / Anthropic,commit,1940,4074105000,994.1577,2839.9231,7951.0466,0.242525,0.815058,2.624243 +2025-08-27,Google,commit,3492,4889010000,183.8912,525.2264,1470.386,0.043766,0.147063,0.473464 +2025-08-27,Other / Unknown,commit,4330,6495000000,1084.6972,3098.1439,8673.4153,0.368797,1.239258,3.989771 +2025-08-28,Azure / Microsoft,commit,5701,5701250000,296.4099,846.344,2369.0055,0.088182,0.29622,0.953525 +2025-08-28,AWS / Anthropic,commit,1777,3732015000,910.6813,2601.4636,7283.4218,0.222161,0.74662,2.403893 +2025-08-28,Google,commit,2933,4105640000,154.4262,441.069,1234.7849,0.036753,0.123499,0.397601 +2025-08-28,Other / Unknown,commit,4701,7051500000,1177.6355,3363.5968,9416.5647,0.400396,1.345439,4.33162 +2025-08-29,Azure / Microsoft,commit,5015,5015300000,260.7471,744.5155,2083.9769,0.077572,0.26058,0.838801 +2025-08-29,AWS / Anthropic,commit,1440,3023475000,737.7843,2107.5639,5900.6311,0.179982,0.604871,1.947503 +2025-08-29,Google,commit,2819,3946530000,148.4416,423.9758,1186.932,0.035329,0.118713,0.382192 +2025-08-29,Other / Unknown,commit,4619,6928500000,1157.0939,3304.9253,9252.3107,0.393412,1.32197,4.256063 +2025-08-30,Azure / Microsoft,commit,5020,5019900000,260.9863,745.1984,2085.8883,0.077643,0.260819,0.83957 +2025-08-30,AWS / Anthropic,commit,1463,3072720000,749.801,2141.891,5996.7379,0.182914,0.614723,1.979223 +2025-08-30,Google,commit,2622,3670660000,138.0652,394.3391,1103.9632,0.03286,0.110415,0.355476 +2025-08-30,Other / Unknown,commit,4124,6186000000,1033.0927,2950.7495,8260.7771,0.351252,1.1803,3.799957 +2025-08-31,Azure / Microsoft,commit,4954,4953700000,257.5445,735.3711,2058.3806,0.076619,0.25738,0.828498 +2025-08-31,AWS / Anthropic,commit,1240,2603160000,635.2196,1814.5763,5080.3419,0.154962,0.520783,1.676767 +2025-08-31,Google,commit,2426,3395980000,127.7336,364.8302,1021.3523,0.030401,0.102152,0.328875 +2025-08-31,Other / Unknown,commit,4407,6610500000,1103.9863,3153.2379,8827.6539,0.375355,1.261295,4.060721 +2025-09-01,Azure / Microsoft,commit,5544,5544250000,288.2474,823.0376,2303.7682,0.085754,0.288063,0.927267 +2025-09-01,AWS / Anthropic,commit,1148,2410905000,588.3058,1680.5617,4705.136,0.143517,0.482321,1.55293 +2025-09-01,Google,commit,2617,3663380000,137.7914,393.557,1101.7737,0.032794,0.110196,0.354771 +2025-09-01,Other / Unknown,commit,5484,8226000000,1373.7828,3923.8386,10984.9907,0.467086,1.569535,5.053096 +2025-09-02,Azure / Microsoft,commit,6401,6400900000,332.7849,950.2063,2659.7267,0.099004,0.332572,1.07054 +2025-09-02,AWS / Anthropic,commit,1251,2626260000,640.8565,1830.6785,5125.424,0.156337,0.525405,1.691646 +2025-09-02,Google,commit,3022,4230100000,159.1075,454.4397,1272.2167,0.037868,0.127243,0.409654 +2025-09-02,Other / Unknown,commit,6192,9288000000,1551.1421,4430.4173,12403.1842,0.527388,1.772167,5.705465 +2025-09-03,Azure / Microsoft,commit,5285,5284700000,274.7533,784.5077,2195.919,0.081739,0.274578,0.883857 +2025-09-03,AWS / Anthropic,commit,1204,2528190000,616.9255,1762.3172,4934.03,0.150499,0.505785,1.628477 +2025-09-03,Google,commit,2664,3730160000,140.3032,400.7311,1121.858,0.033392,0.112205,0.361238 +2025-09-03,Other / Unknown,commit,5014,7521000000,1256.0443,3587.5504,10043.5345,0.427055,1.43502,4.620026 +2025-09-04,Azure / Microsoft,commit,4765,4764750000,247.7209,707.3217,1979.8674,0.073697,0.247563,0.796897 +2025-09-04,AWS / Anthropic,commit,928,1948275000,475.4155,1358.0777,3802.2646,0.115978,0.389768,1.254937 +2025-09-04,Google,commit,2920,4087300000,153.7364,439.0987,1229.2691,0.036589,0.122948,0.395825 +2025-09-04,Other / Unknown,commit,4575,6862500000,1146.0716,3273.443,9164.1744,0.389664,1.309377,4.21552 +2025-09-05,Azure / Microsoft,commit,4661,4660750000,242.3139,691.883,1936.6529,0.072088,0.242159,0.779503 +2025-09-05,AWS / Anthropic,commit,864,1813665000,442.5681,1264.2456,3539.559,0.107964,0.362838,1.168231 +2025-09-05,Google,commit,2511,3514840000,132.2043,377.5993,1057.0998,0.031465,0.105728,0.340386 +2025-09-05,Other / Unknown,commit,4544,6816000000,1138.3058,3251.2623,9102.0783,0.387024,1.300505,4.186956 +2025-09-06,Azure / Microsoft,commit,4383,4383250000,227.8866,650.6884,1821.345,0.067796,0.227741,0.733091 +2025-09-06,AWS / Anthropic,commit,1015,2132130000,520.2795,1486.2369,4161.0771,0.126922,0.42655,1.373363 +2025-09-06,Google,commit,2407,3370430000,126.7726,362.0853,1013.668,0.030172,0.101384,0.326401 +2025-09-06,Other / Unknown,commit,4031,6046500000,1009.7955,2884.2074,8074.4889,0.34333,1.153683,3.714265 +2025-09-07,Azure / Microsoft,commit,4579,4579250000,238.0767,679.7844,1902.7877,0.070828,0.237925,0.765872 +2025-09-07,AWS / Anthropic,commit,1111,2333310000,569.3712,1626.4728,4553.7011,0.138898,0.466798,1.502949 +2025-09-07,Google,commit,2224,3113110000,117.094,334.4415,936.2782,0.027868,0.093644,0.301482 +2025-09-07,Other / Unknown,commit,3957,5935500000,991.258,2831.2599,7926.2597,0.337028,1.132504,3.646079 +2025-09-08,Azure / Microsoft,commit,5763,5762800000,299.6099,855.4811,2394.581,0.089134,0.299418,0.963819 +2025-09-08,AWS / Anthropic,commit,1384,2905770000,709.0621,2025.5157,5670.9173,0.172976,0.581323,1.871686 +2025-09-08,Google,commit,2722,3810100000,143.31,409.3191,1145.9003,0.034108,0.114609,0.36898 +2025-09-08,Other / Unknown,commit,5216,7824000000,1306.6468,3732.0828,10448.1603,0.44426,1.492833,4.806154 +2025-09-09,Azure / Microsoft,commit,5084,5083850000,264.311,754.6917,2112.461,0.078633,0.264142,0.850266 +2025-09-09,AWS / Anthropic,commit,956,2008125000,490.02,1399.7972,3919.0682,0.11954,0.401742,1.293488 +2025-09-09,Google,commit,2544,3561460000,133.9578,382.6077,1071.1209,0.031882,0.10713,0.344901 +2025-09-09,Other / Unknown,commit,5249,7873500000,1314.9136,3755.6945,10514.2626,0.447071,1.502278,4.836561 +2025-09-10,Azure / Microsoft,commit,5293,5293400000,275.2056,785.7992,2199.5341,0.081874,0.27503,0.885312 +2025-09-10,AWS / Anthropic,commit,1068,2241960000,547.0801,1562.7958,4375.4219,0.13346,0.448522,1.444108 +2025-09-10,Google,commit,2439,3414600000,128.434,366.8305,1026.9523,0.030567,0.102713,0.330679 +2025-09-10,Other / Unknown,commit,5227,7840500000,1309.4024,3739.9533,10470.1944,0.445197,1.495981,4.816289 +2025-09-11,Azure / Microsoft,commit,5234,5234500000,272.1434,777.0555,2175.0597,0.080963,0.271969,0.875462 +2025-09-11,AWS / Anthropic,commit,871,1828680000,446.2321,1274.712,3568.8623,0.108858,0.365842,1.177903 +2025-09-11,Google,commit,2284,3197180000,120.2561,343.4731,961.5625,0.028621,0.096172,0.309623 +2025-09-11,Other / Unknown,commit,5157,7735500000,1291.8669,3689.8679,10329.9775,0.439235,1.475947,4.75179 +2025-09-12,Azure / Microsoft,commit,4979,4978900000,258.8547,739.112,2068.8518,0.077009,0.258689,0.832713 +2025-09-12,AWS / Anthropic,commit,1015,2131500000,520.1258,1485.7978,4159.8476,0.126885,0.426424,1.372958 +2025-09-12,Google,commit,2096,2934540000,110.3774,315.2577,882.5727,0.02627,0.088272,0.284188 +2025-09-12,Other / Unknown,commit,5126,7689000000,1284.1012,3667.6872,10267.8815,0.436594,1.467075,4.723225 +2025-09-13,Azure / Microsoft,commit,4529,4528950000,235.4616,672.3174,1881.8868,0.07005,0.235311,0.757459 +2025-09-13,AWS / Anthropic,commit,1019,2139795000,522.1499,1491.58,4176.0361,0.127378,0.428083,1.378301 +2025-09-13,Google,commit,1814,2539740000,95.5277,272.8443,763.8353,0.022736,0.076396,0.245955 +2025-09-13,Other / Unknown,commit,4216,6324000000,1056.1394,3016.5761,8445.0621,0.359087,1.20663,3.884729 +2025-09-14,Azure / Microsoft,commit,4695,4694650000,244.0764,696.9154,1950.7391,0.072613,0.24392,0.785173 +2025-09-14,AWS / Anthropic,commit,1254,2634030000,642.7525,1836.0947,5140.588,0.156799,0.526959,1.696651 +2025-09-14,Google,commit,1993,2790270000,104.9509,299.7587,839.183,0.024978,0.083932,0.270217 +2025-09-14,Other / Unknown,commit,4656,6984000000,1166.3627,3331.399,9326.4253,0.396563,1.33256,4.290156 +2025-09-15,Azure / Microsoft,commit,4859,4859250000,252.634,721.3501,2019.1344,0.075159,0.252473,0.812702 +2025-09-15,AWS / Anthropic,commit,1158,2431590000,593.3533,1694.9805,4745.5049,0.144749,0.486459,1.566254 +2025-09-15,Google,commit,2373,3321990000,124.9506,356.8814,999.0995,0.029738,0.099927,0.32171 +2025-09-15,Other / Unknown,commit,4951,7426500000,1240.2624,3542.4735,9917.3393,0.421689,1.416989,4.561976 +2025-09-16,Azure / Microsoft,commit,5379,5378800000,279.6456,798.4767,2235.0198,0.083195,0.279467,0.899595 +2025-09-16,AWS / Anthropic,commit,1189,2497215000,609.3671,1740.7256,4873.579,0.148655,0.499588,1.608525 +2025-09-16,Google,commit,2470,3458070000,130.069,371.5005,1040.0261,0.030956,0.10402,0.334888 +2025-09-16,Other / Unknown,commit,5441,8161500000,1363.011,3893.0718,10898.8574,0.463424,1.557229,5.013474 +2025-09-17,Azure / Microsoft,commit,5610,5609650000,291.6476,832.7461,2330.9435,0.086765,0.291461,0.938205 +2025-09-17,AWS / Anthropic,commit,1380,2898945000,707.3967,2020.7582,5657.5976,0.172569,0.579958,1.86729 +2025-09-17,Google,commit,2332,3264660000,122.7943,350.7225,981.8574,0.029225,0.098202,0.316158 +2025-09-17,Other / Unknown,commit,5468,8202000000,1369.7747,3912.3905,10952.9411,0.465723,1.564956,5.038353 +2025-09-18,Azure / Microsoft,commit,4747,4746650000,246.7799,704.6348,1972.3464,0.073417,0.246622,0.793869 +2025-09-18,AWS / Anthropic,commit,1119,2350845000,573.6501,1638.6959,4587.9225,0.139942,0.470306,1.514244 +2025-09-18,Google,commit,2138,2993060000,112.5785,321.5445,900.1728,0.026794,0.090032,0.289856 +2025-09-18,Other / Unknown,commit,4588,6882000000,1149.3282,3282.7446,9190.2146,0.390772,1.313098,4.227499 +2025-09-19,Azure / Microsoft,commit,4546,4545850000,236.3402,674.8262,1888.9092,0.070311,0.236189,0.760286 +2025-09-19,AWS / Anthropic,commit,979,2055900000,501.678,1433.0995,4012.3062,0.122384,0.4113,1.324262 +2025-09-19,Google,commit,2036,2850610000,107.2205,306.2411,857.3304,0.025518,0.085748,0.27606 +2025-09-19,Other / Unknown,commit,4643,6964500000,1163.1061,3322.0975,9300.385,0.395456,1.328839,4.278177 +2025-09-20,Azure / Microsoft,commit,4333,4332850000,225.2663,643.2066,1800.4026,0.067017,0.225122,0.724662 +2025-09-20,AWS / Anthropic,commit,897,1884435000,459.8373,1313.577,3677.6741,0.112177,0.376997,1.213816 +2025-09-20,Google,commit,1713,2397920000,90.1934,257.6086,721.1824,0.021466,0.07213,0.232221 +2025-09-20,Other / Unknown,commit,4351,6526500000,1089.9579,3113.1695,8715.4804,0.370586,1.245268,4.009121 +2025-09-21,Azure / Microsoft,commit,4448,4448100000,231.2582,660.3154,1848.2917,0.068799,0.23111,0.743937 +2025-09-21,AWS / Anthropic,commit,846,1775760000,433.3186,1237.8233,3465.5833,0.105708,0.355255,1.143816 +2025-09-21,Google,commit,2096,2934820000,110.3879,315.2878,882.6569,0.026272,0.088281,0.284216 +2025-09-21,Other / Unknown,commit,4372,6558000000,1095.2185,3128.1951,8757.5454,0.372374,1.251278,4.028471 +2025-09-22,Azure / Microsoft,commit,4843,4842950000,251.7866,718.9304,2012.3613,0.074907,0.251626,0.809975 +2025-09-22,AWS / Anthropic,commit,770,1617945000,394.8088,1127.8157,3157.5907,0.096314,0.323683,1.042163 +2025-09-22,Google,commit,2050,2869440000,107.9288,308.264,862.9936,0.025687,0.086314,0.277884 +2025-09-22,Other / Unknown,commit,5106,7659000000,1279.091,3653.377,10227.8195,0.434891,1.461351,4.704797 +2025-09-23,Azure / Microsoft,commit,5162,5162000000,268.3741,766.293,2144.9342,0.079841,0.268203,0.863336 +2025-09-23,AWS / Anthropic,commit,1086,2280600000,556.509,1589.7304,4450.832,0.13576,0.456253,1.468997 +2025-09-23,Google,commit,2229,3120600000,117.3757,335.2461,938.5308,0.027935,0.093869,0.302207 +2025-09-23,Other / Unknown,commit,6283,9424500000,1573.9383,4495.5284,12585.4661,0.535139,1.798211,5.789314 +2025-09-24,Azure / Microsoft,commit,5539,5539450000,287.9978,822.325,2301.7737,0.085679,0.287814,0.926464 +2025-09-24,AWS / Anthropic,commit,678,1424220000,347.5363,992.7764,2779.5159,0.084781,0.284927,0.917379 +2025-09-24,Google,commit,2342,3279290000,123.3445,352.2942,986.2574,0.029356,0.098642,0.317575 +2025-09-24,Other / Unknown,commit,7052,10578000000,1766.5785,5045.753,14125.8487,0.600637,2.018301,6.49789 +2025-09-25,Azure / Microsoft,commit,5584,5583550000,290.2906,828.8716,2320.0983,0.086361,0.290105,0.93384 +2025-09-25,AWS / Anthropic,commit,749,1572900000,383.817,1096.4163,3069.6806,0.093632,0.314671,1.013148 +2025-09-25,Google,commit,2196,3075030000,115.6617,330.3505,924.8255,0.027527,0.092498,0.297794 +2025-09-25,Other / Unknown,commit,5656,8484000000,1416.8701,4046.9057,11329.5235,0.481736,1.618762,5.211581 +2025-09-26,Azure / Microsoft,commit,5103,5102900000,265.3015,757.5197,2120.3768,0.078927,0.265132,0.853452 +2025-09-26,AWS / Anthropic,commit,955,2006025000,489.5075,1398.3333,3914.9698,0.119415,0.401322,1.292136 +2025-09-26,Google,commit,2834,3967390000,149.2262,426.2168,1193.2057,0.035516,0.119341,0.384212 +2025-09-26,Other / Unknown,commit,5287,7930500000,1324.4329,3782.8837,10590.3803,0.450307,1.513153,4.871575 +2025-09-27,Azure / Microsoft,commit,4972,4972200000,258.5063,738.1174,2066.0678,0.076906,0.258341,0.831592 +2025-09-27,AWS / Anthropic,commit,645,1355550000,330.7795,944.9088,2645.4991,0.080694,0.271189,0.873147 +2025-09-27,Google,commit,2477,3468220000,130.4508,372.5909,1043.0787,0.031047,0.104325,0.335871 +2025-09-27,Other / Unknown,commit,5123,7684500000,1283.3496,3665.5407,10261.8722,0.436339,1.466216,4.720461 +2025-09-28,Azure / Microsoft,commit,5053,5053350000,262.7253,750.164,2099.7876,0.078161,0.262557,0.845164 +2025-09-28,AWS / Anthropic,commit,512,1075935000,262.5482,749.9985,2099.8009,0.064049,0.21525,0.693039 +2025-09-28,Google,commit,2435,3409420000,128.2391,366.274,1025.3944,0.030521,0.102557,0.330177 +2025-09-28,Other / Unknown,commit,5231,7846500000,1310.4044,3742.8154,10478.2068,0.445538,1.497126,4.819975 +2025-09-29,Azure / Microsoft,commit,5494,5493850000,285.6271,815.5557,2282.8258,0.084974,0.285445,0.918837 +2025-09-29,AWS / Anthropic,commit,819,1719060000,419.4827,1198.2996,3354.9273,0.102333,0.343912,1.107294 +2025-09-29,Google,commit,2328,3258570000,122.5652,350.0682,980.0258,0.029171,0.098019,0.315568 +2025-09-29,Other / Unknown,commit,5837,8755500000,1462.212,4176.4124,11692.0843,0.497152,1.670565,5.378359 +2025-09-30,Azure / Microsoft,commit,6740,6740350000,350.433,1000.5972,2800.7763,0.104254,0.350209,1.127312 +2025-09-30,AWS / Anthropic,commit,1033,2169510000,529.4009,1512.2933,4234.0281,0.129147,0.434028,1.397441 +2025-09-30,Google,commit,2493,3489570000,131.2538,374.8846,1049.4998,0.031238,0.104968,0.337939 +2025-09-30,Other / Unknown,commit,7036,10554000000,1762.5704,5034.3049,14093.7991,0.599274,2.013722,6.483148 +2025-10-01,Azure / Microsoft,commit,6965,6965450000,362.1361,1034.0131,2894.3108,0.107735,0.361905,1.16496 +2025-10-01,AWS / Anthropic,commit,671,1409520000,343.9492,982.5295,2750.8273,0.083906,0.281986,0.907911 +2025-10-01,Google,commit,2492,3489290000,131.2433,374.8545,1049.4156,0.031236,0.104959,0.337912 +2025-10-01,Other / Unknown,commit,7655,11482500000,1917.6345,5477.2035,15333.7169,0.651996,2.190881,7.05351 +2025-10-02,Azure / Microsoft,commit,7759,7759000000,403.393,1151.8147,3224.0497,0.120009,0.403135,1.29768 +2025-10-02,AWS / Anthropic,commit,1141,2396205000,584.7187,1670.3148,4676.4473,0.142642,0.47938,1.543461 +2025-10-02,Google,commit,2334,3267530000,122.9022,351.0308,982.7205,0.029251,0.098289,0.316436 +2025-10-02,Other / Unknown,commit,7906,11859000000,1980.5119,5656.7957,15836.4945,0.673374,2.262718,7.284787 +2025-10-03,Azure / Microsoft,commit,8166,8165500000,424.527,1212.1591,3392.9602,0.126297,0.424256,1.365666 +2025-10-03,AWS / Anthropic,commit,987,2073540000,505.9825,1445.3958,4046.7325,0.123434,0.414829,1.335624 +2025-10-03,Google,commit,2054,2875740000,108.1657,308.9408,864.8884,0.025743,0.086503,0.278494 +2025-10-03,Other / Unknown,commit,8721,13081500000,2184.6754,6239.9336,17469.0196,0.74279,2.495973,8.035749 +2025-10-04,Azure / Microsoft,commit,7097,7096600000,368.9546,1053.4822,2948.8067,0.109764,0.368719,1.186895 +2025-10-04,AWS / Anthropic,commit,704,1478085000,360.6803,1030.3239,2884.6391,0.087988,0.295703,0.952075 +2025-10-04,Google,commit,1984,2776970000,104.4507,298.3299,835.183,0.024859,0.083532,0.268929 +2025-10-04,Other / Unknown,commit,8607,12910500000,2156.1176,6158.3659,17240.6664,0.73308,2.463346,7.930707 +2025-10-05,Azure / Microsoft,commit,7953,7952550000,413.4557,1180.5469,3304.4744,0.123003,0.413191,1.330051 +2025-10-05,AWS / Anthropic,commit,839,1762215000,430.0134,1228.3815,3439.1488,0.104902,0.352545,1.135091 +2025-10-05,Google,commit,1854,2596020000,97.6446,278.8905,780.7617,0.023239,0.078089,0.251405 +2025-10-05,Other / Unknown,commit,7829,11743500000,1961.2228,5601.7017,15682.256,0.666816,2.240681,7.213838 +2025-10-06,Azure / Microsoft,commit,7451,7450700000,387.3644,1106.0479,3095.9437,0.115241,0.387117,1.246117 +2025-10-06,AWS / Anthropic,commit,1243,2610825000,637.09,1819.9193,5095.301,0.155418,0.522317,1.681704 +2025-10-06,Google,commit,2054,2875670000,108.1631,308.9333,864.8673,0.025743,0.086501,0.278487 +2025-10-06,Other / Unknown,commit,7329,10993500000,1835.9691,5243.9484,14680.7069,0.624229,2.097579,6.753125 +2025-10-07,Azure / Microsoft,commit,7920,7919800000,411.753,1175.6852,3290.866,0.122497,0.41149,1.324574 +2025-10-07,AWS / Anthropic,commit,1301,2732520000,666.7859,1904.7488,5332.8016,0.162662,0.546663,1.760091 +2025-10-07,Google,commit,2241,3137400000,118.0076,337.0509,943.5835,0.028086,0.094374,0.303834 +2025-10-07,Other / Unknown,commit,7979,11968500000,1998.7989,5709.0277,15982.7207,0.679592,2.283611,7.352052 +2025-10-08,Azure / Microsoft,commit,8088,8088050000,420.5004,1200.6618,3360.7778,0.125099,0.420232,1.352713 +2025-10-08,AWS / Anthropic,commit,703,1475565000,360.0654,1028.5673,2879.7211,0.087838,0.295199,0.950452 +2025-10-08,Google,commit,2222,3111220000,117.0229,334.2384,935.7098,0.027851,0.093587,0.301299 +2025-10-08,Other / Unknown,commit,8532,12798000000,2137.3295,6104.7029,17090.434,0.726692,2.441881,7.8616 +2025-10-09,Azure / Microsoft,commit,8129,8128800000,422.619,1206.7111,3377.7104,0.125729,0.422349,1.359528 +2025-10-09,AWS / Anthropic,commit,936,1966440000,479.8481,1370.7399,3837.7155,0.117059,0.393402,1.266638 +2025-10-09,Google,commit,2717,3803520000,143.0625,408.6122,1143.9213,0.034049,0.114411,0.368343 +2025-10-09,Other / Unknown,commit,8467,12700500000,2121.0465,6058.1949,16960.2326,0.721156,2.423278,7.801707 +2025-10-10,Azure / Microsoft,commit,7838,7837900000,407.495,1163.5273,3256.8346,0.12123,0.407235,1.310876 +2025-10-10,AWS / Anthropic,commit,717,1505070000,367.2652,1049.1343,2937.3032,0.089594,0.301102,0.969457 +2025-10-10,Google,commit,2172,3041360000,114.3952,326.7334,914.6991,0.027226,0.091485,0.294533 +2025-10-10,Other / Unknown,commit,8268,12402000000,2071.1956,5915.8091,16561.6161,0.704206,2.366324,7.618343 +2025-10-11,Azure / Microsoft,commit,7753,7753450000,403.1044,1150.9908,3221.7436,0.119924,0.402847,1.296752 +2025-10-11,AWS / Anthropic,commit,666,1397760000,341.0795,974.332,2727.8764,0.083206,0.279633,0.900336 +2025-10-11,Google,commit,1877,2627730000,98.8373,282.2971,790.2985,0.023523,0.079043,0.254476 +2025-10-11,Other / Unknown,commit,7883,11824500000,1974.7502,5640.3391,15790.4233,0.671415,2.256136,7.263595 +2025-10-12,Azure / Microsoft,commit,7828,7828050000,406.9829,1162.0651,3252.7416,0.121077,0.406723,1.309229 +2025-10-12,AWS / Anthropic,commit,961,2018100000,492.4541,1406.7504,3938.5355,0.120134,0.403737,1.299914 +2025-10-12,Google,commit,2523,3532130000,132.8547,379.4568,1062.2999,0.031619,0.106248,0.342061 +2025-10-12,Other / Unknown,commit,7937,11905500000,1988.2776,5678.9764,15898.5906,0.676014,2.271591,7.313352 +2025-10-13,Azure / Microsoft,commit,8099,8099450000,421.0931,1202.3541,3365.5148,0.125275,0.420824,1.35462 +2025-10-13,AWS / Anthropic,commit,1234,2591610000,632.4012,1806.5252,5057.8009,0.154274,0.518473,1.669327 +2025-10-13,Google,commit,2177,3048430000,114.6612,327.4929,916.8255,0.027289,0.091698,0.295218 +2025-10-13,Other / Unknown,commit,8110,12165000000,2031.6154,5802.7591,16245.1266,0.690749,2.321104,7.472758 +2025-10-14,Azure / Microsoft,commit,9143,9143300000,475.3632,1357.3124,3799.2594,0.141421,0.475059,1.529202 +2025-10-14,AWS / Anthropic,commit,1389,2917005000,711.8037,2033.3472,5692.8436,0.173645,0.583571,1.878923 +2025-10-14,Google,commit,2324,3253110000,122.3598,349.4817,978.3837,0.029122,0.097855,0.31504 +2025-10-14,Other / Unknown,commit,9228,13842000000,2311.6827,6602.6955,18484.5904,0.785972,2.641078,8.502912 +2025-10-15,Azure / Microsoft,commit,9190,9190350000,477.8093,1364.2969,3818.8098,0.142148,0.477504,1.537071 +2025-10-15,AWS / Anthropic,commit,1452,3048360000,743.8567,2124.9104,5949.1968,0.181464,0.609849,1.963532 +2025-10-15,Google,commit,2424,3393670000,127.6467,364.582,1020.6575,0.03038,0.102083,0.328652 +2025-10-15,Other / Unknown,commit,9011,13516500000,2257.3226,6447.4306,18049.9181,0.76749,2.578972,8.302962 +2025-10-16,Azure / Microsoft,commit,9005,9005450000,468.1963,1336.8487,3741.9794,0.139288,0.467897,1.506147 +2025-10-16,AWS / Anthropic,commit,1858,3901800000,952.112,2719.8151,7614.7751,0.232268,0.780587,2.513257 +2025-10-16,Google,commit,2310,3233370000,121.6173,347.361,972.4468,0.028945,0.097261,0.313128 +2025-10-16,Other / Unknown,commit,8857,13285500000,2218.7444,6337.2425,17741.441,0.754373,2.534897,8.161063 +2025-10-17,Azure / Microsoft,commit,7508,7507500000,390.3174,1114.4798,3119.5455,0.116119,0.390068,1.255617 +2025-10-17,AWS / Anthropic,commit,910,1911945000,466.5503,1332.7533,3731.3628,0.113815,0.3825,1.231536 +2025-10-17,Google,commit,1939,2714670000,102.1074,291.637,816.446,0.024302,0.081658,0.262896 +2025-10-17,Other / Unknown,commit,7683,11524500000,1924.6487,5497.2377,15389.8036,0.654381,2.198895,7.07931 +2025-10-18,Azure / Microsoft,commit,7247,7246850000,376.7661,1075.7866,3011.2392,0.112088,0.376525,1.212024 +2025-10-18,AWS / Anthropic,commit,1145,2403975000,586.6148,1675.731,4691.6113,0.143105,0.480935,1.548466 +2025-10-18,Google,commit,1776,2486960000,93.5425,267.1741,747.9615,0.022263,0.074809,0.240844 +2025-10-18,Other / Unknown,commit,7373,11059500000,1846.9914,5275.4307,14768.8432,0.627977,2.110172,6.793668 +2025-10-19,Azure / Microsoft,commit,7770,7769650000,403.9467,1153.3957,3228.475,0.120174,0.403688,1.299461 +2025-10-19,AWS / Anthropic,commit,1296,2720550000,663.865,1896.405,5309.4409,0.16195,0.544268,1.752381 +2025-10-19,Google,commit,1882,2634590000,99.0953,283.034,792.3617,0.023585,0.07925,0.25514 +2025-10-19,Other / Unknown,commit,7417,11125500000,1858.0137,5306.9129,14856.9795,0.631725,2.122765,6.834211 +2025-10-20,Azure / Microsoft,commit,7980,7980200000,414.8932,1184.6516,3315.9636,0.123431,0.414628,1.334675 +2025-10-20,AWS / Anthropic,commit,2434,5110560000,1247.072,3562.4015,9973.7981,0.304223,1.022409,3.291852 +2025-10-20,Google,commit,2061,2885680000,108.5396,310.0086,867.8779,0.025832,0.086802,0.279457 +2025-10-20,Other / Unknown,commit,8182,12273000000,2049.6519,5854.2755,16389.3497,0.696882,2.34171,7.539101 +2025-10-21,Azure / Microsoft,commit,8411,8410650000,437.2725,1248.5514,3494.8259,0.130089,0.436993,1.406667 +2025-10-21,AWS / Anthropic,commit,7769,16313955000,3980.9095,11371.9156,31838.4077,0.971143,3.26374,10.508266 +2025-10-21,Google,commit,2279,3190320000,119.9981,342.7361,959.4994,0.02856,0.095966,0.308959 +2025-10-21,Other / Unknown,commit,8283,12424500000,2074.9532,5926.5417,16591.6626,0.705484,2.370617,7.632165 +2025-10-22,Azure / Microsoft,commit,8776,8775550000,456.2437,1302.7204,3646.4505,0.135733,0.455952,1.467696 +2025-10-22,AWS / Anthropic,commit,8662,18190410000,4438.7996,12679.93,35500.5079,1.082845,3.63914,11.716943 +2025-10-22,Google,commit,2245,3143490000,118.2367,337.7052,945.4151,0.02814,0.094557,0.304424 +2025-10-22,Other / Unknown,commit,8803,13204500000,2205.217,6298.6052,17633.2737,0.749774,2.519442,8.111306 +2025-10-23,Azure / Microsoft,commit,9036,9035550000,469.7612,1341.3171,3754.4867,0.139754,0.469461,1.511181 +2025-10-23,AWS / Anthropic,commit,8236,17295600000,4220.4492,12056.1877,33754.1916,1.029579,3.460126,11.140571 +2025-10-23,Google,commit,2159,3023230000,113.7133,324.7856,909.2465,0.027064,0.09094,0.292777 +2025-10-23,Other / Unknown,commit,9152,13728000000,2292.6441,6548.317,18332.3549,0.779499,2.619327,8.432883 +2025-10-24,Azure / Microsoft,commit,7898,7898300000,410.6352,1172.4936,3281.9322,0.122164,0.410373,1.320978 +2025-10-24,AWS / Anthropic,commit,7769,16314270000,3980.9864,11372.1352,31839.0224,0.971162,3.263803,10.508469 +2025-10-24,Google,commit,1985,2779000000,104.527,298.548,835.7935,0.024877,0.083593,0.269126 +2025-10-24,Other / Unknown,commit,8519,12778500000,2134.0729,6095.4013,17064.3938,0.725585,2.438161,7.849621 +2025-10-25,Azure / Microsoft,commit,8434,8434150000,438.4942,1252.0399,3504.5907,0.130452,0.438214,1.410598 +2025-10-25,AWS / Anthropic,commit,6968,14632380000,3570.5738,10199.7456,28556.6363,0.871041,2.927327,9.425118 +2025-10-25,Google,commit,1809,2532670000,95.2618,272.0848,761.7089,0.022672,0.076184,0.24527 +2025-10-25,Other / Unknown,commit,8886,13329000000,2226.0092,6357.9922,17799.5308,0.756843,2.543197,8.187784 +2025-10-26,Azure / Microsoft,commit,8396,8396000000,436.5108,1246.3766,3488.7384,0.129862,0.436232,1.404217 +2025-10-26,AWS / Anthropic,commit,7004,14708505000,3589.1497,10252.8098,28705.2023,0.875573,2.942556,9.474152 +2025-10-26,Google,commit,1711,2395330000,90.096,257.3303,720.4035,0.021443,0.072052,0.23197 +2025-10-26,Other / Unknown,commit,8871,13306500000,2222.2515,6347.2596,17769.4843,0.755566,2.538904,8.173963 +2025-10-27,Azure / Microsoft,commit,8749,8748750000,454.8504,1298.7419,3635.3145,0.135318,0.45456,1.463214 +2025-10-27,AWS / Anthropic,commit,8051,16907205000,4125.6736,11785.4505,32996.1977,1.006458,3.382424,10.890395 +2025-10-27,Google,commit,2095,2933280000,110.33,315.1223,882.1937,0.026259,0.088234,0.284066 +2025-10-27,Other / Unknown,commit,9127,13690500000,2286.3814,6530.4293,18282.2775,0.77737,2.612172,8.409848 +2025-10-28,Azure / Microsoft,commit,9396,9395850000,488.4934,1394.8032,3904.2,0.145327,0.488181,1.57144 +2025-10-28,AWS / Anthropic,commit,7345,15424500000,3763.8659,10751.9061,30102.5422,0.918195,3.085797,9.935344 +2025-10-28,Google,commit,2162,3027010000,113.8555,325.1917,910.3833,0.027098,0.091054,0.293143 +2025-10-28,Other / Unknown,commit,9837,14755500000,2464.2417,7038.4391,19704.4772,0.837842,2.815376,9.06406 +2025-10-29,Azure / Microsoft,commit,10877,10876900000,565.4936,1614.6634,4519.6116,0.168234,0.565132,1.819144 +2025-10-29,AWS / Anthropic,commit,8258,17340855000,4231.4923,12087.7335,33842.5115,1.032273,3.46918,11.169721 +2025-10-29,Google,commit,2066,2891770000,108.7687,310.6629,869.7095,0.025887,0.086986,0.280046 +2025-10-29,Other / Unknown,commit,11470,17205000000,2873.3204,8206.8615,22975.5366,0.976929,3.282745,10.568747 +2025-10-30,Azure / Microsoft,commit,10797,10797000000,561.3396,1602.8023,4486.4112,0.166999,0.560981,1.805781 +2025-10-30,AWS / Anthropic,commit,8984,18866085000,4603.6769,13150.9206,36819.1591,1.123067,3.774314,12.152163 +2025-10-30,Google,commit,2107,2950010000,110.9593,316.9196,887.2253,0.026408,0.088737,0.285687 +2025-10-30,Other / Unknown,commit,12300,18450000000,3081.2416,8800.732,24638.1081,1.047622,3.520293,11.33353 +2025-10-31,Azure / Microsoft,commit,10932,10931500000,568.3323,1622.7687,4542.2992,0.169079,0.567969,1.828275 +2025-10-31,AWS / Anthropic,commit,8490,17829315000,4350.6856,12428.2227,34795.7929,1.06135,3.5669,11.484351 +2025-10-31,Google,commit,2058,2881690000,108.3895,309.58,866.6779,0.025797,0.086682,0.27907 +2025-10-31,Other / Unknown,commit,12094,18141000000,3029.637,8653.3376,24225.4699,1.030077,3.461335,11.143716 +2025-11-01,Azure / Microsoft,commit,9790,9790200000,508.9957,1453.344,4068.0618,0.151426,0.50867,1.637395 +2025-11-01,AWS / Anthropic,commit,7170,15056475000,3674.0609,10495.3681,29384.3025,0.896287,3.012171,9.698289 +2025-11-01,Google,commit,1473,2062270000,77.5685,221.5497,620.2346,0.018461,0.062034,0.199716 +2025-11-01,Other / Unknown,commit,10633,15949500000,2663.6457,7607.9824,21298.9434,0.90564,3.043193,9.797514 +2025-11-02,Azure / Microsoft,commit,11632,11632100000,604.7567,1726.7719,4833.4152,0.179915,0.60437,1.94545 +2025-11-02,AWS / Anthropic,commit,7902,16594410000,4049.3458,11567.4115,32385.7452,0.987838,3.319847,10.688915 +2025-11-02,Google,commit,2103,2943920000,110.7302,316.2654,885.3937,0.026354,0.088554,0.285097 +2025-11-02,Other / Unknown,commit,12155,18232500000,3044.918,8696.9835,24347.6589,1.035272,3.478793,11.199923 +2025-11-03,Azure / Microsoft,commit,11870,11869650000,617.107,1762.036,4932.1229,0.183589,0.616713,1.985179 +2025-11-03,AWS / Anthropic,commit,8852,18589935000,4536.2911,12958.4256,36280.2232,1.106628,3.719068,11.974288 +2025-11-03,Google,commit,2121,2969400000,111.6886,319.0027,893.0569,0.026582,0.089321,0.287564 +2025-11-03,Other / Unknown,commit,12946,19419000000,3243.0694,9262.9493,25932.1096,1.102644,3.70518,11.92877 +2025-11-04,Azure / Microsoft,commit,14024,14023800000,729.102,2081.8171,5827.2237,0.216908,0.728636,2.345458 +2025-11-04,AWS / Anthropic,commit,12444,26131665000,6376.614,18215.5149,50998.7065,1.555575,5.227853,16.832123 +2025-11-04,Google,commit,2536,3549770000,133.5182,381.3518,1067.6051,0.031777,0.106779,0.343769 +2025-11-04,Other / Unknown,commit,16599,24898500000,4158.1731,11876.6952,33249.4274,1.413779,4.750678,15.294737 +2025-11-05,Azure / Microsoft,commit,14258,14258200000,741.2885,2116.6135,5924.6225,0.220533,0.740815,2.384661 +2025-11-05,AWS / Anthropic,commit,26201,55022310000,13426.4706,38354.223,107381.8541,3.275388,11.007662,35.441381 +2025-11-05,Google,commit,2251,3150980000,118.5184,338.5098,947.6677,0.028207,0.094783,0.305149 +2025-11-05,Other / Unknown,commit,14840,22260000000,3717.5305,10618.1189,29725.9776,1.26396,4.247248,13.67395 +2025-11-06,Azure / Microsoft,commit,12960,12959500000,673.7687,1923.8229,5384.9816,0.200446,0.673338,2.167455 +2025-11-06,AWS / Anthropic,commit,28321,59474520000,14512.8929,41457.7106,116070.8125,3.54042,11.898363,38.309172 +2025-11-06,Google,commit,2043,2860620000,107.597,307.3164,860.341,0.025608,0.086049,0.27703 +2025-11-06,Other / Unknown,commit,14086,21129000000,3528.6479,10078.6269,28215.6416,1.19974,4.031451,12.979195 +2025-11-07,Azure / Microsoft,commit,12791,12790850000,665.0005,1898.787,5314.9035,0.197838,0.664575,2.139249 +2025-11-07,AWS / Anthropic,commit,27095,56899500000,13884.54,39662.7497,111045.3888,3.387134,11.383209,36.650531 +2025-11-07,Google,commit,2022,2831010000,106.4833,304.1354,851.4357,0.025343,0.085158,0.274162 +2025-11-07,Other / Unknown,commit,13351,20026500000,3344.5249,9552.7295,26743.3644,1.137138,3.821092,12.301948 +2025-11-08,Azure / Microsoft,commit,9956,9956250000,517.6287,1477.9939,4137.0595,0.153995,0.517298,1.665166 +2025-11-08,AWS / Anthropic,commit,26639,55942740000,13651.0727,38995.8241,109178.1705,3.330179,11.191802,36.034255 +2025-11-08,Google,commit,1736,2430890000,91.4335,261.1505,731.0983,0.021761,0.073122,0.235414 +2025-11-08,Other / Unknown,commit,10636,15954000000,2664.3972,7610.1289,21304.9527,0.905895,3.044052,9.800278 +2025-11-09,Azure / Microsoft,commit,11943,11942850000,620.9127,1772.9024,4962.5393,0.184722,0.620516,1.997422 +2025-11-09,AWS / Anthropic,commit,29328,61588485000,15028.7399,42931.2853,120196.4387,3.666261,12.321279,39.670835 +2025-11-09,Google,commit,2157,3020220000,113.6001,324.4623,908.3412,0.027037,0.090849,0.292486 +2025-11-09,Other / Unknown,commit,11500,17250000000,2880.8356,8228.3267,23035.6296,0.979484,3.291331,10.59639 +2025-11-10,Azure / Microsoft,commit,11927,11927200000,620.0991,1770.5792,4956.0363,0.184479,0.619703,1.994805 +2025-11-10,AWS / Anthropic,commit,27638,58040535000,14162.9738,40458.1273,113272.2392,3.455057,11.611483,37.385503 +2025-11-10,Google,commit,1966,2753030000,103.5502,295.7581,827.9829,0.024645,0.082812,0.266611 +2025-11-10,Other / Unknown,commit,12560,18840000000,3146.3735,8986.7637,25158.9137,1.069767,3.594705,11.5731 +2025-11-11,Azure / Microsoft,commit,11378,11378200000,591.5564,1689.0808,4727.9137,0.175988,0.591178,1.902985 +2025-11-11,AWS / Anthropic,commit,26754,56182980000,13709.6957,39163.2875,109647.0243,3.34448,11.239863,36.189 +2025-11-11,Google,commit,2211,3095400000,116.4278,332.5389,930.9519,0.02771,0.093111,0.299766 +2025-11-11,Other / Unknown,commit,11702,17553000000,2931.4381,8372.859,23440.2554,0.996689,3.349144,10.782517 +2025-11-12,Azure / Microsoft,commit,12647,12647450000,657.5451,1877.4995,5255.3174,0.19562,0.657125,2.115265 +2025-11-12,AWS / Anthropic,commit,28334,59502240000,14519.6571,41477.0332,116124.9111,3.54207,11.903909,38.327027 +2025-11-12,Google,commit,2169,3036810000,114.2241,326.2445,913.3307,0.027185,0.091348,0.294092 +2025-11-12,Other / Unknown,commit,13362,20043000000,3347.2805,9560.6001,26765.3984,1.138075,3.82424,12.312083 +2025-11-13,Azure / Microsoft,commit,11808,11808000000,613.9018,1752.8841,4906.5059,0.182636,0.613509,1.974869 +2025-11-13,AWS / Anthropic,commit,33890,71168475000,17366.4362,49609.1778,138892.8018,4.236542,14.237834,45.841569 +2025-11-13,Google,commit,1960,2744350000,103.2237,294.8256,825.3724,0.024567,0.082551,0.26577 +2025-11-13,Other / Unknown,commit,12291,18436500000,3078.987,8794.2924,24620.0802,1.046856,3.517717,11.325237 +2025-11-14,Azure / Microsoft,commit,11578,11578100000,601.9492,1718.7557,4810.9769,0.17908,0.601564,1.936418 +2025-11-14,AWS / Anthropic,commit,35018,73538430000,17944.7495,51261.1946,143518.0195,4.377622,14.711963,47.368122 +2025-11-14,Google,commit,1760,2463440000,92.6578,264.6474,740.8878,0.022053,0.074101,0.238566 +2025-11-14,Other / Unknown,commit,12426,18639000000,3112.8055,8890.8858,24890.4985,1.058354,3.556354,11.449629 +2025-11-15,Azure / Microsoft,commit,10573,10573300000,549.7094,1569.5943,4393.4586,0.163539,0.549358,1.768367 +2025-11-15,AWS / Anthropic,commit,33967,71330805000,17406.0478,49722.3326,139209.606,4.246205,14.270309,45.94613 +2025-11-15,Google,commit,1675,2344510000,88.1845,251.8707,705.1192,0.020988,0.070524,0.227048 +2025-11-15,Other / Unknown,commit,11454,17181000000,2869.3123,8195.4134,22943.487,0.975566,3.278165,10.554004 +2025-11-16,Azure / Microsoft,commit,11879,11878700000,617.5775,1763.3794,4935.8834,0.183729,0.617183,1.986693 +2025-11-16,AWS / Anthropic,commit,41000,86100315000,21010.0839,60017.667,168033.866,5.12541,17.22507,55.459577 +2025-11-16,Google,commit,1771,2479610000,93.266,266.3845,745.751,0.022197,0.074588,0.240132 +2025-11-16,Other / Unknown,commit,12244,18366000000,3067.2131,8760.6636,24525.9346,1.042852,3.504265,11.28193 +2025-11-17,Azure / Microsoft,commit,12914,12913500000,671.3771,1916.9943,5365.8675,0.199735,0.670948,2.159762 +2025-11-17,AWS / Anthropic,commit,46041,96686100000,23593.213,67396.6658,188693.1444,5.755564,19.342843,62.278172 +2025-11-17,Google,commit,1868,2614500000,98.3397,280.8758,786.3196,0.023405,0.078645,0.253195 +2025-11-17,Other / Unknown,commit,13574,20361000000,3400.3881,9712.2875,27190.0553,1.156132,3.884915,12.507425 +2025-11-18,Azure / Microsoft,commit,11745,11745350000,610.6446,1743.5838,4880.4733,0.181667,0.610254,1.964391 +2025-11-18,AWS / Anthropic,commit,50017,105036645000,25630.9018,73217.5531,204990.1156,6.252659,21.013438,67.656988 +2025-11-18,Google,commit,1927,2698080000,101.4834,289.8548,811.4565,0.024153,0.081159,0.261289 +2025-11-18,Other / Unknown,commit,11957,17935500000,2995.3175,8555.3132,23951.0454,1.018408,3.422125,11.017481 +2025-11-19,Azure / Microsoft,commit,12012,12011950000,624.5053,1783.1602,4991.252,0.18579,0.624106,2.008979 +2025-11-19,AWS / Anthropic,commit,38180,80178735000,19565.1078,55889.9305,156477.2767,4.772908,16.04041,51.645325 +2025-11-19,Google,commit,2056,2877980000,108.25,309.1814,865.5621,0.025763,0.086571,0.278711 +2025-11-19,Other / Unknown,commit,12363,18544500000,3097.0235,8845.8089,24764.3033,1.052988,3.538324,11.39158 +2025-11-20,Azure / Microsoft,commit,13074,13074000000,679.7216,1940.8203,5432.5591,0.202217,0.679287,2.186605 +2025-11-20,AWS / Anthropic,commit,30409,63859110000,15582.8147,44514.0625,124627.8034,3.801428,12.775536,41.133407 +2025-11-20,Google,commit,2656,3718260000,139.8556,399.4527,1118.2791,0.033286,0.111847,0.360086 +2025-11-20,Other / Unknown,commit,13147,19720500000,3293.4214,9406.7661,26334.7323,1.119763,3.762706,12.113977 +2025-11-21,Azure / Microsoft,commit,14075,14075400000,731.7847,2089.477,5848.6647,0.217706,0.731317,2.354088 +2025-11-21,AWS / Anthropic,commit,28560,59976420000,14635.3659,41807.5684,117050.3234,3.570298,11.998772,38.632459 +2025-11-21,Google,commit,2480,3472560000,130.614,373.0572,1044.384,0.031086,0.104456,0.336292 +2025-11-21,Other / Unknown,commit,14907,22360500000,3734.3145,10666.0579,29860.1852,1.269667,4.266423,13.735685 +2025-11-22,Azure / Microsoft,commit,12510,12510500000,650.425,1857.1694,5198.4114,0.193501,0.650009,2.092361 +2025-11-22,AWS / Anthropic,commit,28243,59309985000,14472.7433,41343.0187,115749.7051,3.530626,11.865446,38.20319 +2025-11-22,Google,commit,2166,3031910000,114.0398,325.7181,911.857,0.027141,0.091201,0.293618 +2025-11-22,Other / Unknown,commit,13327,19990500000,3338.5127,9535.5573,26695.29,1.135094,3.814223,12.279833 +2025-11-23,Azure / Microsoft,commit,12964,12964150000,674.0104,1924.5132,5386.9138,0.200518,0.67358,2.168233 +2025-11-23,AWS / Anthropic,commit,25719,54008955000,13179.1931,37647.8469,105404.1847,3.215064,10.804932,34.788651 +2025-11-23,Google,commit,2660,3724420000,140.0873,400.1145,1120.1317,0.033341,0.112032,0.360682 +2025-11-23,Other / Unknown,commit,13279,19918500000,3326.4884,9501.213,26599.1413,1.131006,3.800485,12.235605 +2025-11-24,Azure / Microsoft,commit,13685,13685300000,711.5033,2031.5671,5686.5688,0.211672,0.711048,2.288844 +2025-11-24,AWS / Anthropic,commit,21808,45797115000,11175.3508,31923.6463,89377.9109,2.726227,9.162086,29.499179 +2025-11-24,Google,commit,2789,3903970000,146.8407,419.4036,1174.132,0.034948,0.117433,0.37807 +2025-11-24,Other / Unknown,commit,14165,21247500000,3548.438,10135.1519,28373.8863,1.206469,4.054061,13.051988 +2025-11-25,Azure / Microsoft,commit,11672,11671750000,606.8181,1732.6579,4849.8907,0.180528,0.60643,1.952081 +2025-11-25,AWS / Anthropic,commit,17093,35895300000,8759.1232,25021.4202,70053.4723,2.136788,7.181148,23.121149 +2025-11-25,Google,commit,2444,3421950000,128.7104,367.6201,1029.1629,0.030633,0.102934,0.33139 +2025-11-25,Other / Unknown,commit,11926,17889000000,2987.5518,8533.1325,23888.9494,1.015768,3.413253,10.988917 +2025-11-26,Azure / Microsoft,commit,12542,12542350000,652.0809,1861.8975,5211.6458,0.193994,0.651664,2.097687 +2025-11-26,AWS / Anthropic,commit,16538,34729590000,8474.6682,24208.8425,67778.466,2.067395,6.947938,22.370283 +2025-11-26,Google,commit,2152,3012450000,113.3078,323.6275,906.0044,0.026967,0.090616,0.291733 +2025-11-26,Other / Unknown,commit,13002,19503000000,3257.0978,9303.0177,26044.2831,1.107413,3.721207,11.98037 +2025-11-27,Azure / Microsoft,commit,13149,13148950000,683.6183,1951.9466,5463.7026,0.203376,0.683181,2.19914 +2025-11-27,AWS / Anthropic,commit,14278,29983065000,7316.4275,20900.1978,58515.1207,1.784842,5.998357,19.312916 +2025-11-27,Google,commit,2030,2842560000,106.9177,305.3763,854.9094,0.025446,0.085505,0.275281 +2025-11-27,Other / Unknown,commit,14044,21066000000,3518.1265,10048.5756,28131.5114,1.196163,4.01943,12.940495 +2025-11-28,Azure / Microsoft,commit,11561,11561450000,601.0836,1716.284,4804.0585,0.178822,0.600699,1.933634 +2025-11-28,AWS / Anthropic,commit,13569,28494900000,6953.2874,19862.8474,55610.8094,1.696254,5.700637,18.354348 +2025-11-28,Google,commit,2306,3227770000,121.4067,346.7594,970.7626,0.028895,0.097093,0.312586 +2025-11-28,Other / Unknown,commit,12476,18714000000,3125.3309,8926.6612,24990.6534,1.062612,3.570664,11.495701 +2025-11-29,Azure / Microsoft,commit,11476,11476100000,596.6462,1703.6139,4768.5935,0.177502,0.596265,1.919359 +2025-11-29,AWS / Anthropic,commit,12292,25813095000,6298.877,17993.4503,50376.9835,1.536611,5.16412,16.626923 +2025-11-29,Google,commit,2123,2972130000,111.7913,319.296,893.878,0.026606,0.089403,0.287829 +2025-11-29,Other / Unknown,commit,12692,19038000000,3179.4405,9081.2106,25423.3226,1.08101,3.632484,11.694728 +2025-11-30,Azure / Microsoft,commit,11191,11190900000,581.8186,1661.2763,4650.0861,0.173091,0.581447,1.87166 +2025-11-30,AWS / Anthropic,commit,12354,25944135000,6330.8532,18084.7939,50632.7219,1.544412,5.190336,16.71133 +2025-11-30,Google,commit,2409,3372250000,126.8411,362.2809,1014.2154,0.030188,0.101439,0.326577 +2025-11-30,Other / Unknown,commit,11997,17995500000,3005.3378,8583.9335,24031.1694,1.021815,3.433573,11.054338 +2025-12-01,Azure / Microsoft,commit,13676,13675900000,711.0146,2030.1717,5682.6629,0.211527,0.71056,2.287272 +2025-12-01,AWS / Anthropic,commit,14045,29493660000,7197.0035,20559.0498,57559.9951,1.755709,5.900447,18.997676 +2025-12-01,Google,commit,2696,3773700000,141.9409,405.4086,1134.9528,0.033782,0.113514,0.365455 +2025-12-01,Other / Unknown,commit,14780,22170000000,3702.5,10575.1885,29605.7917,1.25885,4.230075,13.618664 +2025-12-02,Azure / Microsoft,commit,14348,14347750000,745.9443,2129.9071,5961.8326,0.221918,0.745467,2.399638 +2025-12-02,AWS / Anthropic,commit,14768,31012485000,7567.6252,21617.7722,60524.1427,1.846122,6.204301,19.975993 +2025-12-02,Google,commit,2514,3520160000,132.4044,378.1708,1058.6998,0.031512,0.105888,0.340901 +2025-12-02,Other / Unknown,commit,15590,23385000000,3905.4111,11154.7489,31228.3013,1.32784,4.4619,14.365019 +2025-12-03,Azure / Microsoft,commit,15433,15433300000,802.3824,2291.0557,6412.9046,0.238709,0.80187,2.581194 +2025-12-03,AWS / Anthropic,commit,15427,32395755000,7905.1689,22582.0038,63223.7403,1.928466,6.481035,20.866995 +2025-12-03,Google,commit,2575,3605210000,135.6034,387.3078,1084.2789,0.032274,0.108446,0.349138 +2025-12-03,Other / Unknown,commit,16285,24427500000,4079.5137,11652.0261,32620.4545,1.387035,4.66081,15.005409 +2025-12-04,Azure / Microsoft,commit,15217,15217350000,791.1551,2258.9982,6323.1722,0.235369,0.790649,2.545077 +2025-12-04,AWS / Anthropic,commit,16211,34042470000,8306.9981,23729.874,66437.4787,2.026492,6.810474,21.92769 +2025-12-04,Google,commit,2619,3666530000,137.9099,393.8954,1102.7211,0.032823,0.110291,0.355076 +2025-12-04,Other / Unknown,commit,16850,25275000000,4221.0504,12056.2873,33752.205,1.435157,4.822515,15.526014 +2025-12-05,Azure / Microsoft,commit,14020,14019750000,728.8914,2081.2158,5825.5408,0.216845,0.728426,2.34478 +2025-12-05,AWS / Anthropic,commit,13453,28251510000,6893.8957,19693.1883,55135.8081,1.681766,5.651945,18.197573 +2025-12-05,Google,commit,2571,3599610000,135.3928,386.7062,1082.5947,0.032223,0.108278,0.348595 +2025-12-05,Other / Unknown,commit,14376,21564000000,3601.295,10286.1238,28796.54,1.22444,4.11445,13.246408 +2025-12-06,Azure / Microsoft,commit,13904,13903850000,722.8658,2064.0106,5777.3816,0.215053,0.722404,2.325396 +2025-12-06,AWS / Anthropic,commit,12168,25552800000,6235.3601,17812.0073,49868.9903,1.521116,5.112046,16.45926 +2025-12-06,Google,commit,2045,2863210000,107.6944,307.5947,861.1199,0.025631,0.086127,0.277281 +2025-12-06,Other / Unknown,commit,14589,21883500000,3654.6531,10438.5268,29223.2,1.242582,4.175411,13.442672 +2025-12-07,Azure / Microsoft,commit,14750,14750250000,766.8704,2189.6577,6129.081,0.228144,0.76638,2.466955 +2025-12-07,AWS / Anthropic,commit,12530,26313630000,6421.0169,18342.3566,51353.8304,1.566407,5.264256,16.949332 +2025-12-07,Google,commit,2009,2813230000,105.8145,302.2253,846.0883,0.025184,0.084623,0.27244 +2025-12-07,Other / Unknown,commit,15157,22735500000,3796.9413,10844.9345,30360.9598,1.29096,4.337974,13.966041 +2025-12-08,Azure / Microsoft,commit,15931,15931100000,828.2632,2364.9536,6619.7524,0.246408,0.827734,2.66445 +2025-12-08,AWS / Anthropic,commit,13997,29392860000,7172.4064,20488.7855,57363.2733,1.749709,5.880281,18.932748 +2025-12-08,Google,commit,2408,3371620000,126.8174,362.2132,1014.0259,0.030183,0.10142,0.326516 +2025-12-08,Other / Unknown,commit,16376,24564000000,4102.3099,11717.1372,32802.7365,1.394785,4.686855,15.089259 +2025-12-09,Azure / Microsoft,commit,16026,16026450000,833.2204,2379.1082,6659.3726,0.247883,0.832688,2.680397 +2025-12-09,AWS / Anthropic,commit,15708,32986800000,8049.3949,22994.0016,64377.2271,1.96365,6.599278,21.247704 +2025-12-09,Google,commit,3266,4571770000,171.9588,491.1453,1374.975,0.040926,0.137521,0.442742 +2025-12-09,Other / Unknown,commit,16340,24510000000,4093.2916,11691.3789,32730.625,1.391719,4.676552,15.056087 +2025-12-10,Azure / Microsoft,commit,15229,15229450000,791.7841,2260.7944,6328.2,0.235556,0.791278,2.547101 +2025-12-10,AWS / Anthropic,commit,14918,31328115000,7644.6448,21837.7874,61140.128,1.864911,6.267445,20.179299 +2025-12-10,Google,commit,2643,3700760000,139.1974,397.5727,1113.0159,0.033129,0.11132,0.358391 +2025-12-10,Other / Unknown,commit,15882,23823000000,3978.5592,11363.6769,31813.206,1.35271,4.545471,14.634075 +2025-12-11,Azure / Microsoft,commit,14761,14761100000,767.4345,2191.2684,6133.5894,0.228312,0.766944,2.46877 +2025-12-11,AWS / Anthropic,commit,16339,34312110000,8372.7953,23917.8311,66963.7096,2.042543,6.864418,22.101372 +2025-12-11,Google,commit,3592,5028520000,189.1386,540.214,1512.3441,0.045015,0.15126,0.486975 +2025-12-11,Other / Unknown,commit,14678,22017000000,3676.9483,10502.2069,29401.4757,1.250162,4.200883,13.524679 +2025-12-12,Azure / Microsoft,commit,13193,13193000000,685.9084,1958.4858,5482.0064,0.204058,0.68547,2.206508 +2025-12-12,AWS / Anthropic,commit,12533,26319300000,6422.4004,18346.309,51364.896,1.566745,5.265391,16.952984 +2025-12-12,Google,commit,2889,4044600000,152.1303,434.5114,1216.4269,0.036207,0.121663,0.391689 +2025-12-12,Other / Unknown,commit,14242,21363000000,3567.727,10190.2459,28528.1249,1.213027,4.076098,13.122937 +2025-12-13,Azure / Microsoft,commit,13388,13388300000,696.0621,1987.4778,5563.1583,0.207078,0.695617,2.239171 +2025-12-13,AWS / Anthropic,commit,12006,25212600000,6152.345,17574.8652,49205.054,1.500865,5.043986,16.240128 +2025-12-13,Google,commit,2829,3960180000,148.955,425.4422,1191.0373,0.035451,0.119124,0.383514 +2025-12-13,Other / Unknown,commit,14184,21276000000,3553.1976,10148.7466,28411.9452,1.208087,4.059499,13.069495 +2025-12-14,Azure / Microsoft,commit,13144,13144450000,683.3843,1951.2786,5461.8328,0.203307,0.682947,2.198388 +2025-12-14,AWS / Anthropic,commit,12092,25392360000,6196.2098,17700.1699,49555.8746,1.511565,5.079949,16.355916 +2025-12-14,Google,commit,3227,4517730000,169.9262,485.3398,1358.7223,0.040442,0.135895,0.437509 +2025-12-14,Other / Unknown,commit,13576,20364000000,3400.8891,9713.7185,27194.0615,1.156302,3.885487,12.509268 +2025-12-15,Azure / Microsoft,commit,13412,13411850000,697.2865,1990.9738,5572.9438,0.207443,0.696841,2.24311 +2025-12-15,AWS / Anthropic,commit,12549,26351955000,6430.3689,18369.0717,51428.6257,1.568688,5.271924,16.974018 +2025-12-15,Google,commit,3313,4637640000,174.4364,498.2217,1394.7857,0.041516,0.139502,0.449121 +2025-12-15,Other / Unknown,commit,14345,21517500000,3593.5293,10263.9431,28734.444,1.2218,4.105577,13.217844 +2025-12-16,Azure / Microsoft,commit,14713,14712750000,764.9207,2184.0909,6113.4988,0.227564,0.764432,2.460683 +2025-12-16,AWS / Anthropic,commit,15370,32276265000,7876.0111,22498.7112,62990.5429,1.921353,6.45713,20.790029 +2025-12-16,Google,commit,3622,5070240000,190.7079,544.696,1524.8916,0.045388,0.152515,0.491015 +2025-12-16,Other / Unknown,commit,14822,22233000000,3713.0213,10605.2398,29689.9218,1.262427,4.242096,13.657364 +2025-12-17,Azure / Microsoft,commit,15049,15049100000,782.4077,2234.0217,6253.2603,0.232766,0.781908,2.516937 +2025-12-17,AWS / Anthropic,commit,14767,31010280000,7567.0871,21616.2352,60519.8394,1.845991,6.20386,19.974573 +2025-12-17,Google,commit,3644,5101740000,191.8927,548.08,1534.3653,0.04567,0.153462,0.494066 +2025-12-17,Other / Unknown,commit,15771,23656500000,3950.7529,11284.2556,31590.8621,1.343256,4.513702,14.531797 +2025-12-18,Azure / Microsoft,commit,13237,13237200000,688.2064,1965.0472,5500.3726,0.204741,0.687767,2.2139 +2025-12-18,AWS / Anthropic,commit,14881,31249260000,7625.4027,21782.8202,60986.2341,1.860217,6.251669,20.128507 +2025-12-18,Google,commit,3559,4982880000,187.422,535.3109,1498.6177,0.044606,0.149887,0.482555 +2025-12-18,Other / Unknown,commit,14012,21018000000,3510.1103,10025.6794,28067.4123,1.193438,4.010272,12.91101 +2025-12-19,Azure / Microsoft,commit,12941,12940850000,672.7991,1921.0544,5377.2321,0.200158,0.672369,2.164336 +2025-12-19,AWS / Anthropic,commit,14892,31272465000,7631.0651,21798.9956,61031.5211,1.861598,6.256312,20.143454 +2025-12-19,Google,commit,3290,4605300000,173.22,494.7474,1385.0593,0.041226,0.138529,0.445989 +2025-12-19,Other / Unknown,commit,13097,19645500000,3280.896,9370.9908,26234.5774,1.115505,3.748396,12.067906 +2025-12-20,Azure / Microsoft,commit,11023,11023100000,573.0946,1636.3666,4580.3612,0.170496,0.572728,1.843595 +2025-12-20,AWS / Anthropic,commit,13028,27359745000,6676.2884,19071.5686,53395.4344,1.628681,5.47354,17.623163 +2025-12-20,Google,commit,3157,4420430000,166.2664,474.8869,1329.459,0.039571,0.132968,0.428086 +2025-12-20,Other / Unknown,commit,11638,17457000000,2915.4056,8327.0666,23312.0571,0.991238,3.330827,10.723546 +2025-12-21,Azure / Microsoft,commit,11789,11788550000,612.8906,1749.9968,4898.4239,0.182335,0.612499,1.971616 +2025-12-21,AWS / Anthropic,commit,13006,27311760000,6664.5792,19038.1199,53301.7866,1.625824,5.46394,17.592255 +2025-12-21,Google,commit,3045,4262790000,160.3371,457.9516,1282.0483,0.03816,0.128226,0.41282 +2025-12-21,Other / Unknown,commit,12538,18807000000,3140.8623,8971.0226,25114.8455,1.067893,3.588409,11.552829 +2025-12-22,Azure / Microsoft,commit,12839,12838950000,667.5013,1905.9274,5334.8902,0.198582,0.667075,2.147293 +2025-12-22,AWS / Anthropic,commit,13688,28743960000,7014.0627,20036.4589,56096.8763,1.711081,5.750464,18.514774 +2025-12-22,Google,commit,3216,4503030000,169.3733,483.7606,1354.3013,0.040311,0.135453,0.436085 +2025-12-22,Other / Unknown,commit,12966,19449000000,3248.0795,9277.2594,25972.1715,1.104347,3.710904,11.947199 +2025-12-23,Azure / Microsoft,commit,10884,10883500000,565.8368,1615.6431,4522.3541,0.168336,0.565475,1.820248 +2025-12-23,AWS / Anthropic,commit,13634,28630455000,6986.3654,19957.3383,55875.3593,1.704324,5.727756,18.441662 +2025-12-23,Google,commit,3200,4479930000,168.5044,481.2789,1347.3539,0.040104,0.134758,0.433848 +2025-12-23,Other / Unknown,commit,11957,17935500000,2995.3175,8555.3132,23951.0454,1.018408,3.422125,11.017481 +2025-12-24,Azure / Microsoft,commit,10324,10324350000,536.7664,1532.6379,4290.0139,0.159688,0.536423,1.726731 +2025-12-24,AWS / Anthropic,commit,14017,29435280000,7182.7577,20518.3551,57446.0604,1.752234,5.888768,18.960072 +2025-12-24,Google,commit,3337,4671590000,175.7134,501.869,1404.9962,0.04182,0.140523,0.452409 +2025-12-24,Other / Unknown,commit,10631,15946500000,2663.1446,7606.5514,21294.9372,0.905469,3.042621,9.795671 +2025-12-25,Azure / Microsoft,commit,8667,8667050000,450.6028,1286.6137,3601.3662,0.134054,0.450315,1.44955 +2025-12-25,AWS / Anthropic,commit,13624,28610505000,6981.4972,19943.4318,55836.4248,1.703136,5.723765,18.428812 +2025-12-25,Google,commit,2953,4134060000,155.4952,444.1221,1243.3323,0.037008,0.124354,0.400353 +2025-12-25,Other / Unknown,commit,9297,13945500000,2328.9677,6652.0655,18622.8042,0.791849,2.660826,8.56649 +2025-12-26,Azure / Microsoft,commit,11008,11008200000,572.32,1634.1547,4574.1699,0.170265,0.571954,1.841103 +2025-12-26,AWS / Anthropic,commit,16901,35492730000,8660.8886,24740.8021,69267.8144,2.112824,7.10061,22.861842 +2025-12-26,Google,commit,3280,4592700000,172.7461,493.3938,1381.2698,0.041114,0.13815,0.444769 +2025-12-26,Other / Unknown,commit,11031,16546500000,2763.3476,7892.754,22096.1765,0.939538,3.157102,10.164241 +2025-12-27,Azure / Microsoft,commit,11450,11449550000,595.2659,1699.6726,4757.5613,0.177092,0.594885,1.914918 +2025-12-27,AWS / Anthropic,commit,20316,42662655000,10410.4841,29738.7184,83260.6809,2.539638,8.535012,27.480188 +2025-12-27,Google,commit,3109,4352460000,163.7099,467.5848,1309.0168,0.038963,0.130924,0.421503 +2025-12-27,Other / Unknown,commit,12241,18361500000,3066.4616,8758.5171,24519.9253,1.042597,3.503407,11.279166 +2025-12-28,Azure / Microsoft,commit,11576,11576200000,601.8505,1718.4736,4810.1874,0.179051,0.601466,1.9361 +2025-12-28,AWS / Anthropic,commit,15972,33541200000,8184.6788,23380.4554,65459.1973,1.996652,6.710191,21.604808 +2025-12-28,Google,commit,3272,4580520000,172.2879,492.0853,1377.6066,0.041005,0.137784,0.443589 +2025-12-28,Other / Unknown,commit,12176,18264000000,3050.1786,8712.0092,24389.724,1.037061,3.484804,11.219273 +2025-12-29,Azure / Microsoft,commit,12743,12742800000,662.5024,1891.6541,5294.9376,0.197094,0.662079,2.131212 +2025-12-29,AWS / Anthropic,commit,19019,39939375000,9745.9529,27840.4105,77945.9121,2.377525,7.990198,25.726048 +2025-12-29,Google,commit,3440,4816630000,181.1688,517.4506,1448.6175,0.043118,0.144886,0.466455 +2025-12-29,Other / Unknown,commit,13100,19650000000,3281.6475,9373.1373,26240.5867,1.11576,3.749255,12.07067 +2025-12-30,Azure / Microsoft,commit,13365,13365050000,694.8534,1984.0264,5553.4973,0.206719,0.694409,2.235283 +2025-12-30,AWS / Anthropic,commit,18784,39446085000,9625.581,27496.5544,76983.2045,2.34816,7.891511,25.408307 +2025-12-30,Google,commit,3469,4856740000,182.6775,521.7597,1460.6807,0.043477,0.146093,0.470339 +2025-12-30,Other / Unknown,commit,13841,20761500000,3467.2735,9903.3278,27724.8825,1.178873,3.961331,12.753446 +2025-12-31,Azure / Microsoft,commit,11080,11080250000,576.0659,1644.8504,4604.1084,0.17138,0.575698,1.853154 +2025-12-31,AWS / Anthropic,commit,16643,34950510000,8528.5768,24362.8385,68209.6147,2.080546,6.992135,22.512583 +2025-12-31,Google,commit,3294,4611110000,173.4385,495.3716,1386.8067,0.041278,0.138704,0.446552 +2025-12-31,Other / Unknown,commit,11247,16870500000,2817.4572,8047.3035,22528.8457,0.957935,3.218921,10.363269 +2026-01-01,Azure / Microsoft,commit,12629,12628550000,656.5625,1874.6938,5247.464,0.195327,0.656143,2.112104 +2026-01-01,AWS / Anthropic,commit,14637,30737700000,7500.5725,21426.2287,59987.8707,1.829765,6.149328,19.798997 +2026-01-01,Google,commit,3627,5078430000,191.0159,545.5758,1527.3547,0.045462,0.152761,0.491808 +2026-01-01,Other / Unknown,commit,12761,19141500000,3196.7255,9130.5806,25561.5364,1.086887,3.652232,11.758307 +2026-01-02,Azure / Microsoft,commit,14468,14468350000,752.2143,2147.81,6011.9448,0.223784,0.751734,2.419808 +2026-01-02,AWS / Anthropic,commit,15234,31991190000,7806.4475,22299.9949,62434.1889,1.904383,6.400099,20.606404 +2026-01-02,Google,commit,3438,4812850000,181.0266,517.0445,1447.4807,0.043084,0.144772,0.466089 +2026-01-02,Other / Unknown,commit,15180,22770000000,3802.703,10861.3912,30407.031,1.292919,4.344556,13.987234 +2026-01-03,Azure / Microsoft,commit,14255,14254950000,741.1196,2116.131,5923.272,0.220483,0.740646,2.384117 +2026-01-03,AWS / Anthropic,commit,17522,36796725000,8979.0877,25649.7736,71812.6984,2.190448,7.361485,23.701781 +2026-01-03,Google,commit,3179,4450320000,167.3907,478.0979,1338.4486,0.039839,0.133867,0.43098 +2026-01-03,Other / Unknown,commit,14967,22450500000,3749.3449,10708.9883,29980.3711,1.274777,4.283595,13.790971 +2026-01-04,Azure / Microsoft,commit,15405,15404900000,800.9058,2286.8398,6401.1037,0.238269,0.800394,2.576444 +2026-01-04,AWS / Anthropic,commit,16460,34566735000,8434.9285,24095.3217,67460.6372,2.057701,6.915357,22.265383 +2026-01-04,Google,commit,3252,4552450000,171.2321,489.0698,1369.1645,0.040753,0.13694,0.440871 +2026-01-04,Other / Unknown,commit,15660,23490000000,3922.9466,11204.8344,31368.5182,1.333802,4.481934,14.429518 +2026-01-05,Azure / Microsoft,commit,15817,15817250000,822.3441,2348.0527,6572.445,0.244647,0.821818,2.645409 +2026-01-05,AWS / Anthropic,commit,15701,32973150000,8046.064,22984.4866,64350.5877,1.962837,6.596548,21.238911 +2026-01-05,Google,commit,3339,4674950000,175.8398,502.2299,1406.0068,0.04185,0.140624,0.452734 +2026-01-05,Other / Unknown,commit,16631,24946500000,4166.1893,11899.5914,33313.5265,1.416504,4.759837,15.324222 +2026-01-06,Azure / Microsoft,commit,15477,15476850000,804.6466,2297.5207,6431.0006,0.239382,0.804132,2.588478 +2026-01-06,AWS / Anthropic,commit,15848,33281850000,8121.3926,23199.6711,64953.0483,1.981214,6.658306,21.437754 +2026-01-06,Google,commit,3189,4464110000,167.9094,479.5794,1342.5959,0.039962,0.134282,0.432316 +2026-01-06,Other / Unknown,commit,16558,24837000000,4147.9023,11847.3594,33167.3004,1.410287,4.738944,15.256958 +2026-01-07,Azure / Microsoft,commit,15805,15805300000,821.7228,2346.2787,6567.4794,0.244463,0.821198,2.64341 +2026-01-07,AWS / Anthropic,commit,16477,34602330000,8443.6144,24120.1338,67530.1046,2.05982,6.922478,22.288311 +2026-01-07,Google,commit,3525,4935560000,185.6421,530.2273,1484.3861,0.044183,0.148464,0.477972 +2026-01-07,Other / Unknown,commit,16609,24913500000,4160.6781,11883.8502,33269.4584,1.414631,4.75354,15.303951 +2026-01-08,Azure / Microsoft,commit,15728,15728350000,817.7221,2334.8556,6535.5049,0.243272,0.817199,2.630541 +2026-01-08,AWS / Anthropic,commit,16554,34762770000,8482.7647,24231.9712,67843.2203,2.06937,6.954576,22.391655 +2026-01-08,Google,commit,3453,4834130000,181.827,519.3307,1453.8807,0.043275,0.145413,0.46815 +2026-01-08,Other / Unknown,commit,16689,25033500000,4180.7187,11941.0908,33429.7062,1.421444,4.776436,15.377665 +2026-01-09,Azure / Microsoft,commit,15625,15624800000,812.3385,2319.4837,6492.4774,0.241671,0.811819,2.613222 +2026-01-09,AWS / Anthropic,commit,17460,36666000000,8947.1884,25558.6496,71557.5748,2.182667,7.335332,23.617578 +2026-01-09,Google,commit,3237,4532080000,170.466,486.8814,1363.0381,0.040571,0.136327,0.438898 +2026-01-09,Other / Unknown,commit,16531,24796500000,4141.1386,11828.0407,33113.2167,1.407987,4.731216,15.23208 +2026-01-10,Azure / Microsoft,commit,12049,12049200000,626.4419,1788.69,5006.7302,0.186366,0.626041,2.015209 +2026-01-10,AWS / Anthropic,commit,18884,39655455000,9676.6712,27642.4993,77391.8122,2.360624,7.933397,25.543168 +2026-01-10,Google,commit,3215,4501350000,169.3101,483.5801,1353.796,0.040296,0.135402,0.435922 +2026-01-10,Other / Unknown,commit,12892,19338000000,3229.542,9224.3119,25823.9423,1.098044,3.689725,11.879013 +2026-01-11,Azure / Microsoft,commit,13539,13539150000,703.9049,2009.8713,5625.84,0.209412,0.703455,2.264401 +2026-01-11,AWS / Anthropic,commit,17346,36425760000,8888.5653,25391.1863,71088.721,2.168366,7.28727,23.462832 +2026-01-11,Google,commit,3033,4246550000,159.7263,456.2069,1277.164,0.038015,0.127738,0.411247 +2026-01-11,Other / Unknown,commit,14519,21778500000,3637.1176,10388.4413,29082.9831,1.23662,4.155377,13.378172 +2026-01-12,Azure / Microsoft,commit,15655,15655200000,813.919,2323.9965,6505.1093,0.242141,0.813399,2.618306 +2026-01-12,AWS / Anthropic,commit,16158,33932430000,8280.1463,23653.1688,66222.724,2.019942,6.788459,21.85681 +2026-01-12,Google,commit,3438,4813900000,181.0661,517.1573,1447.7964,0.043094,0.144804,0.46619 +2026-01-12,Other / Unknown,commit,16378,24567000000,4102.8109,11718.5682,32806.7427,1.394956,4.687427,15.091102 +2026-01-13,Azure / Microsoft,commit,13987,13986950000,727.1862,2076.3467,5811.9116,0.216338,0.726721,2.339294 +2026-01-13,AWS / Anthropic,commit,17154,36023820000,8790.4844,25111.0072,70304.2926,2.144439,7.206859,23.203932 +2026-01-13,Google,commit,3615,5060790000,190.3524,543.6807,1522.0494,0.045304,0.152231,0.4901 +2026-01-13,Other / Unknown,commit,14979,22468500000,3752.351,10717.5744,30004.4083,1.275799,4.28703,13.802028 +2026-01-14,Azure / Microsoft,commit,15244,15244450000,792.564,2263.0212,6334.4329,0.235788,0.792057,2.549609 +2026-01-14,AWS / Anthropic,commit,16453,34550460000,8430.9571,24083.977,67428.8749,2.056732,6.912101,22.2549 +2026-01-14,Google,commit,4187,5861730000,220.4783,629.7257,1762.9348,0.052474,0.176323,0.567665 +2026-01-14,Other / Unknown,commit,15543,23314500000,3893.6372,11121.1201,31134.1557,1.323837,4.448448,14.321712 +2026-01-15,Azure / Microsoft,commit,14492,14492250000,753.4569,2151.3579,6021.8758,0.224153,0.752975,2.423805 +2026-01-15,AWS / Anthropic,commit,16831,35344785000,8624.7872,24637.6745,68979.0841,2.104017,7.071013,22.766547 +2026-01-15,Google,commit,3721,5209260000,195.9369,559.6309,1566.7023,0.046633,0.156697,0.504478 +2026-01-15,Other / Unknown,commit,15620,23430000000,3912.9263,11176.2141,31288.3942,1.330395,4.470486,14.392661 +2026-01-16,Azure / Microsoft,commit,15869,15868750000,825.0216,2355.6978,6593.8444,0.245444,0.824494,2.654022 +2026-01-16,AWS / Anthropic,commit,18074,37955190000,9261.7748,26457.3011,74073.5653,2.25941,7.593245,24.44798 +2026-01-16,Google,commit,4732,6625290000,249.1982,711.755,1992.578,0.059309,0.199291,0.64161 +2026-01-16,Other / Unknown,commit,16014,24021000000,4011.6262,11458.1238,32077.6149,1.363953,4.58325,14.755703 +2026-01-17,Azure / Microsoft,commit,14203,14203200000,738.4291,2108.4488,5901.7687,0.219683,0.737957,2.375462 +2026-01-17,AWS / Anthropic,commit,15769,33115320000,8080.7562,23083.5886,64628.0474,1.9713,6.62499,21.330487 +2026-01-17,Google,commit,3850,5389440000,202.714,578.9876,1620.892,0.048246,0.162117,0.521927 +2026-01-17,Other / Unknown,commit,14834,22251000000,3716.0274,10613.8259,29713.959,1.263449,4.24553,13.668421 +2026-01-18,Azure / Microsoft,commit,14793,14793300000,769.1086,2196.0485,6146.9693,0.22881,0.768617,2.474155 +2026-01-18,AWS / Anthropic,commit,17381,36499680000,8906.6032,25442.7134,71232.9837,2.172766,7.302059,23.510446 +2026-01-18,Google,commit,3932,5504660000,207.0478,591.3657,1655.5448,0.049277,0.165582,0.533085 +2026-01-18,Other / Unknown,commit,15358,23037000000,3847.2933,10988.7514,30763.5825,1.30808,4.395501,14.151248 +2026-01-19,Azure / Microsoft,commit,14942,14942450000,776.8629,2218.1896,6208.9447,0.231117,0.776366,2.4991 +2026-01-19,AWS / Anthropic,commit,19005,39909870000,9738.7532,27819.8435,77888.33,2.375769,7.984295,25.707043 +2026-01-19,Google,commit,4090,5725790000,215.3652,615.1217,1722.0504,0.051257,0.172234,0.5545 +2026-01-19,Other / Unknown,commit,15920,23880000000,3988.0785,11390.8661,31889.3237,1.355947,4.556346,14.669089 +2026-01-20,Azure / Microsoft,commit,13517,13516650000,702.7351,2006.5312,5616.4907,0.209064,0.702286,2.260638 +2026-01-20,AWS / Anthropic,commit,19107,40125330000,9791.3294,27970.0335,78308.8229,2.388595,8.0274,25.845827 +2026-01-20,Google,commit,4390,6146070000,231.1733,660.2724,1848.451,0.055019,0.184876,0.595201 +2026-01-20,Other / Unknown,commit,14255,21382500000,3570.9836,10199.5475,28554.1652,1.214134,4.079819,13.134916 +2026-01-21,Azure / Microsoft,commit,14719,14718900000,765.2405,2185.0039,6116.0543,0.227659,0.764751,2.461712 +2026-01-21,AWS / Anthropic,commit,18654,39173925000,9559.1689,27306.8407,76452.0555,2.331959,7.837063,25.233001 +2026-01-21,Google,commit,4386,6140190000,230.9521,659.6407,1846.6826,0.054967,0.184699,0.594632 +2026-01-21,Other / Unknown,commit,15866,23799000000,3974.5511,11352.2288,31781.1564,1.351347,4.540892,14.619332 +2026-01-22,Azure / Microsoft,commit,13115,13114500000,681.8272,1946.8325,5449.3878,0.202844,0.681391,2.193379 +2026-01-22,AWS / Anthropic,commit,17119,35950110000,8772.4978,25059.6265,70160.4398,2.140051,7.192113,23.156453 +2026-01-22,Google,commit,4173,5842760000,219.7648,627.6878,1757.2295,0.052304,0.175753,0.565828 +2026-01-22,Other / Unknown,commit,14298,21447000000,3581.7554,10230.3143,28640.2984,1.217797,4.092126,13.174537 +2026-01-23,Azure / Microsoft,commit,13729,13729250000,713.7883,2038.0915,5704.8311,0.212352,0.713332,2.296195 +2026-01-23,AWS / Anthropic,commit,19466,40879335000,9975.3207,28495.6253,79780.3434,2.433479,8.178244,26.331502 +2026-01-23,Google,commit,4293,6010760000,226.0838,645.736,1807.7561,0.053808,0.180806,0.582097 +2026-01-23,Other / Unknown,commit,15189,22783500000,3804.9576,10867.8308,30425.0589,1.293686,4.347132,13.995527 +2026-01-24,Azure / Microsoft,commit,12236,12236250000,636.1667,1816.4573,5084.454,0.18926,0.63576,2.046493 +2026-01-24,AWS / Anthropic,commit,17844,37473450000,9144.2212,26121.4961,73133.3988,2.230733,7.496869,24.137678 +2026-01-24,Google,commit,12951,18131750000,681.9928,1947.8942,5453.1842,0.162314,0.54541,1.755925 +2026-01-24,Other / Unknown,commit,13060,19590000000,3271.6272,9344.5171,26160.4628,1.112353,3.737807,12.033813 +2026-01-25,Azure / Microsoft,commit,13367,13367450000,694.9781,1984.3827,5554.4946,0.206756,0.694534,2.235684 +2026-01-25,AWS / Anthropic,commit,20485,43018185000,10497.2401,29986.5465,83954.5353,2.560802,8.606139,27.709194 +2026-01-25,Google,commit,4983,6975780000,262.3813,749.4081,2097.9891,0.062447,0.209834,0.675552 +2026-01-25,Other / Unknown,commit,13858,20787000000,3471.5322,9915.4914,27758.9352,1.180321,3.966197,12.76911 +2026-01-26,Azure / Microsoft,commit,15428,15428400000,802.1276,2290.3283,6410.8685,0.238633,0.801615,2.580375 +2026-01-26,AWS / Anthropic,commit,20584,43225455000,10547.8178,30131.0276,84359.0446,2.57314,8.647605,27.842703 +2026-01-26,Google,commit,5294,7411670000,278.7765,796.2358,2229.0844,0.066349,0.222946,0.717765 +2026-01-26,Other / Unknown,commit,16108,24162000000,4035.1739,11525.3814,32265.9062,1.371959,4.610153,14.842317 +2026-01-27,Azure / Microsoft,commit,16145,16144700000,839.3683,2396.6622,6708.5082,0.249712,0.838832,2.700175 +2026-01-27,AWS / Anthropic,commit,16610,34881735000,8511.7944,24314.8978,68075.393,2.076452,6.978376,22.468283 +2026-01-27,Google,commit,4729,6620530000,249.0192,711.2436,1991.1464,0.059267,0.199148,0.641149 +2026-01-27,Other / Unknown,commit,17110,25665000000,4286.1824,12242.3191,34273.0106,1.457302,4.896928,15.765585 +2026-01-28,Azure / Microsoft,commit,16492,16492150000,857.4323,2448.2408,6852.882,0.255086,0.856884,2.758285 +2026-01-28,AWS / Anthropic,commit,16117,33846120000,8259.085,23593.005,66054.2809,2.014804,6.771192,21.801215 +2026-01-28,Google,commit,4299,6018110000,226.3603,646.5256,1809.9666,0.053874,0.181027,0.582809 +2026-01-28,Other / Unknown,commit,17714,26571000000,4437.4889,12674.4851,35482.8819,1.508746,5.069794,16.322126 +2026-01-29,Azure / Microsoft,commit,17092,17092400000,888.6395,2537.3472,7102.3002,0.26437,0.888072,2.858676 +2026-01-29,AWS / Anthropic,commit,17214,36148455000,8820.8977,25197.8862,70547.531,2.151858,7.231793,23.284213 +2026-01-29,Google,commit,4737,6631870000,249.4457,712.4619,1994.557,0.059368,0.199489,0.642247 +2026-01-29,Other / Unknown,commit,17882,26823000000,4479.5741,12794.6902,35819.4024,1.523055,5.117876,16.476925 +2026-01-30,Azure / Microsoft,commit,16154,16153650000,839.8336,2397.9909,6712.2272,0.24985,0.839297,2.701671 +2026-01-30,AWS / Anthropic,commit,16627,34916385000,8520.2496,24339.0511,68143.0162,2.078515,6.985308,22.490602 +2026-01-30,Google,commit,4385,6138300000,230.881,659.4377,1846.1142,0.05495,0.184643,0.594449 +2026-01-30,Other / Unknown,commit,17499,26248500000,4383.6298,12520.6512,35052.2158,1.490434,5.00826,16.124019 +2026-01-31,Azure / Microsoft,commit,17001,17000650000,883.8694,2523.727,7064.1759,0.262951,0.883304,2.843331 +2026-01-31,AWS / Anthropic,commit,16768,35213010000,8592.6317,24545.8185,68721.9112,2.096172,7.04465,22.681667 +2026-01-31,Google,commit,4291,6007750000,225.9706,645.4127,1806.8508,0.053781,0.180716,0.581806 +2026-01-31,Other / Unknown,commit,18220,27330000000,4564.2456,13036.5315,36496.4496,1.551844,5.214613,16.788367 +2026-02-01,Azure / Microsoft,commit,18445,18444950000,958.9591,2738.1317,7664.317,0.28529,0.958346,3.084888 +2026-02-01,AWS / Anthropic,commit,19923,41839140000,10209.5311,29164.6735,81653.5043,2.490615,8.370261,26.949739 +2026-02-01,Google,commit,4001,5600910000,210.6681,601.7058,1684.4923,0.050139,0.168478,0.542407 +2026-02-01,Other / Unknown,commit,19583,29374500000,4905.6873,14011.7671,39226.6725,1.667934,5.604707,18.044269 +2026-02-02,Azure / Microsoft,commit,16634,16634450000,864.8306,2469.3651,6912.0111,0.257287,0.864278,2.782084 +2026-02-02,AWS / Anthropic,commit,19413,40768035000,9948.1615,28418.0418,79563.1297,2.426854,8.155978,26.259811 +2026-02-02,Google,commit,4836,6770680000,254.6668,727.3743,2036.3045,0.060611,0.203665,0.65569 +2026-02-02,Other / Unknown,commit,17310,25965000000,4336.2839,12385.4204,34673.6302,1.474337,4.954168,15.94987 +2026-02-03,Azure / Microsoft,commit,20085,20084700000,1044.2102,2981.5507,8345.6723,0.310653,1.043543,3.359133 +2026-02-03,AWS / Anthropic,commit,18757,39390645000,9612.0526,27457.909,76875.0075,2.34486,7.88042,25.372596 +2026-02-03,Google,commit,4895,6852790000,257.7552,736.1953,2060.9994,0.061346,0.206135,0.663642 +2026-02-03,Other / Unknown,commit,21245,31867500000,5322.0307,15200.9391,42555.8217,1.80949,6.080376,19.575678 +2026-02-04,Azure / Microsoft,commit,20381,20381150000,1059.6227,3025.5584,8468.8544,0.315238,1.058945,3.408714 +2026-02-04,AWS / Anthropic,commit,18877,39642435000,9673.494,27633.4235,77366.4023,2.359849,7.930793,25.534781 +2026-02-04,Google,commit,4966,6953100000,261.5282,746.9716,2091.168,0.062244,0.209152,0.673356 +2026-02-04,Other / Unknown,commit,24929,37393500000,6244.9001,17836.8657,49935.2356,2.123266,7.134746,22.970208 +2026-02-05,Azure / Microsoft,commit,19007,19007450000,988.2036,2821.6342,7898.0492,0.293991,0.987572,3.178965 +2026-02-05,AWS / Anthropic,commit,20225,42472290000,10364.0315,29606.0213,82889.1635,2.528305,8.496928,27.357568 +2026-02-05,Google,commit,4861,6804910000,255.9543,731.0516,2046.5993,0.060917,0.204694,0.659005 +2026-02-05,Other / Unknown,commit,21449,32173500000,5373.1342,15346.9025,42964.4538,1.826866,6.138761,19.763649 +2026-02-06,Azure / Microsoft,commit,19736,19736200000,1026.0916,2929.8163,8200.8622,0.305262,1.025436,3.300847 +2026-02-06,AWS / Anthropic,commit,20822,43726830000,10670.1627,30480.5194,85337.5309,2.602986,8.747909,28.165652 +2026-02-06,Google,commit,4951,6930700000,260.6857,744.5652,2084.4311,0.062043,0.208478,0.671187 +2026-02-06,Other / Unknown,commit,21193,31789500000,5309.0043,15163.7328,42451.6606,1.805061,6.065493,19.527764 +2026-02-07,Azure / Microsoft,commit,20244,20244150000,1052.5001,3005.2209,8411.9276,0.313119,1.051827,3.385801 +2026-02-07,AWS / Anthropic,commit,18512,38874360000,9486.0694,27098.0239,75867.4228,2.314127,7.777133,25.040043 +2026-02-07,Google,commit,4121,5769750000,217.0187,619.8443,1735.2715,0.05165,0.173556,0.558757 +2026-02-07,Other / Unknown,commit,22853,34279500000,5724.8466,16351.4739,45776.8037,1.946448,6.54059,21.05733 +2026-02-08,Azure / Microsoft,commit,20624,20623900000,1072.2434,3061.5944,8569.7228,0.318992,1.071558,3.449313 +2026-02-08,AWS / Anthropic,commit,18710,39290160000,9587.5324,27387.8643,76678.9004,2.338879,7.860317,25.307871 +2026-02-08,Google,commit,4191,5868100000,220.7179,630.4101,1764.8506,0.052531,0.176515,0.568282 +2026-02-08,Other / Unknown,commit,23262,34893000000,5827.3042,16644.1161,46596.0708,1.981283,6.657646,21.434193 +2026-02-09,Azure / Microsoft,commit,19150,19150350000,995.633,2842.8475,7957.4276,0.296201,0.994997,3.202865 +2026-02-09,AWS / Anthropic,commit,18644,39152820000,9554.0188,27292.1291,76410.8669,2.330703,7.832841,25.219407 +2026-02-09,Google,commit,3932,5505430000,207.0767,591.4484,1655.7764,0.049284,0.165606,0.53316 +2026-02-09,Other / Unknown,commit,21364,32046000000,5351.841,15286.0844,42794.1904,1.819626,6.114434,19.685328 +2026-02-10,Azure / Microsoft,commit,20797,20797450000,1081.2663,3087.3577,8641.8369,0.321677,1.080575,3.478339 +2026-02-10,AWS / Anthropic,commit,21610,45380055000,11073.5804,31632.9276,88563.9742,2.7014,9.07865,29.23054 +2026-02-10,Google,commit,4387,6141800000,231.0127,659.8137,1847.1668,0.054981,0.184748,0.594788 +2026-02-10,Other / Unknown,commit,23843,35764500000,5972.849,17059.8255,47759.8709,2.030769,6.82393,21.969541 +2026-02-11,Azure / Microsoft,commit,22257,22256650000,1157.1306,3303.9742,9248.1694,0.344246,1.156391,3.722388 +2026-02-11,AWS / Anthropic,commit,21907,46005015000,11226.0823,32068.5664,89783.6497,2.738603,9.203679,29.633094 +2026-02-11,Google,commit,4893,6850480000,257.6684,735.9472,2060.3047,0.061325,0.206065,0.663418 +2026-02-11,Other / Unknown,commit,25098,37647000000,6287.2358,17957.7863,50273.7592,2.13766,7.183115,23.125929 +2026-02-12,Azure / Microsoft,commit,22021,22020850000,1144.8713,3268.97,9150.1888,0.340599,1.144139,3.682951 +2026-02-12,AWS / Anthropic,commit,21596,45350760000,11066.4319,31612.507,88506.8019,2.699656,9.07279,29.21167 +2026-02-12,Google,commit,5042,7058170000,265.4802,758.2593,2122.7681,0.063184,0.212313,0.683531 +2026-02-12,Other / Unknown,commit,24629,36943500000,6169.7478,17622.2137,49334.3061,2.097714,7.048885,22.693781 +2026-02-13,Azure / Microsoft,commit,21959,21958900000,1141.6505,3259.7736,9124.4471,0.339641,1.140921,3.67259 +2026-02-13,AWS / Anthropic,commit,21641,45445155000,11089.466,31678.3066,88691.0238,2.705275,9.091674,29.272472 +2026-02-13,Google,commit,4639,6493970000,244.2589,697.6473,1953.0831,0.058134,0.195341,0.628893 +2026-02-13,Other / Unknown,commit,23743,35614500000,5947.7983,16988.2748,47559.5611,2.022251,6.79531,21.877398 +2026-02-14,Azure / Microsoft,commit,19624,19623650000,1020.2401,2913.1084,8154.095,0.303521,1.019588,3.282023 +2026-02-14,AWS / Anthropic,commit,20265,42556290000,10384.5291,29664.5749,83053.0984,2.533306,8.513733,27.411675 +2026-02-14,Google,commit,4957,6940430000,261.0517,745.6105,2087.3574,0.06213,0.208771,0.672129 +2026-02-14,Other / Unknown,commit,21197,31795500000,5310.0063,15166.5948,42459.673,1.805402,6.066638,19.53145 +2026-02-15,Azure / Microsoft,commit,20720,20719600000,1077.2189,3075.8009,8609.4884,0.320473,1.07653,3.465319 +2026-02-15,AWS / Anthropic,commit,22484,47215665000,11521.5035,32912.4703,92146.3612,2.810671,9.445879,30.412907 +2026-02-15,Google,commit,4957,6939450000,261.0148,745.5052,2087.0627,0.062122,0.208741,0.672034 +2026-02-15,Other / Unknown,commit,22419,33628500000,5616.1264,16040.944,44907.459,1.909483,6.416378,20.657431 +2026-02-16,Azure / Microsoft,commit,22885,22885200000,1189.8091,3397.2818,9509.3469,0.353968,1.189049,3.827512 +2026-02-16,AWS / Anthropic,commit,21413,44967195000,10972.8349,31345.1366,87758.2343,2.676823,8.996054,28.964605 +2026-02-16,Google,commit,5572,7800590000,293.405,838.0175,2346.0534,0.06983,0.234645,0.755429 +2026-02-16,Other / Unknown,commit,24063,36094500000,6027.9606,17217.2369,48200.5525,2.049507,6.886895,22.172254 +2026-02-17,Azure / Microsoft,commit,20570,20569900000,1069.4359,3053.5781,8547.2845,0.318157,1.068752,3.440282 +2026-02-17,AWS / Anthropic,commit,23212,48744570000,11894.5849,33978.2191,95130.1809,2.901684,9.751749,31.397716 +2026-02-17,Google,commit,5587,7822360000,294.2239,840.3563,2352.6008,0.070025,0.2353,0.757537 +2026-02-17,Other / Unknown,commit,22736,34104000000,5695.5373,16267.7596,45542.4412,1.936483,6.507104,20.949523 +2026-02-18,Azure / Microsoft,commit,21849,21849250000,1135.9497,3243.4962,9078.885,0.337945,1.135224,3.654251 +2026-02-18,AWS / Anthropic,commit,20729,43530060000,10622.1471,30343.3576,84953.5134,2.591273,8.708544,28.038907 +2026-02-18,Google,commit,4715,6601210000,248.2925,709.1681,1985.3359,0.059094,0.198567,0.639278 +2026-02-18,Other / Unknown,commit,24585,36877500000,6158.7255,17590.7314,49246.1698,2.093967,7.036293,22.653238 +2026-02-19,Azure / Microsoft,commit,16901,16900800000,878.6782,2508.9044,7022.6858,0.261407,0.878117,2.826631 +2026-02-19,AWS / Anthropic,commit,25456,53458335000,13044.8315,37264.028,104329.5916,3.182287,10.694776,34.433982 +2026-02-19,Google,commit,4895,6852790000,257.7552,736.1953,2060.9994,0.061346,0.206135,0.663642 +2026-02-19,Other / Unknown,commit,19882,29823000000,4980.589,14225.7035,39825.5989,1.6934,5.690281,18.319775 +2026-02-20,Azure / Microsoft,commit,14654,14654000000,761.8663,2175.3695,6089.0868,0.226655,0.761379,2.450857 +2026-02-20,AWS / Anthropic,commit,23238,48799695000,11908.0364,34016.6449,95237.7632,2.904965,9.762777,31.433224 +2026-02-20,Google,commit,4797,6715870000,252.6053,721.486,2019.8203,0.06012,0.202016,0.650382 +2026-02-20,Other / Unknown,commit,17344,26016000000,4344.8011,12409.7476,34741.7356,1.477232,4.963899,15.981198 +2026-02-21,Azure / Microsoft,commit,15221,15221400000,791.3656,2259.5994,6324.8551,0.235431,0.79086,2.545754 +2026-02-21,AWS / Anthropic,commit,22960,48214950000,11765.3477,33609.0386,94096.5715,2.870157,9.645794,31.056573 +2026-02-21,Google,commit,4630,6482140000,243.8139,696.3764,1949.5252,0.058028,0.194985,0.627747 +2026-02-21,Other / Unknown,commit,18220,27330000000,4564.2456,13036.5315,36496.4496,1.551844,5.214613,16.788367 +2026-02-22,Azure / Microsoft,commit,15715,15714800000,817.0177,2332.8441,6529.8745,0.243063,0.816495,2.628275 +2026-02-22,AWS / Anthropic,commit,23520,49391895000,12052.5443,34429.4479,96393.5041,2.940218,9.881252,31.814676 +2026-02-22,Google,commit,5007,7010150000,263.6741,753.1005,2108.3259,0.062754,0.210868,0.678881 +2026-02-22,Other / Unknown,commit,18270,27405000000,4576.771,13072.3068,36596.6045,1.556102,5.228923,16.834438 +2026-02-23,Azure / Microsoft,commit,16138,16138050000,839.0226,2395.6751,6705.745,0.249609,0.838486,2.699062 +2026-02-23,AWS / Anthropic,commit,18706,39281970000,9585.5339,27382.1553,76662.9168,2.338391,7.858679,25.302596 +2026-02-23,Google,commit,4943,6920550000,260.3039,743.4748,2081.3784,0.061952,0.208173,0.670204 +2026-02-23,Other / Unknown,commit,19264,28896000000,4825.7754,13783.5204,38587.6842,1.640764,5.513408,17.750335 +2026-02-24,Azure / Microsoft,commit,17067,17067100000,887.3242,2533.5915,7091.7875,0.263979,0.886757,2.854444 +2026-02-24,AWS / Anthropic,commit,23970,50338050000,12283.4237,35088.9811,98240.0256,2.996541,10.070538,32.42412 +2026-02-24,Google,commit,5231,7323960000,275.4775,786.8131,2202.7053,0.065564,0.220308,0.709271 +2026-02-24,Other / Unknown,commit,19806,29709000000,4961.5504,14171.325,39673.3634,1.686927,5.66853,18.249747 +2026-02-25,Azure / Microsoft,commit,16952,16952250000,881.3531,2516.5421,7044.0646,0.262203,0.88079,2.835236 +2026-02-25,AWS / Anthropic,commit,24418,51278220000,12512.8428,35744.3423,100074.8667,3.052508,10.258626,33.02971 +2026-02-25,Google,commit,5665,7930370000,298.2865,851.9598,2385.0852,0.070992,0.238549,0.767997 +2026-02-25,Other / Unknown,commit,18900,28350000000,4734.5907,13523.076,37858.5564,1.609761,5.40923,17.414936 +2026-02-26,Azure / Microsoft,commit,16270,16270100000,845.8879,2415.2777,6760.6149,0.251652,0.845347,2.721148 +2026-02-26,AWS / Anthropic,commit,25578,53713590000,13107.1185,37441.9578,104827.7487,3.197482,10.745842,34.598398 +2026-02-26,Google,commit,5568,7795200000,293.2023,837.4385,2344.4323,0.069782,0.234483,0.754907 +2026-02-26,Other / Unknown,commit,18489,27733500000,4631.6321,13229.0028,37035.283,1.574755,5.291601,17.03623 +2026-02-27,Azure / Microsoft,commit,16594,16593950000,862.725,2463.3529,6895.1823,0.256661,0.862174,2.775311 +2026-02-27,AWS / Anthropic,commit,25256,53038020000,12942.2668,36971.0404,103509.3024,3.157266,10.610689,34.163245 +2026-02-27,Google,commit,5128,7178990000,270.0247,771.239,2159.1051,0.064266,0.215947,0.695232 +2026-02-27,Other / Unknown,commit,18823,28234500000,4715.3016,13467.982,37704.3178,1.603203,5.387193,17.343986 +2026-02-28,Azure / Microsoft,commit,17952,17952500000,933.3564,2665.0281,7459.6923,0.277674,0.93276,3.002526 +2026-02-28,AWS / Anthropic,commit,25402,53344620000,13017.0829,37184.7611,104107.6647,3.175517,10.672026,34.360735 +2026-02-28,Google,commit,4075,5705420000,214.599,612.9334,1715.9241,0.051075,0.171621,0.552528 +2026-02-28,Other / Unknown,commit,19194,28791000000,4808.2399,13733.435,38447.4673,1.634802,5.493374,17.685835 +2026-03-01,Azure / Microsoft,commit,18219,18219100000,947.217,2704.6046,7570.471,0.281797,0.946612,3.047115 +2026-03-01,AWS / Anthropic,commit,25398,53335380000,13014.8282,37178.3202,104089.6319,3.174967,10.670178,34.354783 +2026-03-01,Google,commit,3731,5223540000,196.474,561.165,1570.997,0.046761,0.157126,0.505861 +2026-03-01,Other / Unknown,commit,20224,30336000000,5066.2626,14470.4068,40510.6584,1.722529,5.788163,18.634903 +2026-03-02,Azure / Microsoft,commit,18606,18606050000,967.3347,2762.0468,7731.2579,0.287782,0.966716,3.111831 +2026-03-02,AWS / Anthropic,commit,19435,40814445000,9959.4864,28450.3927,79653.7037,2.429617,8.165263,26.289705 +2026-03-02,Google,commit,3702,5182100000,194.9153,556.7131,1558.5338,0.04639,0.15588,0.501848 +2026-03-02,Other / Unknown,commit,20099,30148500000,5034.9491,14380.9685,40260.2712,1.711883,5.752387,18.519725 +2026-03-03,Azure / Microsoft,commit,18668,18667800000,970.5451,2771.2136,7756.9165,0.288737,0.969925,3.122159 +2026-03-03,AWS / Anthropic,commit,21987,46173225000,11267.1287,32185.82,90111.9293,2.748616,9.23733,29.741442 +2026-03-03,Google,commit,3963,5548130000,208.6828,596.0357,1668.6186,0.049667,0.16689,0.537295 +2026-03-03,Other / Unknown,commit,20234,30351000000,5068.7676,14477.5619,40530.6894,1.723381,5.791025,18.644117 +2026-03-04,Azure / Microsoft,commit,17780,17780000000,924.3881,2639.4207,7388.0144,0.275005,0.923797,2.973676 +2026-03-04,AWS / Anthropic,commit,27909,58608900000,14301.6655,40854.3156,114381.4636,3.488891,11.725189,37.751602 +2026-03-04,Google,commit,4127,5777800000,217.3215,620.7091,1737.6926,0.051723,0.173799,0.559537 +2026-03-04,Other / Unknown,commit,20664,30996000000,5176.4858,14785.2298,41392.0217,1.760005,5.914092,19.04033 +2026-03-05,Azure / Microsoft,commit,17116,17115800000,889.8561,2540.8209,7112.0235,0.264732,0.889287,2.862589 +2026-03-05,AWS / Anthropic,commit,28175,59167290000,14437.9231,41243.5507,115471.2207,3.522131,11.836899,38.111276 +2026-03-05,Google,commit,4246,5944820000,223.6036,638.6521,1787.9244,0.053218,0.178823,0.575712 +2026-03-05,Other / Unknown,commit,18406,27609000000,4610.84,13169.6157,36869.0259,1.567686,5.267846,16.959752 +2026-03-06,Azure / Microsoft,commit,18233,18233400000,947.9605,2706.7274,7576.413,0.282018,0.947355,3.049506 +2026-03-06,AWS / Anthropic,commit,29727,62426070000,15233.1262,43515.1379,121831.0744,3.716121,12.488845,40.210346 +2026-03-06,Google,commit,3835,5368860000,201.9399,576.7767,1614.7025,0.048062,0.161497,0.519934 +2026-03-06,Other / Unknown,commit,19662,29493000000,4925.4774,14068.2921,39384.9172,1.674662,5.627317,18.117062 +2026-03-07,Azure / Microsoft,commit,18895,18894600000,982.3365,2804.8818,7851.1573,0.292245,0.981709,3.160091 +2026-03-07,AWS / Anthropic,commit,31068,65242905000,15920.4865,45478.66,127328.4256,3.883803,13.052375,42.024747 +2026-03-07,Google,commit,4005,5607490000,210.9156,602.4127,1686.4713,0.050198,0.168676,0.543044 +2026-03-07,Other / Unknown,commit,20030,30045000000,5017.6641,14331.5985,40122.0574,1.706006,5.732639,18.456146 +2026-03-08,Azure / Microsoft,commit,17773,17773000000,924.0242,2638.3815,7385.1058,0.274897,0.923434,2.972505 +2026-03-08,AWS / Anthropic,commit,31382,65901780000,16081.2643,45937.9398,128614.2898,3.923024,13.184189,42.449146 +2026-03-08,Google,commit,4190,5866280000,220.6495,630.2145,1764.3032,0.052515,0.17646,0.568106 +2026-03-08,Other / Unknown,commit,18853,28279500000,4722.8169,13489.4472,37764.4108,1.605758,5.395779,17.371629 +2026-03-09,Azure / Microsoft,commit,18903,18903250000,982.7862,2806.1658,7854.7516,0.292379,0.982158,3.161538 +2026-03-09,AWS / Anthropic,commit,33852,71088885000,17347.0148,49553.6983,138737.4735,4.231804,14.221911,45.790303 +2026-03-09,Google,commit,4075,5704860000,214.5779,612.8732,1715.7556,0.05107,0.171604,0.552473 +2026-03-09,Other / Unknown,commit,20134,30201000000,5043.7169,14406.0112,40330.3796,1.714864,5.762404,18.551975 +2026-03-10,Azure / Microsoft,commit,20104,20104100000,1045.2188,2984.4306,8353.7335,0.310953,1.044551,3.362378 +2026-03-10,AWS / Anthropic,commit,32821,68923785000,16818.69,48044.479,134512.052,4.102919,13.788765,44.395703 +2026-03-10,Google,commit,4586,6420470000,241.4943,689.7512,1930.9777,0.057476,0.19313,0.621775 +2026-03-10,Other / Unknown,commit,21433,32149500000,5369.1261,15335.4544,42932.4042,1.825503,6.134182,19.748906 +2026-03-11,Azure / Microsoft,commit,19897,19897300000,1034.4672,2953.7314,8267.8031,0.307754,1.033806,3.327791 +2026-03-11,AWS / Anthropic,commit,33565,70487445000,17200.2522,49134.4544,137563.6998,4.196002,14.101588,45.402899 +2026-03-11,Google,commit,4220,5908350000,222.2319,634.7341,1776.9559,0.052891,0.177726,0.57218 +2026-03-11,Other / Unknown,commit,21713,32569500000,5439.2681,15535.7963,43493.2717,1.849351,6.214319,20.006905 +2026-03-12,Azure / Microsoft,commit,19523,19523000000,1015.0072,2898.167,8112.2725,0.301965,1.014358,3.26519 +2026-03-12,AWS / Anthropic,commit,32006,67212705000,16401.1545,46851.742,131172.6985,4.001062,13.44645,43.293549 +2026-03-12,Google,commit,4279,5990530000,225.3229,643.5627,1801.6718,0.053627,0.180198,0.580138 +2026-03-12,Other / Unknown,commit,21516,32274000000,5389.9182,15394.8414,43098.6613,1.832572,6.157937,19.825384 +2026-03-13,Azure / Microsoft,commit,18332,18332450000,953.1101,2721.4312,7617.5706,0.28355,0.952501,3.066072 +2026-03-13,AWS / Anthropic,commit,33187,69693120000,17006.4221,48580.7569,136013.4906,4.148717,13.942677,44.891253 +2026-03-13,Google,commit,4545,6363490000,239.3511,683.6298,1913.8408,0.056966,0.191416,0.616257 +2026-03-13,Other / Unknown,commit,20699,31048500000,5185.2536,14810.2725,41462.1301,1.762986,5.924109,19.07258 +2026-03-14,Azure / Microsoft,commit,18944,18944050000,984.9074,2812.2225,7871.705,0.29301,0.984278,3.168361 +2026-03-14,AWS / Anthropic,commit,34167,71750490000,17508.4587,50014.8811,140028.6656,4.271189,14.354271,46.216461 +2026-03-14,Google,commit,4290,6006070000,225.9074,645.2322,1806.3455,0.053766,0.180665,0.581643 +2026-03-14,Other / Unknown,commit,20356,30534000000,5099.3295,14564.8537,40775.0674,1.733772,5.825941,18.756531 +2026-03-15,Azure / Microsoft,commit,18044,18043650000,938.0953,2678.5592,7497.5673,0.279083,0.937496,3.017771 +2026-03-15,AWS / Anthropic,commit,41315,86762130000,21171.5791,60478.9963,169325.4679,5.164807,17.357472,55.885871 +2026-03-15,Google,commit,4666,6532470000,245.707,701.7833,1964.6621,0.058478,0.196499,0.632621 +2026-03-15,Other / Unknown,commit,19521,29281500000,4890.1558,13967.4056,39102.4804,1.662653,5.586962,17.987141 +2026-03-16,Azure / Microsoft,commit,18256,18255800000,949.1251,2710.0526,7585.7207,0.282365,0.948518,3.053253 +2026-03-16,AWS / Anthropic,commit,43325,90983340000,22201.6331,63421.4614,177563.6054,5.416088,18.201959,58.604868 +2026-03-16,Google,commit,4645,6502720000,244.588,698.5873,1955.7147,0.058212,0.195604,0.62974 +2026-03-16,Other / Unknown,commit,19610,29415000000,4912.451,14031.0857,39280.7561,1.670233,5.612434,18.069148 +2026-03-17,Azure / Microsoft,commit,18370,18369650000,955.0442,2726.9535,7633.0281,0.284126,0.954434,3.072294 +2026-03-17,AWS / Anthropic,commit,39601,83162415000,20293.1814,57969.7546,162300.2436,4.950522,16.63732,53.567195 +2026-03-17,Google,commit,4379,6130880000,230.6019,658.6405,1843.8826,0.054883,0.184419,0.59373 +2026-03-17,Other / Unknown,commit,19956,29934000000,4999.1266,14278.651,39973.8281,1.699703,5.71146,18.387961 +2026-03-18,Azure / Microsoft,commit,17246,17246300000,896.6408,2560.1935,7166.2493,0.266751,0.896068,2.884415 +2026-03-18,AWS / Anthropic,commit,39558,83072115000,20271.1466,57906.8095,162124.0136,4.945146,16.619254,53.509031 +2026-03-18,Google,commit,4118,5764570000,216.8238,619.2878,1733.7136,0.051604,0.173401,0.558256 +2026-03-18,Other / Unknown,commit,19399,29098500000,4859.5939,13880.1138,38858.1024,1.652262,5.552046,17.874727 +2026-03-19,Azure / Microsoft,commit,16179,16179150000,841.1594,2401.7763,6722.823,0.250245,0.840622,2.705936 +2026-03-19,AWS / Anthropic,commit,36850,77385315000,18883.4612,53942.7303,151025.6222,4.60662,15.481564,49.846007 +2026-03-19,Google,commit,3844,5381180000,202.4033,578.1002,1618.4078,0.048172,0.161868,0.521127 +2026-03-19,Other / Unknown,commit,17724,26586000000,4439.9939,12681.6402,35502.9129,1.509598,5.072656,16.33134 +2026-03-20,Azure / Microsoft,commit,16269,16268950000,845.8281,2415.107,6760.1371,0.251634,0.845287,2.720955 +2026-03-20,AWS / Anthropic,commit,37857,79499280000,19399.3081,55416.305,155151.2484,4.732461,15.90448,51.20767 +2026-03-20,Google,commit,3801,5321750000,200.168,571.7157,1600.534,0.04764,0.16008,0.515372 +2026-03-20,Other / Unknown,commit,19302,28953000000,4835.2947,13810.7097,38663.8019,1.644,5.524284,17.785349 +2026-03-21,Azure / Microsoft,commit,14592,14591650000,758.6247,2166.1137,6063.1789,0.225691,0.75814,2.44043 +2026-03-21,AWS / Anthropic,commit,39186,82291230000,20080.596,57362.4805,160600.034,4.898661,16.463032,53.006041 +2026-03-21,Google,commit,3516,4922470000,185.1498,528.821,1480.4492,0.044066,0.14807,0.476705 +2026-03-21,Other / Unknown,commit,16159,24238500000,4047.9498,11561.8722,32368.0642,1.376303,4.624749,14.88931 +2026-03-22,Azure / Microsoft,commit,15073,15072900000,783.6451,2237.5548,6263.1498,0.233134,0.783144,2.520918 +2026-03-22,AWS / Anthropic,commit,42761,89797890000,21912.3612,62595.1236,175250.0744,5.345521,17.9648,57.841287 +2026-03-22,Google,commit,3910,5474280000,205.9051,588.102,1646.4079,0.049005,0.164669,0.530143 +2026-03-22,Other / Unknown,commit,16873,25309500000,4226.8121,12072.744,33798.2763,1.437116,4.829098,15.547207 +2026-03-23,Azure / Microsoft,commit,16869,16869200000,877.0353,2504.2134,7009.5553,0.260918,0.876475,2.821346 +2026-03-23,AWS / Anthropic,commit,43201,90722100000,22137.8857,63239.3597,177053.7679,5.400537,18.149696,58.436596 +2026-03-23,Google,commit,3947,5525520000,207.8324,593.6067,1661.8185,0.049464,0.16621,0.535106 +2026-03-23,Other / Unknown,commit,18437,27655500000,4618.6058,13191.7964,36931.1219,1.570326,5.276719,16.988316 +2026-03-24,Azure / Microsoft,commit,16385,16385450000,851.885,2432.4013,6808.5456,0.253436,0.85134,2.74044 +2026-03-24,AWS / Anthropic,commit,42643,89550825000,21852.0727,62422.9028,174767.901,5.330813,17.915373,57.682146 +2026-03-24,Google,commit,4211,5895820000,221.7606,633.388,1773.1875,0.052779,0.177349,0.570966 +2026-03-24,Other / Unknown,commit,18079,27118500000,4528.9241,12935.645,36214.0128,1.539834,5.174258,16.658446 +2026-03-25,Azure / Microsoft,commit,16743,16742600000,870.4533,2485.4198,6956.95,0.25896,0.869897,2.800172 +2026-03-25,AWS / Anthropic,commit,40777,85632015000,20895.8099,59691.2307,167119.929,5.097533,17.131383,55.157933 +2026-03-25,Google,commit,3881,5433750000,204.3806,583.7478,1634.2184,0.048643,0.163449,0.526218 +2026-03-25,Other / Unknown,commit,19372,29058000000,4852.8302,13860.7951,38804.0188,1.649962,5.544318,17.849849 +2026-03-26,Azure / Microsoft,commit,12041,12041400000,626.0364,1787.5321,5003.4891,0.186246,0.625636,2.013904 +2026-03-26,AWS / Anthropic,commit,40687,85442700000,20849.6135,59559.2655,166750.4608,5.086263,17.093509,55.03599 +2026-03-26,Google,commit,3951,5530840000,208.0325,594.1782,1663.4185,0.049512,0.16637,0.535621 +2026-03-26,Other / Unknown,commit,18111,27166500000,4536.9403,12958.5412,36278.1119,1.54256,5.183416,16.687931 +2026-03-27,Azure / Microsoft,commit,8260,8259500000,429.4141,1226.1133,3432.0194,0.127751,0.42914,1.381388 +2026-03-27,AWS / Anthropic,commit,38822,81526305000,19893.9401,56829.2767,159107.202,4.853127,16.310002,52.513332 +2026-03-27,Google,commit,3572,5001430000,188.1197,537.3037,1504.1967,0.044772,0.150445,0.484351 +2026-03-27,Other / Unknown,commit,16068,24102000000,4025.1536,11496.7611,32185.7822,1.368552,4.598704,14.80546 +2026-03-28,Azure / Microsoft,commit,8467,8467350000,440.2203,1256.9684,3518.3861,0.130966,0.439939,1.41615 +2026-03-28,AWS / Anthropic,commit,43153,90620670000,22113.1349,63168.6562,176855.8166,5.394499,18.129404,58.371262 +2026-03-28,Google,commit,3485,4878930000,183.5121,524.1435,1467.3544,0.043676,0.14676,0.472488 +2026-03-28,Other / Unknown,commit,17007,25510500000,4260.3801,12168.6219,34066.6915,1.448529,4.867449,15.670678 +2026-03-29,Azure / Microsoft,commit,8516,8516500000,442.7757,1264.2647,3538.8091,0.131726,0.442493,1.424371 +2026-03-29,AWS / Anthropic,commit,37077,77862120000,18999.8105,54275.0952,151956.1576,4.635004,15.576952,50.15313 +2026-03-29,Google,commit,3449,4829020000,181.6348,518.7817,1452.3438,0.043229,0.145259,0.467655 +2026-03-29,Other / Unknown,commit,16517,24775500000,4137.6315,11818.0236,33085.1733,1.406795,4.727209,15.21918 +2026-03-30,Azure / Microsoft,commit,9059,9058900000,470.9752,1344.7833,3764.1892,0.140115,0.470674,1.515086 +2026-03-30,AWS / Anthropic,commit,38532,80916255000,19745.0765,56404.0312,157916.6249,4.816811,16.187957,52.120382 +2026-03-30,Google,commit,3307,4629170000,174.1178,497.3118,1392.2383,0.04144,0.139247,0.448301 +2026-03-30,Other / Unknown,commit,17881,26821500000,4479.3236,12793.9747,35817.3993,1.52297,5.11759,16.476004 +2026-03-31,Azure / Microsoft,commit,8848,8847900000,460.0052,1313.4606,3676.5137,0.136852,0.459711,1.479797 +2026-03-31,AWS / Anthropic,commit,24381,51199890000,12493.7288,35689.7411,99921.9974,3.047845,10.242956,32.979255 +2026-03-31,Google,commit,2032,2845080000,107.0125,305.647,855.6673,0.025469,0.085581,0.275525 +2026-03-31,Other / Unknown,commit,18136,27204000000,4543.203,12976.4289,36328.1894,1.544689,5.190572,16.710967 +2026-04-01,Azure / Microsoft,commit,7029,7028800000,365.4296,1043.4173,2920.6342,0.108715,0.365196,1.175555 +2026-04-01,AWS / Anthropic,commit,38601,81061680000,19780.5629,56505.4021,158200.4372,4.825468,16.21705,52.214054 +2026-04-01,Google,commit,3405,4767560000,179.3231,512.179,1433.8595,0.042679,0.14341,0.461703 +2026-04-01,Other / Unknown,commit,16849,25273500000,4220.7999,12055.5718,33750.2019,1.435072,4.822229,15.525093 +2026-04-02,Azure / Microsoft,commit,1524,1523700000,79.2177,226.1915,633.1337,0.023567,0.079167,0.254836 +2026-04-02,AWS / Anthropic,commit,37261,78248835000,19094.1762,54544.6614,152710.8728,4.658024,15.654318,50.402224 +2026-04-02,Google,commit,3555,4976930000,187.1982,534.6717,1496.8283,0.044553,0.149708,0.481979 +2026-04-02,Other / Unknown,commit,18236,27354000000,4568.2538,13047.9796,36528.4992,1.553206,5.219192,16.80311 +2026-04-03,Azure / Microsoft,commit,1745,1744550000,90.6997,258.9765,724.9022,0.026983,0.090642,0.291773 +2026-04-03,AWS / Anthropic,commit,37199,78117165000,19062.0463,54452.8786,152453.9049,4.650186,15.627976,50.317411 +2026-04-03,Google,commit,3401,4761120000,179.0809,511.4872,1431.9227,0.042621,0.143216,0.461079 +2026-04-03,Other / Unknown,commit,19768,29652000000,4952.0312,14144.1358,39597.2457,1.683691,5.657654,18.214733 +2026-04-04,Azure / Microsoft,commit,1707,1706800000,88.7371,253.3725,709.2161,0.026399,0.08868,0.285459 +2026-04-04,AWS / Anthropic,commit,40039,84081165000,20517.3736,58610.1847,164093.2813,5.005213,16.821123,54.158987 +2026-04-04,Google,commit,3386,4739770000,178.2778,509.1936,1425.5016,0.04243,0.142574,0.459012 +2026-04-04,Other / Unknown,commit,19885,29827500000,4981.3405,14227.8501,39831.6081,1.693656,5.69114,18.32254 +2026-04-05,Azure / Microsoft,commit,1557,1557250000,80.9619,231.172,647.0745,0.024086,0.08091,0.260448 +2026-04-05,AWS / Anthropic,commit,40753,85580460000,20883.2296,59655.2934,167019.314,5.094464,17.121069,55.124725 +2026-04-05,Google,commit,3262,4567010000,171.7798,490.634,1373.5435,0.040884,0.137378,0.442281 +2026-04-05,Other / Unknown,commit,18793,28189500000,4707.7864,13446.5168,37644.2249,1.600647,5.378607,17.316343 +2026-04-06,Azure / Microsoft,commit,1789,1788850000,93.0029,265.5527,743.3099,0.027668,0.092943,0.299182 +2026-04-06,AWS / Anthropic,commit,43874,92135820000,22482.8598,64224.8169,179812.792,5.484694,18.432522,59.347212 +2026-04-06,Google,commit,3506,4908330000,184.6179,527.302,1476.1966,0.043939,0.147645,0.475335 +2026-04-06,Other / Unknown,commit,19808,29712000000,4962.0515,14172.7561,39677.3696,1.687097,5.669102,18.25159 +2026-04-07,Azure / Microsoft,commit,2442,2442300000,126.976,362.5566,1014.834,0.037775,0.126895,0.408471 +2026-04-07,AWS / Anthropic,commit,44721,93913155000,22916.5627,65463.738,183281.4491,5.590495,18.788093,60.492042 +2026-04-07,Google,commit,3682,5155010000,193.8963,553.8028,1550.3864,0.046147,0.155065,0.499224 +2026-04-07,Other / Unknown,commit,20669,31003500000,5177.7384,14788.8073,41402.0372,1.760431,5.915523,19.044937 +2026-04-08,Azure / Microsoft,commit,1733,1732800000,90.0888,257.2322,720.0198,0.026801,0.090031,0.289808 +2026-04-08,AWS / Anthropic,commit,39460,82866525000,20220.9788,57763.4995,161722.783,4.932908,16.578124,53.376605 +2026-04-08,Google,commit,3546,4964330000,186.7243,533.318,1493.0388,0.04444,0.149329,0.480758 +2026-04-08,Other / Unknown,commit,20581,30871500000,5155.6937,14725.8427,41225.7645,1.752936,5.890337,18.963852 +2026-04-09,AWS / Anthropic,commit,40322,84676725000,20662.7014,59025.3298,165255.5796,5.040666,16.94027,54.542604 +2026-04-09,Azure / Microsoft,commit,1639,1638850000,85.2044,243.2854,680.9813,0.025348,0.08515,0.274095 +2026-04-09,Other / Unknown,commit,17512,26268000000,4386.8864,12529.9527,35078.2561,1.491541,5.011981,16.135998 +2026-04-09,Google,commit,2742,3838660000,144.3842,412.3873,1154.4898,0.034363,0.115468,0.371746 +2026-04-10,AWS / Anthropic,commit,40937,85967910000,20977.7746,59925.3719,167775.4636,5.117528,17.198582,55.374292 +2026-04-10,Azure / Microsoft,commit,1742,1741500000,90.5412,258.5237,723.6348,0.026936,0.090483,0.291263 +2026-04-10,Google,commit,3406,4768960000,179.3758,512.3294,1434.2806,0.042691,0.143452,0.461838 +2026-04-10,Other / Unknown,commit,20201,30301500000,5060.5009,14453.9502,40464.5872,1.72057,5.78158,18.61371 +2026-04-11,AWS / Anthropic,commit,37312,78354570000,19119.9775,54618.3657,152917.2258,4.664319,15.675471,50.47033 +2026-04-11,Azure / Microsoft,commit,1725,1724600000,89.6625,256.0149,716.6125,0.026675,0.089605,0.288437 +2026-04-11,Google,commit,3022,4230380000,159.1181,454.4698,1272.3009,0.03787,0.127252,0.409681 +2026-04-11,Other / Unknown,commit,18928,28392000000,4741.6049,13543.1102,37914.6432,1.612146,5.417244,17.440736 +2026-04-12,AWS / Anthropic,commit,38325,80482920000,19639.3347,56101.9677,157070.9258,4.791016,16.101265,51.841259 +2026-04-12,Azure / Microsoft,commit,1771,1771300000,92.0905,262.9475,736.0174,0.027397,0.092032,0.296247 +2026-04-12,Google,commit,3290,4605300000,173.22,494.7474,1385.0593,0.041226,0.138529,0.445989 +2026-04-12,Other / Unknown,commit,19697,29545500000,4934.2451,14093.3348,39455.0257,1.677643,5.637334,18.149312 +2026-04-13,AWS / Anthropic,commit,39359,82654425000,20169.2224,57615.6517,161308.8474,4.920282,16.535692,53.239985 +2026-04-13,Azure / Microsoft,commit,1933,1932850000,100.4895,286.9294,803.1453,0.029896,0.100425,0.323266 +2026-04-13,Google,commit,3437,4811660000,180.9819,516.9167,1447.1228,0.043074,0.144737,0.465974 +2026-04-13,Other / Unknown,commit,19482,29223000000,4880.386,13939.5009,39024.3596,1.659331,5.5758,17.951205 +2026-04-14,AWS / Anthropic,commit,40609,85278165000,20809.4639,59444.5736,166429.3533,5.076469,17.060593,54.930008 +2026-04-14,Azure / Microsoft,commit,2025,2025250000,105.2934,300.646,841.5397,0.031325,0.105226,0.33872 +2026-04-14,Google,commit,3282,4594940000,172.8303,493.6345,1381.9435,0.041134,0.138218,0.444986 +2026-04-14,Other / Unknown,commit,19206,28809000000,4811.246,13742.021,38471.5045,1.635824,5.496808,17.696892 +2026-04-15,AWS / Anthropic,commit,37631,79024470000,19283.4456,55085.3307,154224.6065,4.704197,15.80949,50.901831 +2026-04-15,Azure / Microsoft,commit,1946,1945600000,101.1524,288.8221,808.4432,0.030093,0.101088,0.325398 +2026-04-15,Google,commit,3256,4557980000,171.4401,489.6639,1370.8277,0.040803,0.137106,0.441407 +2026-04-15,Other / Unknown,commit,19206,28809000000,4811.246,13742.021,38471.5045,1.635824,5.496808,17.696892 +2026-04-16,AWS / Anthropic,commit,42907,90104175000,21987.1005,62808.6247,175847.822,5.363753,18.026075,58.038574 +2026-04-16,Azure / Microsoft,commit,1963,1963150000,102.0648,291.4274,815.7357,0.030364,0.102,0.328334 +2026-04-16,Google,commit,3118,4365340000,164.1943,468.9685,1312.8905,0.039078,0.131311,0.422751 +2026-04-16,Other / Unknown,commit,19776,29664000000,4954.0352,14149.8598,39613.2704,1.684372,5.659944,18.222104 +2026-04-17,AWS / Anthropic,commit,44763,94003245000,22938.5463,65526.5368,183457.2692,5.595858,18.806116,60.550072 +2026-04-17,Azure / Microsoft,commit,1934,1934000000,100.5493,287.1001,803.6232,0.029913,0.100485,0.323458 +2026-04-17,Google,commit,3285,4598370000,172.9593,494.003,1382.9751,0.041164,0.138321,0.445318 +2026-04-17,Other / Unknown,commit,19461,29191500000,4875.1254,13924.4752,38982.2945,1.657543,5.56979,17.931855 +2026-04-18,AWS / Anthropic,commit,61741,129656100000,31638.5084,90378.9567,253037.5845,7.718214,25.938761,83.515055 +2026-04-18,Azure / Microsoft,commit,1942,1942450000,100.9886,288.3545,807.1343,0.030044,0.100924,0.324872 +2026-04-18,Google,commit,3699,5177970000,194.7599,556.2694,1557.2917,0.046353,0.155755,0.501448 +2026-04-18,Other / Unknown,commit,17895,26842500000,4482.8307,12803.9918,35845.4427,1.524162,5.121597,16.488904 +2026-04-19,AWS / Anthropic,commit,42045,88294395000,21545.4804,61547.0872,172315.845,5.25602,17.664014,56.872845 +2026-04-19,Azure / Microsoft,commit,1906,1905900000,99.0884,282.9287,791.9469,0.029479,0.099025,0.318759 +2026-04-19,Google,commit,3429,4800810000,180.5737,515.7511,1443.8596,0.042977,0.14441,0.464923 +2026-04-19,Other / Unknown,commit,18151,27226500000,4546.9606,12987.1615,36358.2358,1.545967,5.194865,16.724788 +2026-04-20,AWS / Anthropic,commit,43604,91569030000,22344.5524,63829.7264,178706.6414,5.450954,18.319131,58.982127 +2026-04-20,Azure / Microsoft,commit,2057,2056650000,106.9259,305.3073,854.5872,0.03181,0.106858,0.343971 +2026-04-20,Google,commit,3170,4438070000,166.9299,476.7819,1334.7643,0.039729,0.133499,0.429794 +2026-04-20,Other / Unknown,commit,18263,27394500000,4575.0175,13067.2983,36582.5828,1.555506,5.226919,16.827988 +2026-04-21,AWS / Anthropic,commit,40714,85499295000,20863.4238,59598.716,166860.9119,5.089632,17.104831,55.072444 +2026-04-21,Azure / Microsoft,commit,1952,1952400000,101.5059,289.8315,811.2688,0.030198,0.101441,0.326536 +2026-04-21,Google,commit,2860,4003510000,150.5848,430.0971,1204.069,0.035839,0.120427,0.38771 +2026-04-21,Other / Unknown,commit,17016,25524000000,4262.6347,12175.0614,34084.7193,1.449296,4.870025,15.678971 +2026-04-22,AWS / Anthropic,commit,40836,85756545000,20926.1976,59778.0364,167362.9625,5.104946,17.156296,55.238146 +2026-04-22,Azure / Microsoft,commit,2021,2021050000,105.0751,300.0226,839.7945,0.03126,0.105008,0.338017 +2026-04-22,Google,commit,3228,4518500000,169.9552,485.4225,1358.9539,0.040449,0.135918,0.437583 +2026-04-22,Other / Unknown,commit,14038,21057000000,3516.6235,10044.2826,28119.4928,1.195652,4.017713,12.934967 +2026-04-23,AWS / Anthropic,commit,40066,84139125000,20531.5169,58650.5867,164206.3964,5.008664,16.832718,54.196321 +2026-04-23,Azure / Microsoft,commit,2096,2095550000,108.9483,311.082,870.751,0.032412,0.108879,0.350477 +2026-04-23,Google,commit,3020,4228280000,159.0391,454.2442,1271.6693,0.037851,0.127188,0.409478 +2026-04-23,Other / Unknown,commit,14997,22495500000,3756.8601,10730.4535,30040.464,1.277332,4.292181,13.818613 +2026-04-24,AWS / Anthropic,commit,43164,90643665000,22118.7461,63184.6853,176900.6937,5.395868,18.134005,58.386074 +2026-04-24,Azure / Microsoft,commit,2002,2001550000,104.0612,297.1278,831.6918,0.030958,0.103995,0.334756 +2026-04-24,Google,commit,2933,4105920000,154.4367,441.099,1234.8691,0.036756,0.123508,0.397628 +2026-04-24,Other / Unknown,commit,13523,20284500000,3387.6122,9675.7967,27087.8973,1.151788,3.870319,12.460433 +2026-04-25,AWS / Anthropic,commit,39381,82699995000,20180.3423,57647.417,161397.7821,4.922995,16.544809,53.269338 +2026-04-25,Azure / Microsoft,commit,2197,2196650000,114.2046,326.0902,912.7605,0.033976,0.114132,0.367386 +2026-04-25,Google,commit,2875,4025560000,151.4141,432.466,1210.7006,0.036037,0.12109,0.389846 +2026-04-25,Other / Unknown,commit,12184,18276000000,3052.1827,8717.7332,24405.7487,1.037742,3.487093,11.226644 +2026-04-26,AWS / Anthropic,commit,38888,81664065000,19927.5561,56925.3046,159376.0552,4.861327,16.337562,52.602067 +2026-04-26,Azure / Microsoft,commit,2172,2172300000,112.9386,322.4754,902.6425,0.033599,0.112866,0.363314 +2026-04-26,Google,commit,2873,4022270000,151.2904,432.1125,1209.7111,0.036007,0.120992,0.389527 +2026-04-26,Other / Unknown,commit,10727,16090500000,2687.1934,7675.24,21487.2346,0.913646,3.070096,9.884128 +2026-04-27,AWS / Anthropic,commit,41580,87318735000,21307.4011,60866.9871,170411.7414,5.19794,17.468825,56.244395 +2026-04-27,Azure / Microsoft,commit,2419,2418600000,125.7438,359.0384,1004.986,0.037409,0.125663,0.404507 +2026-04-27,Other / Unknown,commit,12556,18834000000,3145.3715,8983.9017,25150.9013,1.069426,3.593561,11.569415 +2026-04-27,Google,commit,3170,4438070000,166.9299,476.7819,1334.7643,0.039729,0.133499,0.429794 +2026-04-28,AWS / Anthropic,commit,38408,80655750000,19681.5084,56222.4418,157408.2219,4.801304,16.135841,51.952584 +2026-04-28,Azure / Microsoft,commit,2261,2261150000,117.5579,335.6651,939.5618,0.034973,0.117483,0.378174 +2026-04-28,Other / Unknown,commit,12623,18934500000,3162.1555,9031.8407,25285.1089,1.075133,3.612736,11.63115 +2026-04-28,Google,commit,2604,3646090000,137.1411,391.6995,1096.5737,0.03264,0.109676,0.353097 +2026-04-29,AWS / Anthropic,commit,41891,87970890000,21466.5391,61321.5827,171684.4908,5.236762,17.599294,56.664466 +2026-04-29,Azure / Microsoft,commit,2468,2468050000,128.3147,366.3792,1025.5337,0.038174,0.128233,0.412777 +2026-04-29,Other / Unknown,commit,11994,17991000000,3004.5863,8581.787,24025.1601,1.021559,3.432715,11.051574 +2026-04-29,Google,commit,2840,3976070000,149.5527,427.1493,1195.8163,0.035594,0.119602,0.385053 +2026-04-30,AWS / Anthropic,commit,39210,82340685000,20092.664,57396.9539,160696.5506,4.901605,16.472926,53.037897 +2026-04-30,Azure / Microsoft,commit,2471,2471200000,128.4785,366.8468,1026.8426,0.038222,0.128396,0.413304 +2026-04-30,Other / Unknown,commit,11132,16698000000,2788.6489,7965.0202,22298.4894,0.948141,3.186008,10.257305 +2026-04-30,Google,commit,2611,3655330000,137.4886,392.6922,1099.3527,0.032722,0.109954,0.353992 +2026-05-01,AWS / Anthropic,commit,38612,81085095000,19786.2766,56521.7239,158246.134,4.826862,16.221735,52.229137 +2026-05-01,Azure / Microsoft,commit,2129,2129000000,110.6874,316.0476,884.6503,0.03293,0.110617,0.356072 +2026-05-01,Other / Unknown,commit,10584,15876000000,2651.3708,7572.9226,21200.7916,0.901466,3.029169,9.752364 +2026-05-01,Google,commit,2797,3915870000,147.2883,420.682,1177.7109,0.035055,0.117791,0.379223 +2026-05-02,AWS / Anthropic,commit,32787,68853330000,16801.4976,47995.3672,134374.5516,4.098725,13.77467,44.350321 +2026-05-02,Azure / Microsoft,commit,2006,2006350000,104.3108,297.8404,833.6863,0.031032,0.104244,0.335559 +2026-05-02,Other / Unknown,commit,11117,16675500000,2784.8913,7954.2876,22268.4429,0.946863,3.181715,10.243484 +2026-05-02,Google,commit,2669,3737090000,140.5639,401.4756,1123.9423,0.033454,0.112413,0.361909 +2026-05-03,AWS / Anthropic,commit,35298,74124960000,18087.8737,51670.0452,144662.6948,4.412537,14.829303,47.745922 +2026-05-03,Azure / Microsoft,commit,2068,2067700000,107.5004,306.9477,859.1787,0.031981,0.107432,0.345819 +2026-05-03,Other / Unknown,commit,11484,17226000000,2876.8275,8216.8786,23003.58,0.978121,3.286751,10.581647 +2026-05-03,Google,commit,2736,3829980000,144.0577,411.4548,1151.8792,0.034286,0.115207,0.370905 +2026-05-04,AWS / Anthropic,commit,41473,87093090000,21252.3395,60709.6975,169971.3713,5.184508,17.423683,56.099051 +2026-05-04,Azure / Microsoft,commit,2321,2321400000,120.6904,344.6092,964.5971,0.035905,0.120613,0.38825 +2026-05-04,Other / Unknown,commit,12618,18927000000,3160.9029,9028.2631,25275.0934,1.074707,3.611305,11.626543 +2026-05-04,Google,commit,2747,3845380000,144.637,413.1092,1156.5108,0.034424,0.115671,0.372396 +2026-05-05,AWS / Anthropic,commit,41238,86600115000,21132.0444,60366.061,169009.2785,5.155162,17.32506,55.781512 +2026-05-05,Azure / Microsoft,commit,2403,2403200000,124.9432,356.7523,998.587,0.037171,0.124863,0.401931 +2026-05-05,Other / Unknown,commit,12894,19341000000,3230.043,9225.743,25827.9485,1.098215,3.690297,11.880856 +2026-05-05,Google,commit,2626,3675910000,138.2627,394.9031,1105.5422,0.032907,0.110573,0.355985 +2026-05-06,AWS / Anthropic,commit,46444,97532190000,23799.6748,67986.447,190344.3784,5.805931,19.51211,62.823162 +2026-05-06,Azure / Microsoft,commit,2771,2770950000,144.0626,411.3444,1151.3959,0.042859,0.143971,0.463437 +2026-05-06,Other / Unknown,commit,12906,19359000000,3233.0491,9234.329,25851.9857,1.099237,3.693732,11.891913 +2026-05-06,Google,commit,2632,3685010000,138.605,395.8807,1108.279,0.032988,0.110847,0.356866 +2026-05-07,AWS / Anthropic,commit,49222,103366830000,25223.4358,72053.5806,201731.2951,6.153257,20.679378,66.581414 +2026-05-07,Azure / Microsoft,commit,2844,2844150000,147.8683,422.2108,1181.8122,0.043991,0.147774,0.475679 +2026-05-07,Other / Unknown,commit,15477,23215500000,3877.1037,11073.8967,31001.9512,1.318215,4.429559,14.260898 +2026-05-07,Google,commit,3051,4270770000,160.6373,458.8089,1284.4483,0.038232,0.128466,0.413592 +2026-05-08,AWS / Anthropic,commit,41783,87745245000,21411.4775,61164.293,171244.1207,5.22333,17.554152,56.519122 +2026-05-08,Azure / Microsoft,commit,3001,3000650000,156.0048,445.4431,1246.8417,0.046411,0.155905,0.501854 +2026-05-08,Other / Unknown,commit,13738,20607000000,3441.4713,9829.6306,27518.5634,1.1701,3.931852,12.658539 +2026-05-08,Google,commit,3333,4666060000,175.5054,501.2749,1403.3331,0.04177,0.140357,0.451873 +2026-05-09,AWS / Anthropic,commit,31617,66396225000,16201.9182,46282.601,129579.2515,3.952458,13.283106,42.767632 +2026-05-09,Azure / Microsoft,commit,2639,2638600000,137.1817,391.6972,1096.4013,0.040812,0.137094,0.441302 +2026-05-09,Other / Unknown,commit,12064,18096000000,3022.1218,8631.8724,24165.377,1.027521,3.452749,11.116073 +2026-05-09,Google,commit,3286,4600610000,173.0436,494.2436,1383.6488,0.041184,0.138388,0.445535 +2026-05-10,AWS / Anthropic,commit,31157,65428965000,15965.8887,45608.3562,127691.5414,3.894879,13.089598,42.144593 +2026-05-10,Azure / Microsoft,commit,2371,2370750000,123.2561,351.9351,985.1032,0.036669,0.123177,0.396504 +2026-05-10,Other / Unknown,commit,11942,17913000000,2991.5599,8544.5806,23920.999,1.01713,3.417832,11.00366 +2026-05-10,Google,commit,3451,4830840000,181.7033,518.9772,1452.8912,0.043245,0.145314,0.467831 +2025-04-01,Azure / Microsoft,branch,181,181000000,4.7111,26.8692,150.3956,0.001402,0.009404,0.060534 +2025-04-01,AWS / Anthropic,branch,2,4200000,0.5126,2.9277,16.3927,0.000125,0.00084,0.00541 +2025-04-01,Google,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-01,Other / Unknown,branch,304,456000000,38.1015,217.514,1217.7863,0.012955,0.087006,0.560182 +2025-04-02,Azure / Microsoft,branch,35,35000000,0.911,5.1957,29.082,0.000271,0.001818,0.011706 +2025-04-02,AWS / Anthropic,branch,2,4200000,0.5126,2.9277,16.3927,0.000125,0.00084,0.00541 +2025-04-02,Google,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-02,Other / Unknown,branch,331,496500000,41.4855,236.8327,1325.945,0.014105,0.094733,0.609935 +2025-04-03,Azure / Microsoft,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-03,AWS / Anthropic,branch,2,4200000,0.5126,2.9277,16.3927,0.000125,0.00084,0.00541 +2025-04-03,Google,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-03,Other / Unknown,branch,425,637500000,53.2669,304.0903,1702.4973,0.018111,0.121636,0.783149 +2025-04-04,Azure / Microsoft,branch,10,10000000,0.2603,1.4845,8.3091,7.7e-05,0.00052,0.003344 +2025-04-04,AWS / Anthropic,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-04,Google,branch,4,5600000,0.1054,0.6016,3.3682,2.5e-05,0.000168,0.001085 +2025-04-04,Other / Unknown,branch,792,1188000000,99.2644,566.6813,3172.6538,0.03375,0.226673,1.459421 +2025-04-05,Azure / Microsoft,branch,1,1000000,0.026,0.1484,0.8309,8e-06,5.2e-05,0.000334 +2025-04-05,AWS / Anthropic,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-05,Google,branch,4,5600000,0.1054,0.6016,3.3682,2.5e-05,0.000168,0.001085 +2025-04-05,Other / Unknown,branch,473,709500000,59.2829,338.4347,1894.7793,0.020156,0.135374,0.871599 +2025-04-06,Azure / Microsoft,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-06,AWS / Anthropic,branch,1,2100000,0.2563,1.4638,8.1964,6.3e-05,0.00042,0.002705 +2025-04-06,Google,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-06,Other / Unknown,branch,564,846000000,70.6883,403.5458,2259.3141,0.024034,0.161418,1.039284 +2025-04-07,Azure / Microsoft,branch,1,1000000,0.026,0.1484,0.8309,8e-06,5.2e-05,0.000334 +2025-04-07,AWS / Anthropic,branch,1,1470000,0.1794,1.0247,5.7375,4.4e-05,0.000294,0.001894 +2025-04-07,Google,branch,0,420000,0.0079,0.0451,0.2526,2e-06,1.3e-05,8.1e-05 +2025-04-07,Other / Unknown,branch,304,456000000,38.1015,217.514,1217.7863,0.012955,0.087006,0.560182 +2025-04-08,Azure / Microsoft,branch,2,1500000,0.039,0.2227,1.2464,1.2e-05,7.8e-05,0.000502 +2025-04-08,AWS / Anthropic,branch,7,14805000,1.807,10.3201,57.7844,0.000441,0.002962,0.019072 +2025-04-08,Google,branch,2,3430000,0.0646,0.3685,2.063,1.5e-05,0.000103,0.000664 +2025-04-08,Other / Unknown,branch,480,720000000,60.1602,343.4432,1922.8205,0.020454,0.137377,0.884497 +2025-04-09,Azure / Microsoft,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-09,AWS / Anthropic,branch,5,10500000,1.2816,7.3192,40.9818,0.000313,0.002101,0.013526 +2025-04-09,Google,branch,1,1400000,0.0263,0.1504,0.842,6e-06,4.2e-05,0.000271 +2025-04-09,Other / Unknown,branch,405,607500000,50.7602,289.7802,1622.3798,0.017258,0.115912,0.746295 +2025-04-10,Azure / Microsoft,branch,1,1000000,0.026,0.1484,0.8309,8e-06,5.2e-05,0.000334 +2025-04-10,AWS / Anthropic,branch,3,6300000,0.7689,4.3915,24.5891,0.000188,0.00126,0.008116 +2025-04-10,Google,branch,1,1400000,0.0263,0.1504,0.842,6e-06,4.2e-05,0.000271 +2025-04-10,Other / Unknown,branch,402,603000000,50.3842,287.6337,1610.3622,0.017131,0.115053,0.740767 +2025-04-11,Azure / Microsoft,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-11,AWS / Anthropic,branch,34,71400000,8.7147,49.7706,278.6764,0.002126,0.014284,0.091977 +2025-04-11,Google,branch,2,2800000,0.0527,0.3008,1.6841,1.3e-05,8.4e-05,0.000542 +2025-04-11,Other / Unknown,branch,582,873000000,72.9443,416.4249,2331.4198,0.024801,0.16657,1.072453 +2025-04-12,Azure / Microsoft,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-12,AWS / Anthropic,branch,6,12600000,1.5379,8.783,49.1782,0.000375,0.002521,0.016231 +2025-04-12,Google,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-12,Other / Unknown,branch,510,765000000,63.9203,364.9084,2042.9968,0.021733,0.145963,0.939779 +2025-04-13,Azure / Microsoft,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-13,AWS / Anthropic,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-13,Google,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-13,Other / Unknown,branch,439,658500000,55.0216,314.1074,1758.5796,0.018707,0.125643,0.808947 +2025-04-14,Azure / Microsoft,branch,3,3000000,0.0781,0.4453,2.4927,2.3e-05,0.000156,0.001003 +2025-04-14,AWS / Anthropic,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-14,Google,branch,1,1400000,0.0263,0.1504,0.842,6e-06,4.2e-05,0.000271 +2025-04-14,Other / Unknown,branch,449,673500000,56.2749,321.2625,1798.6383,0.019133,0.128505,0.827374 +2025-04-15,Azure / Microsoft,branch,1,1000000,0.026,0.1484,0.8309,8e-06,5.2e-05,0.000334 +2025-04-15,AWS / Anthropic,branch,1,1470000,0.1794,1.0247,5.7375,4.4e-05,0.000294,0.001894 +2025-04-15,Google,branch,0,420000,0.0079,0.0451,0.2526,2e-06,1.3e-05,8.1e-05 +2025-04-15,Other / Unknown,branch,436,654000000,54.6456,311.9609,1746.5619,0.018579,0.124784,0.803418 +2025-04-16,Azure / Microsoft,branch,4,4000000,0.1041,0.5938,3.3237,3.1e-05,0.000208,0.001338 +2025-04-16,AWS / Anthropic,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-16,Google,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-16,Other / Unknown,branch,430,645000000,53.8935,307.6679,1722.5267,0.018324,0.123067,0.792362 +2025-04-17,Azure / Microsoft,branch,37,37000000,0.9631,5.4926,30.7438,0.000287,0.001922,0.012374 +2025-04-17,AWS / Anthropic,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-17,Google,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-17,Other / Unknown,branch,413,619500000,51.7629,295.5043,1654.4268,0.017599,0.118202,0.761036 +2025-04-18,Azure / Microsoft,branch,44,43500000,1.1322,6.4575,36.1448,0.000337,0.00226,0.014548 +2025-04-18,AWS / Anthropic,branch,0,735000,0.0897,0.5123,2.8687,2.2e-05,0.000147,0.000947 +2025-04-18,Google,branch,1,1610000,0.0303,0.173,0.9683,7e-06,4.8e-05,0.000312 +2025-04-18,Other / Unknown,branch,477,715500000,59.7842,341.2967,1910.8029,0.020327,0.136519,0.878969 +2025-04-19,Azure / Microsoft,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-19,AWS / Anthropic,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-19,Google,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-19,Other / Unknown,branch,617,925500000,77.331,441.4676,2471.6255,0.026293,0.176587,1.136948 +2025-04-20,Azure / Microsoft,branch,3,3000000,0.0781,0.4453,2.4927,2.3e-05,0.000156,0.001003 +2025-04-20,AWS / Anthropic,branch,2,4410000,0.5383,3.0741,17.2124,0.000131,0.000882,0.005681 +2025-04-20,Google,branch,1,1260000,0.0237,0.1354,0.7578,6e-06,3.8e-05,0.000244 +2025-04-20,Other / Unknown,branch,685,1027500000,85.8537,490.1221,2744.0251,0.02919,0.196049,1.262252 +2025-04-21,Azure / Microsoft,branch,3,3000000,0.0781,0.4453,2.4927,2.3e-05,0.000156,0.001003 +2025-04-21,AWS / Anthropic,branch,7,14700000,1.7942,10.2469,57.3745,0.000438,0.002941,0.018936 +2025-04-21,Google,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-21,Other / Unknown,branch,551,826500000,69.0589,394.2442,2207.2377,0.02348,0.157698,1.015329 +2025-04-22,Azure / Microsoft,branch,39,39000000,1.0151,5.7895,32.4057,0.000302,0.002026,0.013043 +2025-04-22,AWS / Anthropic,branch,8,16800000,2.0505,11.7107,65.5709,0.0005,0.003361,0.021642 +2025-04-22,Google,branch,1,1400000,0.0263,0.1504,0.842,6e-06,4.2e-05,0.000271 +2025-04-22,Other / Unknown,branch,546,819000000,68.4323,390.6666,2187.2083,0.023267,0.156267,1.006116 +2025-04-23,Azure / Microsoft,branch,1,1000000,0.026,0.1484,0.8309,8e-06,5.2e-05,0.000334 +2025-04-23,AWS / Anthropic,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-23,Google,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-23,Other / Unknown,branch,421,631500000,52.7655,301.2283,1686.4738,0.01794,0.120491,0.775778 +2025-04-24,Azure / Microsoft,branch,11,11000000,0.2863,1.6329,9.1401,8.5e-05,0.000572,0.003679 +2025-04-24,AWS / Anthropic,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-24,Google,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-24,Other / Unknown,branch,489,733500000,61.2882,349.8828,1958.8734,0.020838,0.139953,0.901082 +2025-04-25,Azure / Microsoft,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-25,AWS / Anthropic,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-25,Google,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-25,Other / Unknown,branch,450,675000000,56.4002,321.978,1802.6442,0.019176,0.128791,0.829216 +2025-04-26,Azure / Microsoft,branch,5,5000000,0.1301,0.7422,4.1546,3.9e-05,0.00026,0.001672 +2025-04-26,AWS / Anthropic,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-26,Google,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-26,Other / Unknown,branch,245,367500000,30.7068,175.2991,981.4396,0.01044,0.07012,0.451462 +2025-04-27,Azure / Microsoft,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-27,AWS / Anthropic,branch,5,10500000,1.2816,7.3192,40.9818,0.000313,0.002101,0.013526 +2025-04-27,Google,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-27,Other / Unknown,branch,353,529500000,44.2428,252.5739,1414.0742,0.015043,0.10103,0.650474 +2025-04-28,Azure / Microsoft,branch,1,1000000,0.026,0.1484,0.8309,8e-06,5.2e-05,0.000334 +2025-04-28,AWS / Anthropic,branch,5,10500000,1.2816,7.3192,40.9818,0.000313,0.002101,0.013526 +2025-04-28,Google,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-28,Other / Unknown,branch,427,640500000,53.5175,305.5213,1710.5091,0.018196,0.122209,0.786834 +2025-04-29,Azure / Microsoft,branch,1,1000000,0.026,0.1484,0.8309,8e-06,5.2e-05,0.000334 +2025-04-29,AWS / Anthropic,branch,18,37800000,4.6137,26.3491,147.5345,0.001126,0.007562,0.048694 +2025-04-29,Google,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-04-29,Other / Unknown,branch,562,843000000,70.4376,402.1147,2251.3023,0.023949,0.160846,1.035599 +2025-04-30,Azure / Microsoft,branch,1,1000000,0.026,0.1484,0.8309,8e-06,5.2e-05,0.000334 +2025-04-30,AWS / Anthropic,branch,8,16170000,1.9736,11.2716,63.112,0.000481,0.003235,0.02083 +2025-04-30,Google,branch,0,420000,0.0079,0.0451,0.2526,2e-06,1.3e-05,8.1e-05 +2025-04-30,Other / Unknown,branch,367,550500000,45.9975,262.5909,1470.1565,0.015639,0.105036,0.676272 +2025-05-01,Azure / Microsoft,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-05-01,AWS / Anthropic,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-05-01,Google,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-05-01,Other / Unknown,branch,505,757500000,63.2936,361.3309,2022.9674,0.02152,0.144532,0.930565 +2025-05-02,Azure / Microsoft,branch,2,2000000,0.0521,0.2969,1.6618,1.5e-05,0.000104,0.000669 +2025-05-02,AWS / Anthropic,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-05-02,Google,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-05-02,Other / Unknown,branch,594,891000000,74.4483,425.011,2379.4903,0.025312,0.170004,1.094566 +2025-05-03,Azure / Microsoft,branch,2,2000000,0.0521,0.2969,1.6618,1.5e-05,0.000104,0.000669 +2025-05-03,AWS / Anthropic,branch,4,9240000,1.1278,6.4409,36.064,0.000275,0.001849,0.011903 +2025-05-03,Google,branch,1,840000,0.0158,0.0902,0.5052,4e-06,2.5e-05,0.000163 +2025-05-03,Other / Unknown,branch,699,1048500000,87.6083,500.1392,2800.1073,0.029787,0.200056,1.288049 +2025-05-04,Azure / Microsoft,branch,0,500000,0.013,0.0742,0.4155,4e-06,2.6e-05,0.000167 +2025-05-04,AWS / Anthropic,branch,0,735000,0.0897,0.5123,2.8687,2.2e-05,0.000147,0.000947 +2025-05-04,Google,branch,0,210000,0.004,0.0226,0.1263,1e-06,6e-06,4.1e-05 +2025-05-04,Other / Unknown,branch,568,852000000,71.1896,406.4078,2275.3376,0.024204,0.162563,1.046655 +2025-05-05,Azure / Microsoft,branch,1,1000000,0.026,0.1484,0.8309,8e-06,5.2e-05,0.000334 +2025-05-05,AWS / Anthropic,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-05-05,Google,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-05-05,Other / Unknown,branch,553,829500000,69.3096,395.6752,2215.2494,0.023565,0.15827,1.019015 +2025-05-06,Azure / Microsoft,branch,2,1500000,0.039,0.2227,1.2464,1.2e-05,7.8e-05,0.000502 +2025-05-06,AWS / Anthropic,branch,0,735000,0.0897,0.5123,2.8687,2.2e-05,0.000147,0.000947 +2025-05-06,Google,branch,0,210000,0.004,0.0226,0.1263,1e-06,6e-06,4.1e-05 +2025-05-06,Other / Unknown,branch,674,1011000000,84.475,482.2515,2699.9604,0.028722,0.192901,1.241982 +2025-05-07,Azure / Microsoft,branch,1,1000000,0.026,0.1484,0.8309,8e-06,5.2e-05,0.000334 +2025-05-07,AWS / Anthropic,branch,2,4200000,0.5126,2.9277,16.3927,0.000125,0.00084,0.00541 +2025-05-07,Google,branch,1,1400000,0.0263,0.1504,0.842,6e-06,4.2e-05,0.000271 +2025-05-07,Other / Unknown,branch,674,1011000000,84.475,482.2515,2699.9604,0.028722,0.192901,1.241982 +2025-05-08,Azure / Microsoft,branch,2,1500000,0.039,0.2227,1.2464,1.2e-05,7.8e-05,0.000502 +2025-05-08,AWS / Anthropic,branch,0,735000,0.0897,0.5123,2.8687,2.2e-05,0.000147,0.000947 +2025-05-08,Google,branch,1,1610000,0.0303,0.173,0.9683,7e-06,4.8e-05,0.000312 +2025-05-08,Other / Unknown,branch,638,957000000,79.963,456.4933,2555.7489,0.027187,0.182597,1.175644 +2025-05-09,Azure / Microsoft,branch,0,500000,0.013,0.0742,0.4155,4e-06,2.6e-05,0.000167 +2025-05-09,AWS / Anthropic,branch,0,735000,0.0897,0.5123,2.8687,2.2e-05,0.000147,0.000947 +2025-05-09,Google,branch,2,3010000,0.0566,0.3234,1.8104,1.3e-05,9.1e-05,0.000583 +2025-05-09,Other / Unknown,branch,631,946500000,79.0856,451.4847,2527.7078,0.026889,0.180594,1.162746 +2025-05-10,Azure / Microsoft,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-05-10,AWS / Anthropic,branch,21,44100000,5.3826,30.7406,172.1236,0.001313,0.008823,0.056809 +2025-05-10,Google,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-05-10,Other / Unknown,branch,465,697500000,58.2802,332.7106,1862.7323,0.019815,0.133084,0.856857 +2025-05-11,Azure / Microsoft,branch,5,5000000,0.1301,0.7422,4.1546,3.9e-05,0.00026,0.001672 +2025-05-11,AWS / Anthropic,branch,2,4200000,0.5126,2.9277,16.3927,0.000125,0.00084,0.00541 +2025-05-11,Google,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-05-11,Other / Unknown,branch,461,691500000,57.7789,329.8486,1846.7088,0.019645,0.131939,0.849486 +2025-05-12,Azure / Microsoft,branch,8,8500000,0.2212,1.2618,7.0628,6.6e-05,0.000442,0.002843 +2025-05-12,AWS / Anthropic,branch,7,15435000,1.8839,10.7592,60.2433,0.00046,0.003088,0.019883 +2025-05-12,Google,branch,2,3010000,0.0566,0.3234,1.8104,1.3e-05,9.1e-05,0.000583 +2025-05-12,Other / Unknown,branch,699,1048500000,87.6083,500.1392,2800.1073,0.029787,0.200056,1.288049 +2025-05-13,Azure / Microsoft,branch,2,2500000,0.0651,0.3711,2.0773,1.9e-05,0.00013,0.000836 +2025-05-13,AWS / Anthropic,branch,9,19635000,2.3965,13.6869,76.636,0.000585,0.003928,0.025294 +2025-05-13,Google,branch,1,1610000,0.0303,0.173,0.9683,7e-06,4.8e-05,0.000312 +2025-05-13,Other / Unknown,branch,803,1204500000,100.6431,574.5519,3216.7184,0.034219,0.229821,1.47969 +2025-05-14,Azure / Microsoft,branch,13,13000000,0.3384,1.9298,10.8019,0.000101,0.000675,0.004348 +2025-05-14,AWS / Anthropic,branch,9,19320000,2.3581,13.4673,75.4065,0.000575,0.003865,0.024888 +2025-05-14,Google,branch,2,2520000,0.0474,0.2707,1.5157,1.1e-05,7.6e-05,0.000488 +2025-05-14,Other / Unknown,branch,646,969000000,80.9657,462.2173,2587.7959,0.027528,0.184887,1.190386 +2025-05-15,Azure / Microsoft,branch,10,10500000,0.2733,1.5587,8.7246,8.1e-05,0.000546,0.003512 +2025-05-15,AWS / Anthropic,branch,2,4935000,0.6023,3.44,19.2615,0.000147,0.000987,0.006357 +2025-05-15,Google,branch,0,210000,0.004,0.0226,0.1263,1e-06,6e-06,4.1e-05 +2025-05-15,Other / Unknown,branch,557,835500000,69.8109,398.5372,2231.2729,0.023736,0.159415,1.026386 +2025-05-16,Azure / Microsoft,branch,300,300500000,7.8215,44.6089,249.6899,0.002327,0.015613,0.1005 +2025-05-16,AWS / Anthropic,branch,17,34965000,4.2676,24.3729,136.4695,0.001041,0.006995,0.045042 +2025-05-16,Google,branch,5,6790000,0.1278,0.7294,4.0839,3e-05,0.000204,0.001315 +2025-05-16,Other / Unknown,branch,650,975000000,81.467,465.0793,2603.8194,0.027699,0.186032,1.197757 +2025-05-17,Azure / Microsoft,branch,8095,8095000000,210.6999,1201.6935,6726.2555,0.062683,0.420593,2.707318 +2025-05-17,AWS / Anthropic,branch,9,19320000,2.3581,13.4673,75.4065,0.000575,0.003865,0.024888 +2025-05-17,Google,branch,2,2520000,0.0474,0.2707,1.5157,1.1e-05,7.6e-05,0.000488 +2025-05-17,Other / Unknown,branch,502,753000000,62.9176,359.1843,2010.9498,0.021392,0.143674,0.925037 +2025-05-18,Azure / Microsoft,branch,7232,7231500000,188.2244,1073.5079,6008.7605,0.055997,0.375728,2.418526 +2025-05-18,AWS / Anthropic,branch,5,9555000,1.1662,6.6605,37.2935,0.000285,0.001912,0.012309 +2025-05-18,Google,branch,2,2730000,0.0514,0.2933,1.642,1.2e-05,8.2e-05,0.000529 +2025-05-18,Other / Unknown,branch,443,664500000,55.5229,316.9695,1774.6031,0.018878,0.126788,0.816317 +2025-05-19,Azure / Microsoft,branch,6546,6545500000,170.3689,971.672,5438.7529,0.050685,0.340085,2.189098 +2025-05-19,AWS / Anthropic,branch,25,53025000,6.4719,36.962,206.9582,0.001579,0.010608,0.068307 +2025-05-19,Google,branch,2,3150000,0.0593,0.3384,1.8946,1.4e-05,9.5e-05,0.00061 +2025-05-19,Other / Unknown,branch,508,762000000,63.6696,363.4774,2034.985,0.021648,0.145391,0.936093 +2025-05-20,Azure / Microsoft,branch,8163,8163000000,212.4698,1211.788,6782.7577,0.06321,0.424126,2.73006 +2025-05-20,AWS / Anthropic,branch,31,64470000,7.8689,44.9399,251.6284,0.00192,0.012898,0.08305 +2025-05-20,Google,branch,3,4620000,0.0869,0.4963,2.7787,2.1e-05,0.000139,0.000895 +2025-05-20,Other / Unknown,branch,479,718500000,60.0349,342.7277,1918.8146,0.020412,0.137091,0.882655 +2025-05-21,Azure / Microsoft,branch,7854,7854000000,204.427,1165.9173,6526.005,0.060817,0.408071,2.626717 +2025-05-21,AWS / Anthropic,branch,26,55230000,6.7411,38.499,215.5644,0.001644,0.011049,0.071147 +2025-05-21,Google,branch,5,6580000,0.1238,0.7069,3.9576,2.9e-05,0.000198,0.001274 +2025-05-21,Other / Unknown,branch,533,799500000,66.8029,381.3651,2135.1319,0.022713,0.152546,0.982161 +2025-05-22,Azure / Microsoft,branch,7489,7489000000,194.9267,1111.7335,6222.7211,0.057991,0.389107,2.504645 +2025-05-22,AWS / Anthropic,branch,100,209160000,25.5289,145.7985,816.3578,0.006228,0.041844,0.269439 +2025-05-22,Google,branch,11,15960000,0.3004,1.7146,9.5992,7.1e-05,0.00048,0.003091 +2025-05-22,Other / Unknown,branch,561,841500000,70.3123,401.3992,2247.2964,0.023906,0.16056,1.033756 +2025-05-23,Azure / Microsoft,branch,6263,6263000000,163.0158,929.7352,5204.0195,0.048497,0.325407,2.094618 +2025-05-23,AWS / Anthropic,branch,121,254100000,31.0141,177.1247,991.76,0.007566,0.050835,0.32733 +2025-05-23,Google,branch,6,8400000,0.1581,0.9024,5.0522,3.8e-05,0.000253,0.001627 +2025-05-23,Other / Unknown,branch,452,678000000,56.6509,323.409,1810.656,0.019261,0.129364,0.832902 +2025-05-24,Azure / Microsoft,branch,4120,4120000000,107.237,611.6093,3423.3691,0.031903,0.214063,1.377906 +2025-05-24,AWS / Anthropic,branch,205,430920000,52.5958,300.38,1681.8938,0.012831,0.086209,0.555109 +2025-05-24,Google,branch,6,8120000,0.1528,0.8723,4.8838,3.6e-05,0.000244,0.001573 +2025-05-24,Other / Unknown,branch,448,672000000,56.1496,320.547,1794.6324,0.019091,0.128219,0.825531 +2025-05-25,Azure / Microsoft,branch,4352,4352000000,113.2756,646.0494,3616.1413,0.033699,0.226117,1.455497 +2025-05-25,AWS / Anthropic,branch,211,443940000,54.1849,309.4558,1732.7112,0.013218,0.088814,0.571881 +2025-05-25,Google,branch,1,840000,0.0158,0.0902,0.5052,4e-06,2.5e-05,0.000163 +2025-05-25,Other / Unknown,branch,403,604500000,50.5095,288.3492,1614.368,0.017173,0.11534,0.742609 +2025-05-26,Azure / Microsoft,branch,3502,3502500000,91.1645,519.9421,2910.2792,0.027121,0.18198,1.171387 +2025-05-26,AWS / Anthropic,branch,194,407715000,49.7635,284.2046,1591.324,0.01214,0.081567,0.525216 +2025-05-26,Google,branch,1,1890000,0.0356,0.203,1.1368,8e-06,5.7e-05,0.000366 +2025-05-26,Other / Unknown,branch,272,408000000,34.0908,194.6178,1089.5983,0.011591,0.077847,0.501215 +2025-05-27,Azure / Microsoft,branch,3512,3512000000,91.4117,521.3524,2918.1728,0.027195,0.182473,1.174565 +2025-05-27,AWS / Anthropic,branch,160,336210000,41.036,234.3608,1312.2378,0.010011,0.067262,0.433104 +2025-05-27,Google,branch,3,4060000,0.0764,0.4362,2.4419,1.8e-05,0.000122,0.000786 +2025-05-27,Other / Unknown,branch,313,469500000,39.2295,223.9536,1253.8392,0.013338,0.089581,0.576766 +2025-05-28,Azure / Microsoft,branch,3516,3516500000,91.5289,522.0204,2921.912,0.02723,0.182707,1.17607 +2025-05-28,AWS / Anthropic,branch,146,307545000,37.5373,214.3794,1200.3574,0.009157,0.061527,0.396178 +2025-05-28,Google,branch,3,4270000,0.0804,0.4587,2.5682,1.9e-05,0.000128,0.000827 +2025-05-28,Other / Unknown,branch,346,519000000,43.3655,247.5653,1386.0331,0.014744,0.099026,0.637575 +2025-05-29,Azure / Microsoft,branch,3488,3488500000,90.8001,517.8638,2898.6463,0.027013,0.181252,1.166705 +2025-05-29,AWS / Anthropic,branch,164,344505000,42.0484,240.143,1344.6134,0.010258,0.068921,0.44379 +2025-05-29,Google,branch,15,21630000,0.4071,2.3237,13.0095,9.7e-05,0.000651,0.004189 +2025-05-29,Other / Unknown,branch,366,549000000,45.8722,261.8754,1466.1506,0.015597,0.10475,0.674429 +2025-05-30,Azure / Microsoft,branch,3488,3487500000,90.774,517.7154,2897.8154,0.027005,0.1812,1.166371 +2025-05-30,AWS / Anthropic,branch,140,293685000,35.8456,204.718,1146.2614,0.008745,0.058754,0.378324 +2025-05-30,Google,branch,5,6510000,0.1225,0.6994,3.9155,2.9e-05,0.000196,0.001261 +2025-05-30,Other / Unknown,branch,353,529500000,44.2428,252.5739,1414.0742,0.015043,0.10103,0.650474 +2025-05-31,Azure / Microsoft,branch,3793,3793000000,98.7257,563.0665,3151.6599,0.029371,0.197073,1.268543 +2025-05-31,AWS / Anthropic,branch,200,420840000,51.3655,293.3536,1642.5512,0.012531,0.084192,0.542124 +2025-05-31,Google,branch,17,23240000,0.4374,2.4967,13.9778,0.000104,0.000699,0.004501 +2025-05-31,Other / Unknown,branch,262,393000000,32.8375,187.4627,1049.5395,0.011165,0.074985,0.482788 +2025-06-01,Azure / Microsoft,branch,3586,3586500000,93.3508,532.4118,2980.076,0.027772,0.186344,1.199481 +2025-06-01,AWS / Anthropic,branch,223,468615000,57.1966,326.6559,1829.0185,0.013953,0.09375,0.603668 +2025-06-01,Google,branch,5,7490000,0.141,0.8047,4.5049,3.4e-05,0.000225,0.001451 +2025-06-01,Other / Unknown,branch,304,456000000,38.1015,217.514,1217.7863,0.012955,0.087006,0.560182 +2025-06-02,Azure / Microsoft,branch,3416,3415500000,88.9,507.0271,2837.9896,0.026448,0.177459,1.142291 +2025-06-02,AWS / Anthropic,branch,138,289695000,35.3586,201.9368,1130.6883,0.008626,0.057956,0.373184 +2025-06-02,Google,branch,7,9170000,0.1726,0.9851,5.5154,4.1e-05,0.000276,0.001776 +2025-06-02,Other / Unknown,branch,191,286500000,23.9388,136.6618,765.1223,0.008139,0.054665,0.351956 +2025-06-03,Azure / Microsoft,branch,7614,7614500000,198.1932,1130.3638,6327.0009,0.058962,0.395627,2.546618 +2025-06-03,AWS / Anthropic,branch,119,250215000,30.5399,174.4166,976.5967,0.00745,0.050058,0.322326 +2025-06-03,Google,branch,6,8890000,0.1673,0.9551,5.3469,4e-05,0.000267,0.001722 +2025-06-03,Other / Unknown,branch,281,421500000,35.2188,201.0574,1125.6512,0.011974,0.080423,0.5178 +2025-06-04,Azure / Microsoft,branch,21556,21555500000,561.0551,3199.8893,17910.7844,0.166914,1.119961,7.209091 +2025-06-04,AWS / Anthropic,branch,210,441945000,53.9414,308.0652,1724.9247,0.013159,0.088415,0.569311 +2025-06-04,Google,branch,9,12670000,0.2384,1.3611,7.6204,5.7e-05,0.000381,0.002454 +2025-06-04,Other / Unknown,branch,254,381000000,31.8348,181.7387,1017.4925,0.010824,0.072695,0.468047 +2025-06-05,Azure / Microsoft,branch,18837,18837000000,490.2969,2796.3311,15651.9424,0.145863,0.978716,6.299907 +2025-06-05,AWS / Anthropic,branch,162,341250000,41.6511,237.874,1331.9091,0.010161,0.06827,0.439597 +2025-06-05,Google,branch,20,28700000,0.5401,3.0832,17.2618,0.000129,0.000863,0.005558 +2025-06-05,Other / Unknown,branch,283,424500000,35.4695,202.4884,1133.6629,0.01206,0.080995,0.521485 +2025-06-06,Azure / Microsoft,branch,17609,17609000000,458.334,2614.0359,14631.579,0.136354,0.914913,5.889211 +2025-06-06,AWS / Anthropic,branch,180,378210000,46.1623,263.6376,1476.1651,0.011261,0.075664,0.487208 +2025-06-06,Google,branch,16,22260000,0.4189,2.3914,13.3884,0.0001,0.00067,0.004311 +2025-06-06,Other / Unknown,branch,282,423000000,35.3441,201.7729,1129.657,0.012017,0.080709,0.519642 +2025-06-07,Azure / Microsoft,branch,18228,18228000000,474.4456,2705.9257,15145.9153,0.141148,0.947074,6.096231 +2025-06-07,AWS / Anthropic,branch,269,564480000,68.8974,393.4802,2203.1825,0.016808,0.112929,0.72716 +2025-06-07,Google,branch,22,31080000,0.5849,3.3389,18.6933,0.000139,0.000935,0.006019 +2025-06-07,Other / Unknown,branch,302,453000000,37.8508,216.083,1209.7746,0.012869,0.086433,0.556496 +2025-06-08,Azure / Microsoft,branch,17853,17853000000,464.685,2650.2574,14834.3222,0.138244,0.92759,5.970815 +2025-06-08,AWS / Anthropic,branch,293,614880000,75.049,428.6124,2399.8952,0.018308,0.123012,0.792085 +2025-06-08,Google,branch,26,36680000,0.6903,3.9405,22.0614,0.000164,0.001103,0.007104 +2025-06-08,Other / Unknown,branch,267,400500000,33.4641,191.0403,1069.5689,0.011378,0.076416,0.492002 +2025-06-09,Azure / Microsoft,branch,15930,15930000000,414.6324,2364.7903,13236.4731,0.123353,0.827677,5.32768 +2025-06-09,AWS / Anthropic,branch,230,484050000,59.0805,337.4152,1889.2618,0.014413,0.096838,0.623551 +2025-06-09,Google,branch,34,46900000,0.8826,5.0385,28.2083,0.00021,0.001411,0.009083 +2025-06-09,Other / Unknown,branch,296,444000000,37.0988,211.79,1185.7393,0.012614,0.084716,0.54544 +2025-06-10,Azure / Microsoft,branch,15537,15537000000,404.4032,2306.4499,12909.9235,0.12031,0.807257,5.196244 +2025-06-10,AWS / Anthropic,branch,284,596610000,72.819,415.877,2328.5869,0.017764,0.119357,0.76855 +2025-06-10,Google,branch,34,47460000,0.8932,5.0986,28.5451,0.000213,0.001428,0.009192 +2025-06-10,Other / Unknown,branch,341,511500000,42.7388,243.9878,1366.0037,0.014531,0.097595,0.628362 +2025-06-11,Azure / Microsoft,branch,16349,16349000000,425.5383,2426.9903,13584.6264,0.126598,0.849447,5.467812 +2025-06-11,AWS / Anthropic,branch,228,479010000,58.4654,333.9019,1869.5905,0.014263,0.09583,0.617058 +2025-06-11,Google,branch,22,30660000,0.577,3.2938,18.4406,0.000137,0.000922,0.005938 +2025-06-11,Other / Unknown,branch,304,456000000,38.1015,217.514,1217.7863,0.012955,0.087006,0.560182 +2025-06-12,Azure / Microsoft,branch,13750,13750500000,357.9035,2041.246,11425.4942,0.106476,0.714436,4.598761 +2025-06-12,AWS / Anthropic,branch,194,406455000,49.6097,283.3263,1586.4061,0.012102,0.081315,0.523593 +2025-06-12,Google,branch,26,36330000,0.6837,3.9029,21.8509,0.000163,0.001093,0.007036 +2025-06-12,Other / Unknown,branch,250,375000000,31.3335,178.8767,1001.469,0.010653,0.071551,0.460676 +2025-06-13,Azure / Microsoft,branch,15294,15294500000,398.0913,2270.451,12708.4267,0.118432,0.794658,5.115142 +2025-06-13,AWS / Anthropic,branch,238,499905000,61.0157,348.4672,1951.1443,0.014885,0.10001,0.643975 +2025-06-13,Google,branch,28,39830000,0.7496,4.2789,23.956,0.000178,0.001198,0.007714 +2025-06-13,Other / Unknown,branch,205,307500000,25.6934,146.6789,821.2046,0.008736,0.058672,0.377754 +2025-06-14,Azure / Microsoft,branch,14553,14553000000,378.7913,2160.3762,12092.3033,0.11269,0.756132,4.867152 +2025-06-14,AWS / Anthropic,branch,320,673050000,82.1489,469.1608,2626.9345,0.02004,0.134649,0.86702 +2025-06-14,Google,branch,22,31500000,0.5928,3.384,18.9459,0.000141,0.000948,0.006101 +2025-06-14,Other / Unknown,branch,304,456000000,38.1015,217.514,1217.7863,0.012955,0.087006,0.560182 +2025-06-15,Azure / Microsoft,branch,15170,15169500000,394.8378,2251.8949,12604.5623,0.117464,0.788163,5.073336 +2025-06-15,AWS / Anthropic,branch,265,556605000,67.9362,387.9908,2172.4461,0.016573,0.111353,0.717016 +2025-06-15,Google,branch,26,37030000,0.6969,3.9781,22.2719,0.000166,0.001114,0.007172 +2025-06-15,Other / Unknown,branch,254,381000000,31.8348,181.7387,1017.4925,0.010824,0.072695,0.468047 +2025-06-16,Azure / Microsoft,branch,13620,13620000000,354.5068,2021.8734,11317.0598,0.105466,0.707656,4.555117 +2025-06-16,AWS / Anthropic,branch,241,505890000,61.7462,352.6391,1974.504,0.015063,0.101207,0.651685 +2025-06-16,Google,branch,26,36540000,0.6877,3.9255,21.9772,0.000164,0.001099,0.007077 +2025-06-16,Other / Unknown,branch,204,306000000,25.5681,145.9634,817.1987,0.008693,0.058385,0.375911 +2025-06-17,Azure / Microsoft,branch,12682,12681500000,330.0791,1882.5542,10537.2463,0.098199,0.658894,4.241242 +2025-06-17,AWS / Anthropic,branch,197,412965000,50.4043,287.8642,1611.8149,0.012296,0.082617,0.531979 +2025-06-17,Google,branch,21,29190000,0.5493,3.1359,17.5565,0.000131,0.000878,0.005653 +2025-06-17,Other / Unknown,branch,233,349500000,29.2028,166.7131,933.3691,0.009929,0.066685,0.42935 +2025-06-18,Azure / Microsoft,branch,13817,13817000000,359.6344,2051.1178,11480.75,0.106991,0.717891,4.621002 +2025-06-18,AWS / Anthropic,branch,215,450660000,55.0051,314.1401,1758.9396,0.013419,0.090158,0.580538 +2025-06-18,Google,branch,34,48160000,0.9063,5.1738,28.9661,0.000216,0.001449,0.009327 +2025-06-18,Other / Unknown,branch,260,390000000,32.5868,186.0317,1041.5278,0.01108,0.074413,0.479103 +2025-06-19,Azure / Microsoft,branch,14348,14348000000,373.4554,2129.9442,11921.9658,0.111103,0.74548,4.798591 +2025-06-19,AWS / Anthropic,branch,220,462210000,56.4149,322.1912,1804.0196,0.013762,0.092469,0.595417 +2025-06-19,Google,branch,49,68460000,1.2884,7.3547,41.1757,0.000307,0.002059,0.013259 +2025-06-19,Other / Unknown,branch,316,474000000,39.6055,226.1001,1265.8568,0.013466,0.09044,0.582294 +2025-06-20,Azure / Microsoft,branch,13346,13346000000,347.375,1981.1984,11089.3892,0.103344,0.693419,4.463479 +2025-06-20,AWS / Anthropic,branch,286,600600000,73.306,418.6583,2344.1599,0.017883,0.120155,0.77369 +2025-06-20,Google,branch,62,86800000,1.6335,9.3249,52.2064,0.000389,0.002611,0.01681 +2025-06-20,Other / Unknown,branch,317,475500000,39.7308,226.8156,1269.8627,0.013508,0.090726,0.584137 +2025-06-21,Azure / Microsoft,branch,14444,14443500000,375.9411,2144.1211,12001.3182,0.111842,0.750442,4.830531 +2025-06-21,AWS / Anthropic,branch,237,497175000,60.6825,346.5642,1940.489,0.014803,0.099464,0.640458 +2025-06-21,Google,branch,68,94850000,1.785,10.1897,57.0481,0.000425,0.002853,0.018369 +2025-06-21,Other / Unknown,branch,304,456000000,38.1015,217.514,1217.7863,0.012955,0.087006,0.560182 +2025-06-22,Azure / Microsoft,branch,14448,14447500000,376.0453,2144.7148,12004.6418,0.111873,0.75065,4.831868 +2025-06-22,AWS / Anthropic,branch,244,512505000,62.5536,357.2502,2000.3225,0.01526,0.102531,0.660206 +2025-06-22,Google,branch,87,122430000,2.304,13.1527,73.6363,0.000548,0.003683,0.023711 +2025-06-22,Other / Unknown,branch,193,289500000,24.1894,138.0928,773.1341,0.008224,0.055237,0.355642 +2025-06-23,Azure / Microsoft,branch,11794,11794000000,306.9789,1750.8058,9799.8094,0.091326,0.612782,3.944423 +2025-06-23,AWS / Anthropic,branch,351,736680000,89.9152,513.5151,2875.2843,0.021935,0.147379,0.948988 +2025-06-23,Google,branch,86,120680000,2.2711,12.9647,72.5837,0.000541,0.00363,0.023372 +2025-06-23,Other / Unknown,branch,264,396000000,33.0881,188.8938,1057.5513,0.01125,0.075558,0.486474 +2025-06-24,Azure / Microsoft,branch,12266,12265500000,319.2513,1820.7994,10191.5857,0.094977,0.63728,4.102113 +2025-06-24,AWS / Anthropic,branch,292,613935000,74.9336,427.9537,2396.2068,0.01828,0.122823,0.790868 +2025-06-24,Google,branch,56,78610000,1.4794,8.4451,47.2805,0.000352,0.002365,0.015224 +2025-06-24,Other / Unknown,branch,189,283500000,23.6881,135.2308,757.1106,0.008054,0.054092,0.348271 +2025-06-25,Azure / Microsoft,branch,12224,12224000000,318.1711,1814.6388,10157.1027,0.094656,0.635124,4.088234 +2025-06-25,AWS / Anthropic,branch,213,447720000,54.6463,312.0907,1747.4647,0.013331,0.08957,0.576751 +2025-06-25,Google,branch,82,114520000,2.1552,12.3029,68.8787,0.000513,0.003445,0.022179 +2025-06-25,Other / Unknown,branch,315,472500000,39.4802,225.3846,1261.8509,0.013423,0.090154,0.580451 +2025-06-26,Azure / Microsoft,branch,12067,12067000000,314.0847,1791.3323,10026.6491,0.09344,0.626966,4.035726 +2025-06-26,AWS / Anthropic,branch,235,494340000,60.3365,344.588,1929.424,0.014719,0.098897,0.636806 +2025-06-26,Google,branch,74,103040000,1.9391,11.0696,61.974,0.000462,0.003099,0.019956 +2025-06-26,Other / Unknown,branch,333,499500000,41.7362,238.2637,1333.9567,0.01419,0.095305,0.61362 +2025-06-27,Azure / Microsoft,branch,11914,11914500000,310.1153,1768.6939,9899.9346,0.092259,0.619043,3.984724 +2025-06-27,AWS / Anthropic,branch,205,431235000,52.6342,300.5996,1683.1232,0.01284,0.086272,0.555515 +2025-06-27,Google,branch,61,85610000,1.6111,9.1971,51.4906,0.000383,0.002575,0.01658 +2025-06-27,Other / Unknown,branch,288,432000000,36.0961,206.0659,1153.6923,0.012273,0.082426,0.530698 +2025-06-28,Azure / Microsoft,branch,11650,11650000000,303.2308,1729.4292,9680.1576,0.090211,0.6053,3.896263 +2025-06-28,AWS / Anthropic,branch,171,359940000,43.9323,250.9022,1404.8567,0.010717,0.072009,0.463673 +2025-06-28,Google,branch,101,140840000,2.6505,15.1304,84.7091,0.000631,0.004237,0.027276 +2025-06-28,Other / Unknown,branch,206,309000000,25.8188,147.3944,825.2105,0.008778,0.058958,0.379597 +2025-06-29,Azure / Microsoft,branch,12238,12238000000,318.5355,1816.7171,10168.7355,0.094764,0.635851,4.092916 +2025-06-29,AWS / Anthropic,branch,303,636930000,77.7403,443.9827,2485.957,0.018965,0.127423,0.82049 +2025-06-29,Google,branch,91,126980000,2.3897,13.6415,76.3729,0.000569,0.00382,0.024592 +2025-06-29,Other / Unknown,branch,147,220500000,18.4241,105.1795,588.8638,0.006264,0.042072,0.270877 +2025-06-30,Azure / Microsoft,branch,11624,11624000000,302.5541,1725.5695,9658.5538,0.09001,0.603949,3.887568 +2025-06-30,AWS / Anthropic,branch,285,599130000,73.1266,417.6336,2338.4225,0.017839,0.119861,0.771796 +2025-06-30,Google,branch,98,136780000,2.5741,14.6943,82.2671,0.000613,0.004114,0.02649 +2025-06-30,Other / Unknown,branch,209,313500000,26.1948,149.5409,837.2281,0.008906,0.059816,0.385125 +2025-07-01,Azure / Microsoft,branch,11405,11405000000,296.8539,1693.0592,9476.5835,0.088314,0.592571,3.814325 +2025-07-01,AWS / Anthropic,branch,589,1236270000,150.8925,861.7627,4825.1992,0.03681,0.247326,1.592557 +2025-07-01,Google,branch,218,305620000,5.7515,32.8328,183.817,0.001369,0.009193,0.059189 +2025-07-01,Other / Unknown,branch,223,334500000,27.9494,159.558,893.3103,0.009503,0.063823,0.410923 +2025-07-02,Azure / Microsoft,branch,11894,11894000000,309.5818,1765.6507,9882.9008,0.092101,0.617978,3.977868 +2025-07-02,AWS / Anthropic,branch,609,1279530000,156.1726,891.9178,4994.0442,0.038098,0.25598,1.648284 +2025-07-02,Google,branch,235,328580000,6.1836,35.2994,197.6264,0.001472,0.009884,0.063636 +2025-07-02,Other / Unknown,branch,279,418500000,34.9681,199.6264,1117.6394,0.011889,0.079851,0.514114 +2025-07-03,Azure / Microsoft,branch,12107,12107000000,315.1258,1797.2703,10059.8857,0.09375,0.629045,4.049104 +2025-07-03,AWS / Anthropic,branch,575,1206660000,147.2784,841.1226,4709.6304,0.035929,0.241402,1.554414 +2025-07-03,Google,branch,237,332360000,6.2548,35.7054,199.8999,0.001489,0.009998,0.064368 +2025-07-03,Other / Unknown,branch,305,457500000,38.2268,218.2295,1221.7922,0.012997,0.087292,0.562024 +2025-07-04,Azure / Microsoft,branch,12191,12191000000,317.3122,1809.74,10129.6825,0.0944,0.633409,4.077197 +2025-07-04,AWS / Anthropic,branch,615,1290660000,157.531,899.6762,5037.485,0.03843,0.258207,1.662622 +2025-07-04,Google,branch,272,381360000,7.1769,40.9695,229.3712,0.001708,0.011471,0.073858 +2025-07-04,Other / Unknown,branch,321,481500000,40.2322,229.6776,1285.8862,0.013679,0.091871,0.591508 +2025-07-05,Azure / Microsoft,branch,12284,12284500000,319.7458,1823.62,10207.3731,0.095124,0.638267,4.108468 +2025-07-05,AWS / Anthropic,branch,639,1342005000,163.7979,935.4671,5237.8861,0.039959,0.268479,1.728764 +2025-07-05,Google,branch,289,405230000,7.6261,43.5339,243.728,0.001815,0.012189,0.07848 +2025-07-05,Other / Unknown,branch,152,228000000,19.0507,108.757,608.8932,0.006477,0.043503,0.280091 +2025-07-06,Azure / Microsoft,branch,12167,12167000000,316.6875,1806.1772,10109.7406,0.094215,0.632162,4.069171 +2025-07-06,AWS / Anthropic,branch,630,1323840000,161.5808,922.8049,5166.9875,0.039418,0.264845,1.705364 +2025-07-06,Google,branch,265,370440000,6.9714,39.7964,222.8033,0.001659,0.011143,0.071743 +2025-07-06,Other / Unknown,branch,140,210000000,17.5467,100.1709,560.8226,0.005966,0.040068,0.257978 +2025-07-07,Azure / Microsoft,branch,11748,11748000000,305.7816,1743.9772,9761.5873,0.09097,0.610392,3.929039 +2025-07-07,AWS / Anthropic,branch,572,1201830000,146.6889,837.7557,4690.7788,0.035785,0.240436,1.548192 +2025-07-07,Google,branch,227,317380000,5.9729,34.0961,190.8901,0.001422,0.009547,0.061467 +2025-07-07,Other / Unknown,branch,244,366000000,30.5815,174.5836,977.4337,0.010398,0.069833,0.44962 +2025-07-08,Azure / Microsoft,branch,11830,11830000000,307.9159,1756.15,9829.7223,0.091605,0.614652,3.956463 +2025-07-08,AWS / Anthropic,branch,671,1408470000,171.9103,981.7976,5497.301,0.041938,0.281776,1.814384 +2025-07-08,Google,branch,264,370020000,6.9635,39.7513,222.5507,0.001657,0.01113,0.071661 +2025-07-08,Other / Unknown,branch,267,400500000,33.4641,191.0403,1069.5689,0.011378,0.076416,0.492002 +2025-07-09,Azure / Microsoft,branch,11034,11033500000,287.1843,1637.9105,9167.8986,0.085437,0.573269,3.690079 +2025-07-09,AWS / Anthropic,branch,688,1444485000,176.3061,1006.9025,5637.8686,0.04301,0.288981,1.860779 +2025-07-09,Google,branch,279,390110000,7.3416,41.9095,234.634,0.001747,0.011735,0.075552 +2025-07-09,Other / Unknown,branch,313,469500000,39.2295,223.9536,1253.8392,0.013338,0.089581,0.576766 +2025-07-10,Azure / Microsoft,branch,10288,10288000000,267.7801,1527.2418,8548.4516,0.079665,0.534535,3.440752 +2025-07-10,AWS / Anthropic,branch,866,1819440000,222.0711,1268.2711,7101.3293,0.054174,0.363994,2.343794 +2025-07-10,Google,branch,236,329840000,6.2073,35.4347,198.3842,0.001477,0.009922,0.06388 +2025-07-10,Other / Unknown,branch,329,493500000,41.2348,235.4017,1317.9332,0.01402,0.094161,0.606249 +2025-07-11,Azure / Microsoft,branch,10794,10794500000,280.9635,1602.4312,8969.31,0.083587,0.560851,3.610147 +2025-07-11,AWS / Anthropic,branch,611,1282575000,156.5442,894.0404,5005.929,0.038189,0.25659,1.652207 +2025-07-11,Google,branch,238,332850000,6.264,35.7581,200.1946,0.001491,0.010012,0.064463 +2025-07-11,Other / Unknown,branch,311,466500000,38.9788,222.5226,1245.8274,0.013253,0.089009,0.573081 +2025-07-12,Azure / Microsoft,branch,11164,11163500000,290.568,1657.2088,9275.9176,0.086444,0.580023,3.733557 +2025-07-12,AWS / Anthropic,branch,607,1273965000,155.4933,888.0386,4972.3239,0.037933,0.254867,1.641115 +2025-07-12,Google,branch,196,274190000,5.1601,29.4562,164.9132,0.001228,0.008248,0.053102 +2025-07-12,Other / Unknown,branch,149,223500000,18.6747,106.6105,596.8755,0.006349,0.042644,0.274563 +2025-07-13,Azure / Microsoft,branch,12350,12350000000,321.4507,1833.3434,10261.798,0.095632,0.64167,4.130374 +2025-07-13,AWS / Anthropic,branch,675,1417290000,172.9868,987.9457,5531.7257,0.0422,0.28354,1.825746 +2025-07-13,Google,branch,206,288540000,5.4301,30.9979,173.5441,0.001292,0.008679,0.055881 +2025-07-13,Other / Unknown,branch,244,366000000,30.5815,174.5836,977.4337,0.010398,0.069833,0.44962 +2025-07-14,Azure / Microsoft,branch,10734,10734000000,279.3888,1593.45,8919.0397,0.083118,0.557708,3.589913 +2025-07-14,AWS / Anthropic,branch,689,1446900000,176.6008,1008.5859,5647.2944,0.043082,0.289464,1.86389 +2025-07-14,Google,branch,179,250600000,4.7161,26.922,150.7249,0.001122,0.007538,0.048533 +2025-07-14,Other / Unknown,branch,279,418500000,34.9681,199.6264,1117.6394,0.011889,0.079851,0.514114 +2025-07-15,Azure / Microsoft,branch,10948,10948500000,284.9719,1625.2923,9097.2709,0.084779,0.568852,3.661652 +2025-07-15,AWS / Anthropic,branch,698,1466535000,178.9974,1022.2728,5723.9304,0.043666,0.293392,1.889183 +2025-07-15,Google,branch,208,291410000,5.4841,31.3062,175.2703,0.001305,0.008766,0.056437 +2025-07-15,Other / Unknown,branch,325,487500000,40.7335,232.5397,1301.9097,0.013849,0.093016,0.598878 +2025-07-16,Azure / Microsoft,branch,11940,11939500000,310.766,1772.4051,9920.7075,0.092453,0.620342,3.993085 +2025-07-16,AWS / Anthropic,branch,738,1549065000,189.0706,1079.8017,6046.0475,0.046124,0.309903,1.995498 +2025-07-16,Google,branch,244,341390000,6.4247,36.6755,205.331,0.001529,0.010269,0.066117 +2025-07-16,Other / Unknown,branch,379,568500000,47.5015,271.177,1518.227,0.016151,0.108471,0.698384 +2025-07-17,Azure / Microsoft,branch,11156,11155500000,290.3598,1656.0212,9269.2703,0.086382,0.579607,3.730881 +2025-07-17,AWS / Anthropic,branch,581,1219365000,148.8291,849.9788,4759.2184,0.036307,0.243944,1.57078 +2025-07-17,Google,branch,202,282590000,5.3181,30.3586,169.9654,0.001266,0.0085,0.054729 +2025-07-17,Other / Unknown,branch,389,583500000,48.7549,278.3321,1558.2858,0.016577,0.111333,0.716811 +2025-07-18,Azure / Microsoft,branch,11669,11669000000,303.7254,1732.2497,9695.945,0.090358,0.606287,3.902618 +2025-07-18,AWS / Anthropic,branch,779,1636320000,199.7204,1140.6243,6386.6064,0.048722,0.327359,2.107899 +2025-07-18,Google,branch,253,353920000,6.6605,38.0216,212.8673,0.001585,0.010646,0.068543 +2025-07-18,Other / Unknown,branch,464,696000000,58.1549,331.9951,1858.7265,0.019773,0.132798,0.855014 +2025-07-19,Azure / Microsoft,branch,12402,12402000000,322.8042,1841.0627,10305.0056,0.096034,0.644372,4.147765 +2025-07-19,AWS / Anthropic,branch,946,1986810000,242.4994,1384.9392,7754.5794,0.059158,0.397478,2.559399 +2025-07-19,Google,branch,340,475860000,8.9553,51.1216,286.2088,0.002131,0.014314,0.092159 +2025-07-19,Other / Unknown,branch,317,475500000,39.7308,226.8156,1269.8627,0.013508,0.090726,0.584137 +2025-07-20,Azure / Microsoft,branch,12180,12180000000,317.0259,1808.1071,10120.5425,0.094315,0.632837,4.073518 +2025-07-20,AWS / Anthropic,branch,814,1709190000,208.6146,1191.4195,6671.0202,0.050892,0.341937,2.20177 +2025-07-20,Google,branch,274,383740000,7.2217,41.2252,230.8027,0.001719,0.011543,0.074318 +2025-07-20,Other / Unknown,branch,186,279000000,23.3121,133.0842,745.0929,0.007926,0.053234,0.342743 +2025-07-21,Azure / Microsoft,branch,11680,11680500000,304.0247,1733.9569,9705.5005,0.090447,0.606885,3.906464 +2025-07-21,AWS / Anthropic,branch,874,1834455000,223.9037,1278.7376,7159.9333,0.054621,0.366998,2.363136 +2025-07-21,Google,branch,324,453530000,8.5351,48.7227,272.7783,0.002031,0.013642,0.087835 +2025-07-21,Other / Unknown,branch,252,378000000,31.5841,180.3077,1009.4808,0.010739,0.072123,0.464361 +2025-07-22,Azure / Microsoft,branch,11512,11512000000,299.6389,1708.9432,9565.4914,0.089143,0.59813,3.85011 +2025-07-22,AWS / Anthropic,branch,836,1754970000,214.2022,1223.3312,6849.7009,0.052255,0.351096,2.260744 +2025-07-22,Google,branch,311,435820000,8.2018,46.8201,262.1265,0.001952,0.01311,0.084405 +2025-07-22,Other / Unknown,branch,365,547500000,45.7468,261.1599,1462.1447,0.015554,0.104464,0.672587 +2025-07-23,Azure / Microsoft,branch,11580,11580500000,301.4218,1719.112,9622.4091,0.089673,0.601689,3.87302 +2025-07-23,AWS / Anthropic,branch,640,1344315000,164.0799,937.0773,5246.9021,0.040027,0.268941,1.73174 +2025-07-23,Google,branch,228,319690000,6.0163,34.3443,192.2795,0.001432,0.009616,0.061914 +2025-07-23,Other / Unknown,branch,377,565500000,47.2509,269.746,1510.2153,0.016065,0.107898,0.694699 +2025-07-24,Azure / Microsoft,branch,12834,12833500000,334.0354,1905.1184,10663.5453,0.099376,0.666791,4.292077 +2025-07-24,AWS / Anthropic,branch,793,1666035000,203.3473,1161.3376,6502.5849,0.049607,0.333304,2.146178 +2025-07-24,Google,branch,285,399210000,7.5128,42.8871,240.1072,0.001788,0.012008,0.077315 +2025-07-24,Other / Unknown,branch,596,894000000,74.699,426.442,2387.5021,0.025398,0.170577,1.098251 +2025-07-25,Azure / Microsoft,branch,12840,12840500000,334.2176,1906.1575,10669.3617,0.09943,0.667155,4.294418 +2025-07-25,AWS / Anthropic,branch,709,1489635000,181.8169,1038.375,5814.0904,0.044354,0.298014,1.918941 +2025-07-25,Google,branch,243,340410000,6.4063,36.5703,204.7416,0.001525,0.01024,0.065927 +2025-07-25,Other / Unknown,branch,354,531000000,44.3682,253.2894,1418.0801,0.015085,0.101316,0.652317 +2025-07-26,Azure / Microsoft,branch,13162,13162000000,342.5858,1953.8838,10936.5008,0.101919,0.683859,4.401942 +2025-07-26,AWS / Anthropic,branch,799,1678530000,204.8724,1170.0475,6551.3533,0.049979,0.335804,2.162274 +2025-07-26,Google,branch,264,369180000,6.9477,39.661,222.0455,0.001654,0.011105,0.071499 +2025-07-26,Other / Unknown,branch,241,361500000,30.2055,172.4371,965.4161,0.01027,0.068975,0.444091 +2025-07-27,Azure / Microsoft,branch,13654,13654000000,355.3917,2026.9207,11345.3109,0.105729,0.709422,4.566488 +2025-07-27,AWS / Anthropic,branch,736,1546230000,188.7245,1077.8255,6034.9824,0.046039,0.309336,1.991846 +2025-07-27,Google,branch,267,373380000,7.0267,40.1122,224.5716,0.001672,0.011231,0.072312 +2025-07-27,Other / Unknown,branch,245,367500000,30.7068,175.2991,981.4396,0.01044,0.07012,0.451462 +2025-07-28,Azure / Microsoft,branch,12257,12257000000,319.0301,1819.5376,10184.5229,0.094911,0.636838,4.09927 +2025-07-28,AWS / Anthropic,branch,611,1283940000,156.7108,894.9919,5011.2566,0.03823,0.256863,1.653965 +2025-07-28,Google,branch,211,294840000,5.5487,31.6747,177.3333,0.001321,0.008869,0.057101 +2025-07-28,Other / Unknown,branch,336,504000000,42.1122,240.4102,1345.9743,0.014318,0.096164,0.619148 +2025-07-29,Azure / Microsoft,branch,12580,12579500000,327.4242,1867.4124,10452.493,0.097409,0.653594,4.207128 +2025-07-29,AWS / Anthropic,branch,726,1524705000,186.0973,1062.8212,5950.9697,0.045398,0.30503,1.964118 +2025-07-29,Google,branch,261,366030000,6.8884,39.3226,220.1509,0.001639,0.01101,0.070889 +2025-07-29,Other / Unknown,branch,469,703500000,58.7816,335.5726,1878.7558,0.019986,0.134229,0.864228 +2025-07-30,Azure / Microsoft,branch,12835,12835000000,334.0745,1905.3411,10664.7917,0.099387,0.666869,4.292579 +2025-07-30,AWS / Anthropic,branch,654,1373610000,167.6555,957.4979,5361.2413,0.0409,0.274802,1.769478 +2025-07-30,Google,branch,251,351260000,6.6105,37.7359,211.2674,0.001573,0.010566,0.068028 +2025-07-30,Other / Unknown,branch,417,625500000,52.2642,298.3663,1670.4503,0.01777,0.119347,0.768407 +2025-07-31,Azure / Microsoft,branch,12626,12626000000,328.6345,1874.3153,10491.1305,0.097769,0.65601,4.22268 +2025-07-31,AWS / Anthropic,branch,812,1704990000,208.1019,1188.4918,6654.6275,0.050766,0.341097,2.19636 +2025-07-31,Google,branch,297,415940000,7.8277,44.6844,250.1696,0.001863,0.012512,0.080555 +2025-07-31,Other / Unknown,branch,407,610500000,51.0109,291.2112,1630.3915,0.017344,0.116484,0.74998 +2025-08-01,Azure / Microsoft,branch,12728,12728000000,331.2894,1889.457,10575.8838,0.098559,0.66131,4.256793 +2025-08-01,AWS / Anthropic,branch,658,1381800000,168.6551,963.2068,5393.2071,0.041143,0.27644,1.780028 +2025-08-01,Google,branch,247,345800000,6.5077,37.1493,207.9835,0.001549,0.010402,0.066971 +2025-08-01,Other / Unknown,branch,549,823500000,68.8083,392.8132,2199.2259,0.023395,0.157125,1.011644 +2025-08-02,Azure / Microsoft,branch,13733,13733000000,357.448,2038.6481,11410.9532,0.106341,0.713527,4.592909 +2025-08-02,AWS / Anthropic,branch,845,1774500000,216.5859,1236.945,6925.9271,0.052836,0.355003,2.285902 +2025-08-02,Google,branch,333,466200000,8.7735,50.0839,280.3988,0.002088,0.014023,0.090288 +2025-08-02,Other / Unknown,branch,391,586500000,49.0055,279.7631,1566.2975,0.016662,0.111905,0.720497 +2025-08-03,Azure / Microsoft,branch,15384,15384500000,400.4339,2283.8114,12783.209,0.119129,0.799334,5.145242 +2025-08-03,AWS / Anthropic,branch,975,2048445000,250.0222,1427.9029,7995.1427,0.060993,0.409808,2.638797 +2025-08-03,Google,branch,411,575470000,10.8299,61.8228,346.1199,0.002578,0.01731,0.111451 +2025-08-03,Other / Unknown,branch,257,385500000,32.2108,183.8852,1029.5101,0.010952,0.073554,0.473575 +2025-08-04,Azure / Microsoft,branch,11973,11973000000,311.638,1777.3782,9948.5431,0.092712,0.622082,4.004289 +2025-08-04,AWS / Anthropic,branch,618,1296750000,158.2743,903.9213,5061.2544,0.038611,0.259425,1.670467 +2025-08-04,Google,branch,216,303100000,5.7041,32.562,182.3013,0.001358,0.009117,0.058701 +2025-08-04,Other / Unknown,branch,320,480000000,40.1068,228.9621,1281.8803,0.013636,0.091585,0.589665 +2025-08-05,Azure / Microsoft,branch,13486,13486500000,351.032,2002.0555,11206.1327,0.104432,0.700719,4.510468 +2025-08-05,AWS / Anthropic,branch,800,1680105000,205.0646,1171.1453,6557.5006,0.050026,0.336119,2.164303 +2025-08-05,Google,branch,291,408030000,7.6788,43.8347,245.4121,0.001828,0.012274,0.079023 +2025-08-05,Other / Unknown,branch,404,606000000,50.6349,289.0647,1618.3739,0.017216,0.115626,0.744452 +2025-08-06,Azure / Microsoft,branch,13660,13659500000,355.5349,2027.7371,11349.881,0.105772,0.709708,4.568327 +2025-08-06,AWS / Anthropic,branch,931,1954155000,238.5137,1362.1765,7627.126,0.058185,0.390945,2.517333 +2025-08-06,Google,branch,341,477330000,8.983,51.2796,287.093,0.002138,0.014358,0.092444 +2025-08-06,Other / Unknown,branch,707,1060500000,88.611,505.8632,2832.1543,0.030128,0.202345,1.302791 +2025-08-07,Azure / Microsoft,branch,14442,14441500000,375.8891,2143.8242,11999.6563,0.111827,0.750338,4.829862 +2025-08-07,AWS / Anthropic,branch,945,1985235000,242.3071,1383.8413,7748.4322,0.059111,0.397162,2.55737 +2025-08-07,Google,branch,342,479010000,9.0146,51.4601,288.1034,0.002145,0.014409,0.092769 +2025-08-07,Other / Unknown,branch,1023,1534500000,128.2165,731.9633,4098.0111,0.043594,0.292785,1.885085 +2025-08-08,Azure / Microsoft,branch,16454,16454500000,428.2843,2442.6517,13672.2879,0.127415,0.854928,5.503096 +2025-08-08,AWS / Anthropic,branch,1026,2154075000,262.9148,1501.5341,8407.4198,0.064138,0.43094,2.774869 +2025-08-08,Google,branch,396,554050000,10.4268,59.5216,333.2367,0.002482,0.016666,0.107302 +2025-08-08,Other / Unknown,branch,1010,1515000000,126.5872,722.6617,4045.9348,0.04304,0.289065,1.86113 +2025-08-09,Azure / Microsoft,branch,17997,17997000000,468.4331,2671.6341,14953.974,0.139359,0.935072,6.018975 +2025-08-09,AWS / Anthropic,branch,1144,2402190000,293.1984,1674.4868,9375.8201,0.071526,0.480578,3.094489 +2025-08-09,Google,branch,435,609140000,11.4636,65.4399,366.3709,0.002728,0.018323,0.117971 +2025-08-09,Other / Unknown,branch,824,1236000000,103.2751,589.5775,3300.8418,0.035114,0.235831,1.518387 +2025-08-10,Azure / Microsoft,branch,17430,17429500000,453.6619,2587.3893,14482.4298,0.134964,0.905586,5.829178 +2025-08-10,AWS / Anthropic,branch,1126,2363655000,288.495,1647.6253,9225.4169,0.070378,0.472868,3.044849 +2025-08-10,Google,branch,437,611730000,11.5123,65.7182,367.9286,0.00274,0.018401,0.118473 +2025-08-10,Other / Unknown,branch,711,1066500000,89.1124,508.7252,2848.1778,0.030298,0.20349,1.310162 +2025-08-11,Azure / Microsoft,branch,15521,15521000000,403.9867,2304.0747,12896.6289,0.120186,0.806426,5.190893 +2025-08-11,AWS / Anthropic,branch,968,2033010000,248.1383,1417.1437,7934.8994,0.060533,0.40672,2.618914 +2025-08-11,Google,branch,368,515060000,9.6931,55.3329,309.7859,0.002307,0.015493,0.099751 +2025-08-11,Other / Unknown,branch,806,1209000000,101.0191,576.6984,3228.7361,0.034346,0.230679,1.485219 +2025-08-12,Azure / Microsoft,branch,16260,16259500000,423.2087,2413.7042,13510.2595,0.125905,0.844796,5.437879 +2025-08-12,AWS / Anthropic,branch,1013,2128035000,259.7365,1483.3824,8305.7849,0.063363,0.425731,2.741324 +2025-08-12,Google,branch,388,543410000,10.2266,58.3785,326.8372,0.002434,0.016346,0.105242 +2025-08-12,Other / Unknown,branch,673,1009500000,84.3497,481.536,2695.9545,0.028679,0.192614,1.240139 +2025-08-13,Azure / Microsoft,branch,16501,16501000000,429.4946,2449.5546,13710.9254,0.127775,0.857344,5.518647 +2025-08-13,AWS / Anthropic,branch,1048,2199960000,268.5153,1533.519,8586.5103,0.065504,0.44012,2.833978 +2025-08-13,Google,branch,416,582960000,10.9709,62.6274,350.6248,0.002611,0.017536,0.112901 +2025-08-13,Other / Unknown,branch,663,994500000,83.0963,474.3809,2655.8958,0.028253,0.189752,1.221712 +2025-08-14,Azure / Microsoft,branch,17310,17310500000,450.5646,2569.7239,14383.551,0.134043,0.899403,5.789379 +2025-08-14,AWS / Anthropic,branch,877,1841385000,224.7496,1283.5683,7186.9813,0.054828,0.368384,2.372063 +2025-08-14,Google,branch,325,454510000,8.5535,48.828,273.3677,0.002036,0.013672,0.088024 +2025-08-14,Other / Unknown,branch,613,919500000,76.8296,438.6056,2455.602,0.026122,0.175442,1.129577 +2025-08-15,Azure / Microsoft,branch,17412,17412000000,453.2064,2584.7915,14467.8888,0.134829,0.904677,5.823325 +2025-08-15,AWS / Anthropic,branch,942,1979040000,241.551,1379.523,7724.2529,0.058926,0.395923,2.54939 +2025-08-15,Google,branch,351,490840000,9.2373,52.7309,295.2186,0.002198,0.014765,0.09506 +2025-08-15,Other / Unknown,branch,432,648000000,54.1442,309.0989,1730.5384,0.018409,0.12364,0.796048 +2025-08-16,Azure / Microsoft,branch,19766,19766000000,514.4773,2934.2401,16423.8623,0.153057,1.026984,6.610605 +2025-08-16,AWS / Anthropic,branch,942,1977150000,241.3203,1378.2055,7716.8762,0.05887,0.395545,2.546955 +2025-08-16,Google,branch,362,507500000,9.5508,54.5207,305.2389,0.002273,0.015266,0.098287 +2025-08-16,Other / Unknown,branch,388,582000000,48.6295,277.6166,1554.2799,0.016534,0.111047,0.714969 +2025-08-17,Azure / Microsoft,branch,18462,18462500000,480.5493,2740.737,15340.7648,0.142963,0.959258,6.174658 +2025-08-17,AWS / Anthropic,branch,1040,2184735000,266.657,1522.9061,8527.0867,0.065051,0.437074,2.814365 +2025-08-17,Google,branch,421,589610000,11.096,63.3418,354.6244,0.002641,0.017736,0.114189 +2025-08-17,Other / Unknown,branch,899,1348500000,112.6751,643.2405,3601.2825,0.03831,0.257296,1.65659 +2025-08-18,Azure / Microsoft,branch,16455,16455000000,428.2973,2442.7259,13672.7033,0.127418,0.854954,5.503263 +2025-08-18,AWS / Anthropic,branch,904,1898610000,231.7341,1323.4579,7410.3322,0.056532,0.379832,2.44578 +2025-08-18,Google,branch,366,512260000,9.6404,55.0321,308.1018,0.002294,0.015409,0.099209 +2025-08-18,Other / Unknown,branch,530,795000000,66.4269,379.2185,2123.1143,0.022585,0.151687,0.976633 +2025-08-19,Azure / Microsoft,branch,17884,17884000000,465.4918,2654.8593,14860.0806,0.138484,0.929201,5.981182 +2025-08-19,AWS / Anthropic,branch,1054,2213610000,270.1814,1543.0339,8639.7867,0.065911,0.442851,2.851562 +2025-08-19,Google,branch,395,552860000,10.4044,59.3938,332.5209,0.002476,0.01663,0.107072 +2025-08-19,Other / Unknown,branch,602,903000000,75.451,430.735,2411.5374,0.025653,0.172294,1.109307 +2025-08-20,Azure / Microsoft,branch,18590,18590000000,483.8679,2759.6642,15446.7065,0.143951,0.965882,6.217299 +2025-08-20,AWS / Anthropic,branch,550,1154160000,140.8706,804.5266,4504.7213,0.034365,0.230899,1.486783 +2025-08-20,Google,branch,173,242760000,4.5686,26.0797,146.0094,0.001087,0.007302,0.047015 +2025-08-20,Other / Unknown,branch,543,814500000,68.0563,388.5201,2175.1907,0.023139,0.155408,1.000588 +2025-08-21,Azure / Microsoft,branch,18882,18882500000,491.4812,2803.0855,15689.7491,0.146216,0.98108,6.315124 +2025-08-21,AWS / Anthropic,branch,853,1792245000,218.7518,1249.3144,6995.1864,0.053365,0.358553,2.308761 +2025-08-21,Google,branch,316,442470000,8.327,47.5346,266.1262,0.001982,0.01331,0.085693 +2025-08-21,Other / Unknown,branch,380,570000000,47.6269,271.8925,1522.2329,0.016193,0.108757,0.700227 +2025-08-22,Azure / Microsoft,branch,19842,19842000000,516.4554,2945.5222,16487.0118,0.153645,1.030933,6.636022 +2025-08-22,AWS / Anthropic,branch,895,1879920000,229.4529,1310.4297,7337.3845,0.055975,0.376093,2.421704 +2025-08-22,Google,branch,348,486920000,9.1635,52.3098,292.8609,0.002181,0.014647,0.094301 +2025-08-22,Other / Unknown,branch,303,454500000,37.9762,216.7985,1213.7804,0.012912,0.086719,0.558339 +2025-08-23,Azure / Microsoft,branch,19865,19865000000,517.0541,2948.9365,16506.1229,0.153824,1.032128,6.643714 +2025-08-23,AWS / Anthropic,branch,941,1976520000,241.2434,1377.7664,7714.4173,0.058851,0.395419,2.546143 +2025-08-23,Google,branch,367,513520000,9.6641,55.1675,308.8597,0.0023,0.015447,0.099453 +2025-08-23,Other / Unknown,branch,231,346500000,28.9521,165.282,925.3574,0.009844,0.066113,0.425664 +2025-08-24,Azure / Microsoft,branch,19747,19747000000,513.9827,2931.4196,16408.0749,0.15291,1.025997,6.60425 +2025-08-24,AWS / Anthropic,branch,843,1770510000,216.0989,1234.1637,6910.354,0.052717,0.354205,2.280762 +2025-08-24,Google,branch,305,426860000,8.0332,45.8576,256.7375,0.001912,0.01284,0.082669 +2025-08-24,Other / Unknown,branch,215,322500000,26.9468,153.8339,861.2633,0.009162,0.061534,0.396181 +2025-08-25,Azure / Microsoft,branch,18468,18468000000,480.6924,2741.5535,15345.3349,0.143006,0.959544,6.176497 +2025-08-25,AWS / Anthropic,branch,635,1333710000,162.7855,929.6849,5205.5104,0.039712,0.26682,1.718079 +2025-08-25,Google,branch,200,279860000,5.2668,30.0654,168.3235,0.001253,0.008418,0.0542 +2025-08-25,Other / Unknown,branch,287,430500000,35.9708,205.3504,1149.6864,0.01223,0.08214,0.528856 +2025-08-26,Azure / Microsoft,branch,19759,19759000000,514.2951,2933.2009,16418.0459,0.153003,1.02662,6.608263 +2025-08-26,AWS / Anthropic,branch,931,1954470000,238.5521,1362.3961,7628.3554,0.058195,0.391008,2.517739 +2025-08-26,Google,branch,376,526820000,9.9144,56.5963,316.859,0.00236,0.015847,0.102029 +2025-08-26,Other / Unknown,branch,342,513000000,42.8642,244.7033,1370.0096,0.014574,0.097881,0.630204 +2025-08-27,Azure / Microsoft,branch,19536,19536000000,508.4908,2900.0969,16232.7519,0.151276,1.015034,6.533683 +2025-08-27,AWS / Anthropic,branch,832,1746780000,213.2026,1217.6223,6817.7351,0.052011,0.349458,2.250193 +2025-08-27,Google,branch,318,445480000,8.3836,47.8579,267.9366,0.001995,0.0134,0.086276 +2025-08-27,Other / Unknown,branch,282,423000000,35.3441,201.7729,1129.657,0.012017,0.080709,0.519642 +2025-08-28,Azure / Microsoft,branch,17586,17586500000,457.7484,2610.6958,14612.8834,0.13618,0.913744,5.881686 +2025-08-28,AWS / Anthropic,branch,851,1787625000,218.1879,1246.094,6977.1544,0.053227,0.357629,2.30281 +2025-08-28,Google,branch,315,441350000,8.3059,47.4142,265.4526,0.001977,0.013276,0.085476 +2025-08-28,Other / Unknown,branch,441,661500000,55.2722,315.5384,1766.5913,0.018793,0.126215,0.812632 +2025-08-29,Azure / Microsoft,branch,18262,18262500000,475.3436,2711.0472,15174.5819,0.141415,0.948867,6.107769 +2025-08-29,AWS / Anthropic,branch,699,1468635000,179.2537,1023.7366,5732.1268,0.043729,0.293812,1.891888 +2025-08-29,Google,branch,257,360010000,6.7751,38.6759,216.5302,0.001612,0.010829,0.069723 +2025-08-29,Other / Unknown,branch,327,490500000,40.9842,233.9707,1309.9215,0.013935,0.093588,0.602564 +2025-08-30,Azure / Microsoft,branch,17980,17980000000,467.9906,2669.1104,14939.8484,0.139227,0.934189,6.013289 +2025-08-30,AWS / Anthropic,branch,732,1537410000,187.648,1071.6774,6000.5577,0.045777,0.307571,1.980484 +2025-08-30,Google,branch,259,362460000,6.8212,38.9391,218.0037,0.001623,0.010903,0.070197 +2025-08-30,Other / Unknown,branch,264,396000000,33.0881,188.8938,1057.5513,0.01125,0.075558,0.486474 +2025-08-31,Azure / Microsoft,branch,19128,19128000000,497.8712,2839.5297,15893.7386,0.148117,0.993835,6.39723 +2025-08-31,AWS / Anthropic,branch,648,1360380000,166.0407,948.2757,5309.6042,0.040506,0.272155,1.752435 +2025-08-31,Google,branch,223,312480000,5.8806,33.5697,187.943,0.0014,0.0094,0.060518 +2025-08-31,Other / Unknown,branch,185,277500000,23.1868,132.3687,741.0871,0.007883,0.052947,0.3409 +2025-09-01,Azure / Microsoft,branch,17582,17582000000,457.6313,2610.0278,14609.1443,0.136145,0.91351,5.880181 +2025-09-01,AWS / Anthropic,branch,554,1162350000,141.8702,810.2355,4536.6872,0.034609,0.232538,1.497334 +2025-09-01,Google,branch,184,256900000,4.8347,27.5988,154.514,0.001151,0.007728,0.049754 +2025-09-01,Other / Unknown,branch,191,286500000,23.9388,136.6618,765.1223,0.008139,0.054665,0.351956 +2025-09-02,Azure / Microsoft,branch,18028,18028000000,469.2399,2676.236,14979.7323,0.139599,0.936683,6.029342 +2025-09-02,AWS / Anthropic,branch,603,1265880000,154.5065,882.4029,4940.7679,0.037692,0.25325,1.6307 +2025-09-02,Google,branch,213,298480000,5.6172,32.0657,179.5226,0.001337,0.008978,0.057806 +2025-09-02,Other / Unknown,branch,258,387000000,32.3361,184.6007,1033.516,0.010994,0.07384,0.475417 +2025-09-03,Azure / Microsoft,branch,16930,16930000000,440.6608,2513.2391,14067.3879,0.131097,0.879634,5.662124 +2025-09-03,AWS / Anthropic,branch,461,968520000,118.2124,675.1231,3780.1628,0.028838,0.19376,1.247643 +2025-09-03,Google,branch,165,230720000,4.342,24.7863,138.7679,0.001033,0.00694,0.044683 +2025-09-03,Other / Unknown,branch,477,715500000,59.7842,341.2967,1910.8029,0.020327,0.136519,0.878969 +2025-09-04,Azure / Microsoft,branch,16342,16342500000,425.3691,2426.0254,13579.2254,0.126547,0.849109,5.465638 +2025-09-04,AWS / Anthropic,branch,480,1008525000,123.0951,703.0092,3936.3035,0.030029,0.201764,1.299177 +2025-09-04,Google,branch,180,252350000,4.749,27.11,151.7774,0.00113,0.007591,0.048872 +2025-09-04,Other / Unknown,branch,450,675000000,56.4002,321.978,1802.6442,0.019176,0.128791,0.829216 +2025-09-05,Azure / Microsoft,branch,16249,16249000000,422.9354,2412.1455,13501.5349,0.125823,0.844251,5.434368 +2025-09-05,AWS / Anthropic,branch,521,1094100000,133.54,762.6607,4270.3053,0.032577,0.218884,1.409414 +2025-09-05,Google,branch,178,249200000,4.6898,26.7716,149.8828,0.001116,0.007496,0.048262 +2025-09-05,Other / Unknown,branch,403,604500000,50.5095,288.3492,1614.368,0.017173,0.11534,0.742609 +2025-09-06,Azure / Microsoft,branch,17870,17869500000,465.1144,2652.7068,14848.0323,0.138372,0.928447,5.976333 +2025-09-06,AWS / Anthropic,branch,493,1035405000,126.376,721.7464,4041.217,0.030829,0.207141,1.333804 +2025-09-06,Google,branch,169,237230000,4.4645,25.4856,142.6834,0.001063,0.007136,0.045944 +2025-09-06,Other / Unknown,branch,406,609000000,50.8855,290.4957,1626.3857,0.017301,0.116198,0.748137 +2025-09-07,Azure / Microsoft,branch,17492,17492500000,455.3017,2596.7416,14534.7775,0.135452,0.90886,5.850248 +2025-09-07,AWS / Anthropic,branch,486,1021545000,124.6843,712.0851,3987.121,0.030417,0.204368,1.315949 +2025-09-07,Google,branch,175,245070000,4.612,26.3279,147.3988,0.001098,0.007372,0.047462 +2025-09-07,Other / Unknown,branch,283,424500000,35.4695,202.4884,1133.6629,0.01206,0.080995,0.521485 +2025-09-08,Azure / Microsoft,branch,10062,10061500000,261.8847,1493.6182,8360.2494,0.077911,0.522766,3.365 +2025-09-08,AWS / Anthropic,branch,316,663705000,81.0083,462.6467,2590.4607,0.019762,0.13278,0.854982 +2025-09-08,Google,branch,110,154630000,2.91,16.6119,93.0031,0.000693,0.004651,0.029947 +2025-09-08,Other / Unknown,branch,207,310500000,25.9441,148.1099,829.2163,0.008821,0.059244,0.38144 +2025-09-09,Azure / Microsoft,branch,16878,16877500000,439.2943,2505.4456,14023.7648,0.13069,0.876906,5.644565 +2025-09-09,AWS / Anthropic,branch,411,863625000,105.4094,602.0043,3370.7545,0.025715,0.172775,1.112518 +2025-09-09,Google,branch,147,206150000,3.8796,22.1467,123.9901,0.000923,0.006201,0.039925 +2025-09-09,Other / Unknown,branch,248,372000000,31.0828,177.4457,993.4572,0.010568,0.070978,0.45699 +2025-09-10,Azure / Microsoft,branch,17058,17058000000,443.9924,2532.2406,14173.745,0.132088,0.886284,5.704932 +2025-09-10,AWS / Anthropic,branch,463,971880000,118.6225,677.4652,3793.277,0.028938,0.194433,1.251971 +2025-09-10,Google,branch,173,242480000,4.5633,26.0496,145.841,0.001086,0.007294,0.046961 +2025-09-10,Other / Unknown,branch,268,402000000,33.5895,191.7558,1073.5748,0.01142,0.076702,0.493844 +2025-09-11,Azure / Microsoft,branch,17308,17308000000,450.4995,2569.3528,14381.4737,0.134024,0.899273,5.788543 +2025-09-11,AWS / Anthropic,branch,407,855540000,104.4226,596.3685,3339.1985,0.025474,0.171158,1.102102 +2025-09-11,Google,branch,156,217840000,4.0996,23.4026,131.0212,0.000976,0.006553,0.042189 +2025-09-11,Other / Unknown,branch,269,403500000,33.7148,192.4713,1077.5806,0.011463,0.076989,0.495687 +2025-09-12,Azure / Microsoft,branch,17256,17255500000,449.133,2561.5592,14337.8506,0.133617,0.896546,5.770985 +2025-09-12,AWS / Anthropic,branch,404,848505000,103.564,591.4646,3311.7406,0.025264,0.16975,1.09304 +2025-09-12,Google,branch,149,209230000,3.9376,22.4776,125.8426,0.000937,0.006294,0.040521 +2025-09-12,Other / Unknown,branch,278,417000000,34.8428,198.9109,1113.6335,0.011847,0.079564,0.512271 +2025-09-13,Azure / Microsoft,branch,18440,18440500000,479.9766,2737.4711,15322.4847,0.142793,0.958115,6.1673 +2025-09-13,AWS / Anthropic,branch,439,921165000,112.4325,642.1135,3595.3348,0.027428,0.184287,1.18664 +2025-09-13,Google,branch,175,244790000,4.6068,26.2978,147.2304,0.001096,0.007363,0.047408 +2025-09-13,Other / Unknown,branch,161,241500000,20.1787,115.1966,644.946,0.006861,0.046079,0.296675 +2025-09-14,Azure / Microsoft,branch,18271,18271000000,475.5648,2712.309,15181.6446,0.141481,0.949308,6.110612 +2025-09-14,AWS / Anthropic,branch,392,824250000,100.6035,574.5573,3217.0726,0.024542,0.164898,1.061795 +2025-09-14,Google,branch,150,209300000,3.9389,22.4851,125.8847,0.000937,0.006296,0.040535 +2025-09-14,Other / Unknown,branch,238,357000000,29.8295,170.2906,953.3985,0.010142,0.068116,0.438563 +2025-09-15,Azure / Microsoft,branch,14830,14829500000,385.9881,2201.4223,12322.0513,0.114831,0.770498,4.959626 +2025-09-15,AWS / Anthropic,branch,375,788445000,96.2334,549.5988,3077.3247,0.023476,0.157735,1.015671 +2025-09-15,Google,branch,129,180670000,3.4001,19.4094,108.665,0.000809,0.005435,0.03499 +2025-09-15,Other / Unknown,branch,280,420000000,35.0935,200.3419,1121.6453,0.011932,0.080137,0.515957 +2025-09-16,Azure / Microsoft,branch,17761,17761000000,462.2904,2636.6001,14757.8781,0.137531,0.92281,5.940046 +2025-09-16,AWS / Anthropic,branch,468,983220000,120.0066,685.37,3837.5374,0.029276,0.196701,1.266579 +2025-09-16,Google,branch,181,253120000,4.7635,27.1927,152.2405,0.001134,0.007614,0.049021 +2025-09-16,Other / Unknown,branch,271,406500000,33.9655,193.9023,1085.5924,0.011548,0.077561,0.499373 +2025-09-17,Azure / Microsoft,branch,16456,16455500000,428.3103,2442.8001,13673.1188,0.127422,0.85498,5.50343 +2025-09-17,AWS / Anthropic,branch,362,759885000,92.7475,529.6906,2965.8541,0.022626,0.152021,0.97888 +2025-09-17,Google,branch,138,192710000,3.6267,20.7028,115.9066,0.000863,0.005797,0.037322 +2025-09-17,Other / Unknown,branch,196,294000000,24.5654,140.2393,785.1517,0.008352,0.056096,0.36117 +2025-09-18,Azure / Microsoft,branch,16390,16389500000,426.5924,2433.0025,13618.2784,0.126911,0.851551,5.481357 +2025-09-18,AWS / Anthropic,branch,317,665805000,81.2646,464.1105,2598.657,0.019824,0.1332,0.857687 +2025-09-18,Google,branch,122,171430000,3.2262,18.4167,103.1076,0.000768,0.005157,0.033201 +2025-09-18,Other / Unknown,branch,201,301500000,25.1921,143.8168,805.1811,0.008565,0.057527,0.370383 +2025-09-19,Azure / Microsoft,branch,18436,18436500000,479.8725,2736.8773,15319.161,0.142762,0.957907,6.165962 +2025-09-19,AWS / Anthropic,branch,304,638295000,77.9069,444.9342,2491.2847,0.019005,0.127696,0.822249 +2025-09-19,Google,branch,105,146370000,2.7546,15.7245,88.0351,0.000656,0.004403,0.028347 +2025-09-19,Other / Unknown,branch,198,297000000,24.8161,141.6703,793.1634,0.008437,0.056668,0.364855 +2025-09-20,Azure / Microsoft,branch,19253,19253000000,501.1247,2858.0858,15997.603,0.149085,1.00033,6.439035 +2025-09-20,AWS / Anthropic,branch,306,641550000,78.3041,447.2032,2503.989,0.019102,0.128347,0.826442 +2025-09-20,Google,branch,108,150500000,2.8323,16.1682,90.5191,0.000674,0.004527,0.029147 +2025-09-20,Other / Unknown,branch,203,304500000,25.4428,145.2479,813.1928,0.008651,0.058099,0.374069 +2025-09-21,Azure / Microsoft,branch,19901,19901000000,517.9911,2954.2807,16536.0358,0.154102,1.033998,6.655754 +2025-09-21,AWS / Anthropic,branch,282,592830000,72.3576,413.2421,2313.8334,0.017652,0.1186,0.763681 +2025-09-21,Google,branch,109,152180000,2.8639,16.3487,91.5296,0.000682,0.004578,0.029473 +2025-09-21,Other / Unknown,branch,202,303000000,25.3174,144.5323,809.187,0.008608,0.057813,0.372226 +2025-09-22,Azure / Microsoft,branch,17884,17884000000,465.4918,2654.8593,14860.0806,0.138484,0.929201,5.981182 +2025-09-22,AWS / Anthropic,branch,309,649320000,79.2525,452.6194,2534.3156,0.019334,0.129902,0.836451 +2025-09-22,Google,branch,101,141120000,2.6558,15.1605,84.8775,0.000632,0.004245,0.027331 +2025-09-22,Other / Unknown,branch,206,309000000,25.8188,147.3944,825.2105,0.008778,0.058958,0.379597 +2025-09-23,Azure / Microsoft,branch,18810,18810500000,489.6072,2792.3972,15629.9232,0.145658,0.977339,6.291044 +2025-09-23,AWS / Anthropic,branch,388,815535000,99.5398,568.4823,3183.0577,0.024283,0.163154,1.050568 +2025-09-23,Google,branch,133,186410000,3.5081,20.026,112.1174,0.000835,0.005607,0.036102 +2025-09-23,Other / Unknown,branch,199,298500000,24.9414,142.3858,797.1693,0.00848,0.056954,0.366698 +2025-09-24,Azure / Microsoft,branch,18362,18362500000,477.9464,2725.8921,15257.6733,0.142189,0.954062,6.141214 +2025-09-24,AWS / Anthropic,branch,443,929355000,113.4321,647.8225,3627.3006,0.027672,0.185925,1.197191 +2025-09-24,Google,branch,166,232330000,4.3723,24.9592,139.7363,0.001041,0.006989,0.044995 +2025-09-24,Other / Unknown,branch,208,312000000,26.0694,148.8254,833.2222,0.008864,0.05953,0.383282 +2025-09-25,Azure / Microsoft,branch,18266,18266000000,475.4347,2711.5668,15177.4901,0.141442,0.949048,6.10894 +2025-09-25,AWS / Anthropic,branch,449,942690000,115.0597,657.1179,3679.3475,0.028069,0.188593,1.214369 +2025-09-25,Google,branch,163,228340000,4.2972,24.5306,137.3364,0.001023,0.006869,0.044222 +2025-09-25,Other / Unknown,branch,222,333000000,27.8241,158.8425,889.3045,0.00946,0.063537,0.40908 +2025-09-26,Azure / Microsoft,branch,20626,20626500000,536.8747,3061.9803,17138.8645,0.15972,1.071693,6.898393 +2025-09-26,AWS / Anthropic,branch,420,882945000,107.7675,615.4716,3446.161,0.02629,0.17664,1.137405 +2025-09-26,Google,branch,154,215670000,4.0588,23.1694,129.716,0.000966,0.006487,0.041769 +2025-09-26,Other / Unknown,branch,177,265500000,22.1841,126.6447,709.0401,0.007543,0.050658,0.326158 +2025-09-27,Azure / Microsoft,branch,20800,20800500000,541.4037,3087.8104,17283.4437,0.161068,1.080734,6.956586 +2025-09-27,AWS / Anthropic,branch,361,757155000,92.4143,527.7876,2955.1988,0.022544,0.151475,0.975363 +2025-09-27,Google,branch,125,174930000,3.2921,18.7927,105.2127,0.000784,0.005262,0.033878 +2025-09-27,Other / Unknown,branch,131,196500000,16.4187,93.7314,524.7698,0.005582,0.037493,0.241394 +2025-09-28,Azure / Microsoft,branch,20112,20112500000,523.4961,2985.6776,16711.7743,0.15574,1.044987,6.726489 +2025-09-28,AWS / Anthropic,branch,309,648165000,79.1115,451.8143,2529.8076,0.019299,0.129671,0.834963 +2025-09-28,Google,branch,130,181790000,3.4212,19.5297,109.3387,0.000814,0.005468,0.035207 +2025-09-28,Other / Unknown,branch,86,129000000,10.7787,61.5336,344.5053,0.003665,0.024613,0.158472 +2025-09-29,Azure / Microsoft,branch,17000,17000000000,442.4827,2523.6306,14125.5519,0.131639,0.883271,5.685535 +2025-09-29,AWS / Anthropic,branch,360,756630000,92.3502,527.4216,2953.1497,0.022529,0.15137,0.974687 +2025-09-29,Google,branch,125,174580000,3.2855,18.7551,105.0022,0.000782,0.005251,0.033811 +2025-09-29,Other / Unknown,branch,238,357000000,29.8295,170.2906,953.3985,0.010142,0.068116,0.438563 +2025-09-30,Azure / Microsoft,branch,18703,18703000000,486.8091,2776.439,15540.5998,0.144826,0.971754,6.255091 +2025-09-30,AWS / Anthropic,branch,371,778680000,95.0415,542.7919,3039.2116,0.023185,0.155781,1.003092 +2025-09-30,Google,branch,137,192080000,3.6148,20.6352,115.5277,0.00086,0.005778,0.0372 +2025-09-30,Other / Unknown,branch,290,435000000,36.3468,207.4969,1161.704,0.012358,0.082999,0.534384 +2025-10-01,Azure / Microsoft,branch,19622,19622000000,510.7292,2912.8635,16304.2106,0.151942,1.019502,6.562445 +2025-10-01,AWS / Anthropic,branch,350,736050000,89.8383,513.076,2872.8254,0.021916,0.147253,0.948176 +2025-10-01,Google,branch,134,186900000,3.5173,20.0787,112.4121,0.000837,0.005622,0.036197 +2025-10-01,Other / Unknown,branch,164,246000000,20.5547,117.3431,656.9637,0.006989,0.046937,0.302203 +2025-10-02,Azure / Microsoft,branch,20806,20806500000,541.5598,3088.7011,17288.4292,0.161114,1.081045,6.958593 +2025-10-02,AWS / Anthropic,branch,423,888615000,108.4596,619.424,3468.2912,0.026459,0.177775,1.14471 +2025-10-02,Google,branch,158,221690000,4.172,23.8162,133.3368,0.000993,0.006669,0.042934 +2025-10-02,Other / Unknown,branch,184,276000000,23.0614,131.6532,737.0812,0.007841,0.052661,0.339057 +2025-10-03,Azure / Microsoft,branch,21608,21608500000,562.4346,3207.7571,17954.8228,0.167324,1.122715,7.226816 +2025-10-03,AWS / Anthropic,branch,518,1088115000,132.8095,758.4888,4246.9457,0.032399,0.217686,1.401704 +2025-10-03,Google,branch,200,280490000,5.2786,30.133,168.7024,0.001256,0.008437,0.054322 +2025-10-03,Other / Unknown,branch,167,250500000,20.9308,119.4896,668.9813,0.007116,0.047796,0.307731 +2025-10-04,Azure / Microsoft,branch,24098,24098500000,627.2453,3577.3948,20023.8007,0.186605,1.252088,8.05958 +2025-10-04,AWS / Anthropic,branch,720,1511895000,184.5338,1053.8917,5900.9719,0.045017,0.302467,1.947616 +2025-10-04,Google,branch,286,399770000,7.5234,42.9473,240.444,0.001791,0.012025,0.077423 +2025-10-04,Other / Unknown,branch,184,276000000,23.0614,131.6532,737.0812,0.007841,0.052661,0.339057 +2025-10-05,Azure / Microsoft,branch,23994,23993500000,624.5123,3561.8076,19936.5547,0.185792,1.246633,8.024463 +2025-10-05,AWS / Anthropic,branch,683,1435245000,175.1783,1000.4616,5601.8046,0.042735,0.287132,1.848876 +2025-10-05,Google,branch,277,387870000,7.2994,41.6689,233.2867,0.001737,0.011667,0.075118 +2025-10-05,Other / Unknown,branch,179,268500000,22.4348,128.0757,717.0518,0.007628,0.05123,0.329844 +2025-10-06,Azure / Microsoft,branch,21084,21083500000,548.7697,3129.8215,17518.5926,0.163259,1.095438,7.051234 +2025-10-06,AWS / Anthropic,branch,704,1478295000,180.4328,1030.4703,5769.83,0.044017,0.295745,1.904332 +2025-10-06,Google,branch,271,378770000,7.1282,40.6913,227.8135,0.001697,0.011394,0.073356 +2025-10-06,Other / Unknown,branch,167,250500000,20.9308,119.4896,668.9813,0.007116,0.047796,0.307731 +2025-10-07,Azure / Microsoft,branch,22917,22917000000,596.4928,3402.0024,19042.0749,0.177457,1.190701,7.664435 +2025-10-07,AWS / Anthropic,branch,707,1484070000,181.1376,1034.4959,5792.37,0.044189,0.2969,1.911772 +2025-10-07,Google,branch,267,374220000,7.0425,40.2025,225.0768,0.001676,0.011257,0.072475 +2025-10-07,Other / Unknown,branch,227,340500000,28.4508,162.42,909.3339,0.009673,0.064968,0.418294 +2025-10-08,Azure / Microsoft,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-10-08,AWS / Anthropic,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-10-08,Google,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-10-08,Other / Unknown,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-10-09,Azure / Microsoft,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-10-09,AWS / Anthropic,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-10-09,Google,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-10-09,Other / Unknown,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-10-10,Azure / Microsoft,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-10-10,AWS / Anthropic,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-10-10,Google,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-10-10,Other / Unknown,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-10-11,Azure / Microsoft,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-10-11,AWS / Anthropic,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-10-11,Google,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-10-11,Other / Unknown,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-10-12,Azure / Microsoft,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-10-12,AWS / Anthropic,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-10-12,Google,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-10-12,Other / Unknown,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-10-13,Azure / Microsoft,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-10-13,AWS / Anthropic,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-10-13,Google,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-10-13,Other / Unknown,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-10-14,Azure / Microsoft,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-10-14,AWS / Anthropic,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-10-14,Google,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-10-14,Other / Unknown,branch,0,0,0.0,0.0,0.0,0.0,0.0,0.0 +2025-10-15,Azure / Microsoft,branch,23168,23168500000,603.0389,3439.3373,19251.05,0.179404,1.203768,7.748548 +2025-10-15,AWS / Anthropic,branch,628,1318485000,160.9272,919.0721,5146.0868,0.039258,0.263774,1.698466 +2025-10-15,Google,branch,252,352310000,6.6302,37.8487,211.8989,0.001578,0.010598,0.068231 +2025-10-15,Other / Unknown,branch,267,400500000,33.4641,191.0403,1069.5689,0.011378,0.076416,0.492002 +2025-10-16,Azure / Microsoft,branch,21236,21236000000,552.739,3152.4599,17645.3071,0.16444,1.103361,7.102236 +2025-10-16,AWS / Anthropic,branch,542,1139250000,139.0507,794.1333,4446.5272,0.033921,0.227916,1.467576 +2025-10-16,Google,branch,202,283500000,5.3353,30.4564,170.5128,0.00127,0.008528,0.054905 +2025-10-16,Other / Unknown,branch,242,363000000,30.3308,173.1526,969.422,0.010312,0.069261,0.445934 +2025-10-17,Azure / Microsoft,branch,21208,21207500000,551.9972,3148.2291,17621.626,0.164219,1.10188,7.092704 +2025-10-17,AWS / Anthropic,branch,534,1120875000,136.808,781.3247,4374.809,0.033374,0.22424,1.443906 +2025-10-17,Google,branch,197,275450000,5.1838,29.5916,165.671,0.001234,0.008286,0.053346 +2025-10-17,Other / Unknown,branch,257,385500000,32.2108,183.8852,1029.5101,0.010952,0.073554,0.473575 +2025-10-18,Azure / Microsoft,branch,22464,22464500000,584.7149,3334.8293,18666.0859,0.173953,1.16719,7.5131 +2025-10-18,AWS / Anthropic,branch,541,1135785000,138.6278,791.718,4433.0032,0.033818,0.227223,1.463113 +2025-10-18,Google,branch,209,292110000,5.4973,31.3814,175.6913,0.001308,0.008787,0.056573 +2025-10-18,Other / Unknown,branch,210,315000000,26.3201,150.2564,841.234,0.008949,0.060103,0.386968 +2025-10-19,Azure / Microsoft,branch,23142,23142500000,602.3622,3435.4776,19229.4462,0.179203,1.202417,7.739852 +2025-10-19,AWS / Anthropic,branch,558,1172745000,143.139,817.4815,4577.2592,0.034919,0.234617,1.510724 +2025-10-19,Google,branch,227,317870000,5.9821,34.1488,191.1848,0.001424,0.009562,0.061562 +2025-10-19,Other / Unknown,branch,207,310500000,25.9441,148.1099,829.2163,0.008821,0.059244,0.38144 +2025-10-20,Azure / Microsoft,branch,18882,18882500000,491.4812,2803.0855,15689.7491,0.146216,0.98108,6.315124 +2025-10-20,AWS / Anthropic,branch,1064,2234085000,272.6804,1557.3064,8719.7012,0.06652,0.446947,2.877937 +2025-10-20,Google,branch,145,202510000,3.8111,21.7557,121.8008,0.000907,0.006092,0.03922 +2025-10-20,Other / Unknown,branch,261,391500000,32.7121,186.7472,1045.5336,0.011122,0.074699,0.480945 +2025-10-21,Azure / Microsoft,branch,19449,19449000000,506.2263,2887.1818,16160.4623,0.150602,1.010514,6.504586 +2025-10-21,AWS / Anthropic,branch,4583,9624930000,1174.7673,6709.2187,37566.3925,0.286584,1.925546,12.398788 +2025-10-21,Google,branch,195,272580000,5.1298,29.2833,163.9449,0.001221,0.008199,0.05279 +2025-10-21,Other / Unknown,branch,377,565500000,47.2509,269.746,1510.2153,0.016065,0.107898,0.694699 +2025-10-22,Azure / Microsoft,branch,20407,20407000000,531.1615,3029.3958,16956.4787,0.158021,1.060289,6.824983 +2025-10-22,AWS / Anthropic,branch,5215,10951290000,1336.6557,7633.7802,42743.2157,0.326077,2.190895,14.107398 +2025-10-22,Google,branch,199,278740000,5.2457,29.945,167.6498,0.001248,0.008385,0.053983 +2025-10-22,Other / Unknown,branch,236,354000000,29.5788,168.8596,945.3867,0.010057,0.067544,0.434878 +2025-10-23,Azure / Microsoft,branch,20980,20979500000,546.0627,3114.3828,17432.1774,0.162454,1.090034,7.016451 +2025-10-23,AWS / Anthropic,branch,5615,11791605000,1439.22,8219.5358,46022.9905,0.351098,2.359007,15.189888 +2025-10-23,Google,branch,201,282030000,5.3076,30.2985,169.6286,0.001263,0.008484,0.05462 +2025-10-23,Other / Unknown,branch,297,445500000,37.2241,212.5055,1189.7452,0.012656,0.085002,0.547283 +2025-10-24,Azure / Microsoft,branch,20447,20447000000,532.2026,3035.3338,16989.7153,0.15833,1.062367,6.83836 +2025-10-24,AWS / Anthropic,branch,5986,12570600000,1534.3,8762.5473,49063.4315,0.374292,2.514851,16.193386 +2025-10-24,Google,branch,189,264600000,4.9796,28.426,159.1452,0.001185,0.007959,0.051245 +2025-10-24,Other / Unknown,branch,344,516000000,43.1148,246.1343,1378.0213,0.014659,0.098454,0.63389 +2025-10-25,Azure / Microsoft,branch,23339,23339000000,607.4768,3464.6478,19392.7209,0.180724,1.212627,7.80557 +2025-10-25,AWS / Anthropic,branch,6337,13307280000,1624.2152,9276.0625,51938.7158,0.396227,2.66223,17.142373 +2025-10-25,Google,branch,125,175280000,3.2986,18.8303,105.4232,0.000785,0.005272,0.033946 +2025-10-25,Other / Unknown,branch,194,291000000,24.3148,138.8083,777.1399,0.008267,0.055523,0.357484 +2025-10-26,Azure / Microsoft,branch,24056,24056500000,626.1521,3571.1599,19988.9023,0.18628,1.249906,8.045533 +2025-10-26,AWS / Anthropic,branch,6145,12903975000,1574.9899,8994.932,50364.6042,0.384219,2.581545,16.622838 +2025-10-26,Google,branch,121,169050000,3.1814,18.161,101.6761,0.000757,0.005085,0.03274 +2025-10-26,Other / Unknown,branch,257,385500000,32.2108,183.8852,1029.5101,0.010952,0.073554,0.473575 +2025-10-27,Azure / Microsoft,branch,18983,18983000000,494.0971,2818.0046,15773.256,0.146994,0.986302,6.348736 +2025-10-27,AWS / Anthropic,branch,5035,10574340000,1290.6472,7371.0209,41271.9684,0.314853,2.115483,13.621813 +2025-10-27,Google,branch,106,147840000,2.7822,15.8825,88.9192,0.000662,0.004447,0.028632 +2025-10-27,Other / Unknown,branch,262,393000000,32.8375,187.4627,1049.5395,0.011165,0.074985,0.482788 +2025-10-28,Azure / Microsoft,branch,19898,19897500000,517.9,2953.7611,16533.1276,0.154075,1.033816,6.654584 +2025-10-28,AWS / Anthropic,branch,4899,10287795000,1255.673,7171.2799,40153.5746,0.306321,2.058157,13.252687 +2025-10-28,Google,branch,204,284970000,5.3629,30.6143,171.3969,0.001276,0.008572,0.05519 +2025-10-28,Other / Unknown,branch,260,390000000,32.5868,186.0317,1041.5278,0.01108,0.074413,0.479103 +2025-10-29,Azure / Microsoft,branch,22383,22383000000,582.5936,3322.7307,18598.3664,0.173322,1.162956,7.485842 +2025-10-29,AWS / Anthropic,branch,5861,12307680000,1502.2094,8579.2745,48037.2468,0.366464,2.462252,15.854693 +2025-10-29,Google,branch,205,287280000,5.4064,30.8625,172.7863,0.001287,0.008641,0.055637 +2025-10-29,Other / Unknown,branch,178,267000000,22.3094,127.3602,713.0459,0.007585,0.050944,0.328001 +2025-10-30,Azure / Microsoft,branch,22822,22822000000,594.0201,3387.8998,18963.138,0.176721,1.185765,7.632663 +2025-10-30,AWS / Anthropic,branch,6724,14120400000,1723.4602,9842.8614,55112.3477,0.420438,2.824901,18.18983 +2025-10-30,Google,branch,267,373800000,7.0346,40.1573,224.8242,0.001674,0.011244,0.072393 +2025-10-30,Other / Unknown,branch,265,397500000,33.2135,189.6093,1061.5571,0.011293,0.075844,0.488316 +2025-10-31,Azure / Microsoft,branch,22098,22097500000,575.1625,3280.3486,18361.1402,0.171111,1.148122,7.390359 +2025-10-31,AWS / Anthropic,branch,6317,13266015000,1619.1786,9247.298,51777.6573,0.394999,2.653975,17.089216 +2025-10-31,Google,branch,273,382690000,7.2019,41.1124,230.1712,0.001714,0.011511,0.074115 +2025-10-31,Other / Unknown,branch,277,415500000,34.7175,198.1953,1109.6277,0.011804,0.079278,0.510429 +2025-11-01,Azure / Microsoft,branch,24134,24133500000,628.1563,3582.5905,20052.8828,0.186877,1.253907,8.071285 +2025-11-01,AWS / Anthropic,branch,6731,14134575000,1725.1904,9852.7423,55167.6732,0.42086,2.827737,18.208091 +2025-11-01,Google,branch,253,353850000,6.6592,38.0141,212.8252,0.001585,0.010644,0.06853 +2025-11-01,Other / Unknown,branch,231,346500000,28.9521,165.282,925.3574,0.009844,0.066113,0.425664 +2025-11-02,Azure / Microsoft,branch,22790,22790000000,593.1872,3383.1494,18936.5487,0.176473,1.184102,7.621961 +2025-11-02,AWS / Anthropic,branch,7521,15794520000,1927.7943,11009.8348,61646.4887,0.470285,3.159823,20.346424 +2025-11-02,Google,branch,285,398720000,7.5036,42.8345,239.8125,0.001786,0.011994,0.07722 +2025-11-02,Other / Unknown,branch,303,454500000,37.9762,216.7985,1213.7804,0.012912,0.086719,0.558339 +2025-11-03,Azure / Microsoft,branch,18684,18684000000,486.3146,2773.6184,15524.8125,0.144679,0.970766,6.248737 +2025-11-03,AWS / Anthropic,branch,6562,13779570000,1681.8604,9605.2801,53782.0779,0.41029,2.756715,17.750775 +2025-11-03,Google,branch,242,339220000,6.3839,36.4424,204.0259,0.001519,0.010204,0.065696 +2025-11-03,Other / Unknown,branch,284,426000000,35.5948,203.2039,1137.6688,0.012102,0.081282,0.523328 +2025-11-04,Azure / Microsoft,branch,18898,18898500000,491.8977,2805.4607,15703.0437,0.14634,0.981911,6.320475 +2025-11-04,AWS / Anthropic,branch,9034,18970665000,2315.4576,13223.8199,74043.0785,0.564856,3.795236,24.437918 +2025-11-04,Google,branch,270,377790000,7.1097,40.586,227.224,0.001692,0.011364,0.073166 +2025-11-04,Other / Unknown,branch,357,535500000,44.7442,255.4359,1430.0977,0.015213,0.102174,0.657845 +2025-11-05,Azure / Microsoft,branch,18966,18966000000,493.6546,2815.481,15759.1304,0.146862,0.985418,6.34305 +2025-11-05,AWS / Anthropic,branch,19604,41169240000,5024.8965,28697.7085,160684.7873,1.225823,8.236242,53.034014 +2025-11-05,Google,branch,250,349440000,6.5762,37.5403,210.1728,0.001565,0.010511,0.067676 +2025-11-05,Other / Unknown,branch,291,436500000,36.4721,208.2124,1165.7099,0.012401,0.083285,0.536227 +2025-11-06,Azure / Microsoft,branch,20098,20098500000,523.1317,2983.5993,16700.1415,0.155632,1.04426,6.721807 +2025-11-06,AWS / Anthropic,branch,22068,46342695000,5656.3406,32303.9519,180876.9384,1.379864,9.271234,59.698434 +2025-11-06,Google,branch,243,339570000,6.3905,36.48,204.2364,0.001521,0.010214,0.065764 +2025-11-06,Other / Unknown,branch,311,466500000,38.9788,222.5226,1245.8274,0.013253,0.089009,0.573081 +2025-11-07,Azure / Microsoft,branch,20483,20483000000,533.1396,3040.6779,17019.6282,0.158609,1.064237,6.8504 +2025-11-07,AWS / Anthropic,branch,24285,50998080000,6224.5519,35549.066,199047.0467,1.518479,10.202582,65.695478 +2025-11-07,Google,branch,246,344680000,6.4866,37.029,207.3098,0.001544,0.010368,0.066754 +2025-11-07,Other / Unknown,branch,281,421500000,35.2188,201.0574,1125.6512,0.011974,0.080423,0.5178 +2025-11-08,Azure / Microsoft,branch,20378,20378500000,530.4197,3025.165,16932.7976,0.1578,1.058808,6.815451 +2025-11-08,AWS / Anthropic,branch,27401,57541365000,7023.1902,40110.1725,224585.6857,1.713307,11.511619,74.124506 +2025-11-08,Google,branch,269,376390000,7.0834,40.4356,226.382,0.001686,0.011322,0.072895 +2025-11-08,Other / Unknown,branch,242,363000000,30.3308,173.1526,969.422,0.010312,0.069261,0.445934 +2025-11-09,Azure / Microsoft,branch,21022,21022500000,547.182,3120.7661,17467.9068,0.162787,1.092268,7.030832 +2025-11-09,AWS / Anthropic,branch,27980,58758105000,7171.699,40958.3215,229334.6587,1.749536,11.755038,75.691904 +2025-11-09,Google,branch,237,332430000,6.2561,35.713,199.942,0.001489,0.01,0.064381 +2025-11-09,Other / Unknown,branch,277,415500000,34.7175,198.1953,1109.6277,0.011804,0.079278,0.510429 +2025-11-10,Azure / Microsoft,branch,18366,18366500000,478.0505,2726.4859,15260.997,0.14222,0.95427,6.142551 +2025-11-10,AWS / Anthropic,branch,21958,46111065000,5628.0691,32142.4904,179972.8796,1.372967,9.224895,59.400049 +2025-11-10,Google,branch,267,373590000,7.0307,40.1348,224.6979,0.001673,0.011238,0.072353 +2025-11-10,Other / Unknown,branch,348,522000000,43.6162,248.9963,1394.0448,0.014829,0.099599,0.641261 +2025-11-11,Azure / Microsoft,branch,17428,17428500000,453.6359,2587.2409,14481.5989,0.134957,0.905534,5.828844 +2025-11-11,AWS / Anthropic,branch,19613,41186775000,5027.0367,28709.9315,160753.2269,1.226346,8.23975,53.056603 +2025-11-11,Google,branch,238,332850000,6.264,35.7581,200.1946,0.001491,0.010012,0.064463 +2025-11-11,Other / Unknown,branch,318,477000000,39.8562,227.5311,1273.8686,0.013551,0.091012,0.58598 +2025-11-12,Azure / Microsoft,branch,18142,18142500000,472.2202,2693.2334,15074.8721,0.140486,0.942632,6.067636 +2025-11-12,AWS / Anthropic,branch,21286,44700495000,5455.9025,31159.2289,174467.3822,1.330967,8.942699,57.58296 +2025-11-12,Google,branch,217,303170000,5.7054,32.5696,182.3434,0.001358,0.009119,0.058715 +2025-11-12,Other / Unknown,branch,298,447000000,37.3495,213.221,1193.751,0.012699,0.085288,0.549125 +2025-11-13,Azure / Microsoft,branch,18480,18480000000,481.0048,2743.3349,15355.3058,0.143099,0.960167,6.180511 +2025-11-13,AWS / Anthropic,branch,24768,52012170000,6348.3263,36255.9545,203005.0706,1.548674,10.405459,67.001824 +2025-11-13,Google,branch,178,249620000,4.6977,26.8167,150.1354,0.001118,0.007509,0.048344 +2025-11-13,Other / Unknown,branch,337,505500000,42.2375,241.1257,1349.9802,0.014361,0.09645,0.620991 +2025-11-14,Azure / Microsoft,branch,19284,19283500000,501.9186,2862.6135,16022.9459,0.149321,1.001915,6.449236 +2025-11-14,AWS / Anthropic,branch,26329,55290795000,6748.4977,38541.3749,215801.643,1.646296,11.061375,71.225332 +2025-11-14,Google,branch,202,282170000,5.3102,30.3135,169.7128,0.001264,0.008488,0.054648 +2025-11-14,Other / Unknown,branch,347,520500000,43.4908,248.2808,1390.039,0.014787,0.099312,0.639418 +2025-11-15,Azure / Microsoft,branch,21360,21360000000,555.9666,3170.8676,17748.3405,0.1654,1.109804,7.143707 +2025-11-15,AWS / Anthropic,branch,32115,67441290000,8231.5219,47011.081,263225.392,2.00808,13.49218,86.877541 +2025-11-15,Google,branch,197,275940000,5.193,29.6442,165.9658,0.001236,0.0083,0.053441 +2025-11-15,Other / Unknown,branch,197,295500000,24.6908,140.9548,789.1576,0.008395,0.056382,0.363012 +2025-11-16,Azure / Microsoft,branch,22087,22087000000,574.8892,3278.7899,18352.4156,0.17103,1.147576,7.386847 +2025-11-16,AWS / Anthropic,branch,36893,77474880000,9456.1681,54005.1631,302386.7969,2.306832,15.499482,99.802762 +2025-11-16,Google,branch,205,287280000,5.4064,30.8625,172.7863,0.001287,0.008641,0.055637 +2025-11-16,Other / Unknown,branch,346,519000000,43.3655,247.5653,1386.0331,0.014744,0.099026,0.637575 +2025-11-17,Azure / Microsoft,branch,19664,19663500000,511.8094,2919.0241,16338.6935,0.152263,1.021658,6.576324 +2025-11-17,AWS / Anthropic,branch,32827,68937225000,8414.1077,48053.8476,269064.0715,2.052622,13.791454,88.804597 +2025-11-17,Google,branch,176,246750000,4.6437,26.5084,148.4093,0.001105,0.007422,0.047788 +2025-11-17,Other / Unknown,branch,258,387000000,32.3361,184.6007,1033.516,0.010994,0.07384,0.475417 +2025-11-18,Azure / Microsoft,branch,17608,17607500000,458.295,2613.8132,14630.3327,0.136343,0.914835,5.888709 +2025-11-18,AWS / Anthropic,branch,34263,71951985000,8782.0731,50155.3366,280830.7709,2.142387,14.394582,92.688196 +2025-11-18,Google,branch,174,243110000,4.5752,26.1173,146.22,0.001089,0.007313,0.047083 +2025-11-18,Other / Unknown,branch,276,414000000,34.5921,197.4798,1105.6218,0.011761,0.078992,0.508586 +2025-11-19,Azure / Microsoft,branch,17071,17071000000,444.3308,2534.1704,14184.5469,0.132188,0.88696,5.70928 +2025-11-19,AWS / Anthropic,branch,27394,57527820000,7021.537,40100.7307,224532.8192,1.712904,11.50891,74.107057 +2025-11-19,Google,branch,99,138320000,2.6031,14.8597,83.1934,0.00062,0.004161,0.026788 +2025-11-19,Other / Unknown,branch,272,408000000,34.0908,194.6178,1089.5983,0.011591,0.077847,0.501215 +2025-11-20,Azure / Microsoft,branch,18250,18250000000,475.0182,2709.1916,15164.1954,0.141318,0.948217,6.103589 +2025-11-20,AWS / Anthropic,branch,21481,45110940000,5505.9992,31445.3365,176069.3615,1.343189,9.024812,58.111693 +2025-11-20,Google,branch,99,138040000,2.5978,14.8296,83.025,0.000618,0.004152,0.026734 +2025-11-20,Other / Unknown,branch,383,574500000,48.0029,274.0391,1534.2505,0.016321,0.109616,0.705755 +2025-11-21,Azure / Microsoft,branch,21512,21511500000,559.9099,3193.3576,17874.2241,0.166573,1.117675,7.194375 +2025-11-21,AWS / Anthropic,branch,21663,45492615000,5552.5844,31711.3894,177559.0505,1.354553,9.101169,58.603365 +2025-11-21,Google,branch,93,130690000,2.4595,14.04,78.6043,0.000585,0.003931,0.025311 +2025-11-21,Other / Unknown,branch,356,534000000,44.6188,254.7204,1426.0919,0.01517,0.101888,0.656002 +2025-11-22,Azure / Microsoft,branch,22632,22632000000,589.0747,3359.6945,18805.2642,0.17525,1.175893,7.569119 +2025-11-22,AWS / Anthropic,branch,27218,57157800000,6976.3743,39842.8021,223088.6199,1.701887,11.434884,73.630399 +2025-11-22,Google,branch,123,172200000,3.2407,18.4994,103.5707,0.000771,0.00518,0.03335 +2025-11-22,Other / Unknown,branch,260,390000000,32.5868,186.0317,1041.5278,0.01108,0.074413,0.479103 +2025-11-23,Azure / Microsoft,branch,23624,23623500000,614.8818,3506.8815,19629.1162,0.182927,1.227409,7.900719 +2025-11-23,AWS / Anthropic,branch,24724,51919875000,6337.0613,36191.6187,202644.8404,1.545926,10.386995,66.88293 +2025-11-23,Google,branch,135,188650000,3.5503,20.2667,113.4647,0.000845,0.005675,0.036536 +2025-11-23,Other / Unknown,branch,152,228000000,19.0507,108.757,608.8932,0.006477,0.043503,0.280091 +2025-11-24,Azure / Microsoft,branch,19972,19972500000,519.8522,2964.8948,16595.4462,0.154656,1.037713,6.679667 +2025-11-24,AWS / Anthropic,branch,12355,25944765000,3166.6788,18085.2331,101263.2015,0.772511,5.190462,33.42192 +2025-11-24,Google,branch,108,150990000,2.8415,16.2209,90.8138,0.000676,0.004542,0.029242 +2025-11-24,Other / Unknown,branch,211,316500000,26.4454,150.9719,845.2398,0.008991,0.060389,0.38881 +2025-11-25,Azure / Microsoft,branch,17836,17836000000,464.2425,2647.7338,14820.1967,0.138112,0.926707,5.965129 +2025-11-25,AWS / Anthropic,branch,11768,24713220000,3016.363,17226.764,96456.4442,0.735842,4.944081,31.835449 +2025-11-25,Google,branch,96,134120000,2.524,14.4085,80.6673,0.000601,0.004034,0.025975 +2025-11-25,Other / Unknown,branch,292,438000000,36.5975,208.9279,1169.7158,0.012443,0.083571,0.538069 +2025-11-26,Azure / Microsoft,branch,18224,18224500000,474.3545,2705.4062,15143.0071,0.14112,0.946892,6.09506 +2025-11-26,AWS / Anthropic,branch,11961,25117785000,3065.742,17508.7728,98035.4736,0.747888,5.025018,32.356608 +2025-11-26,Google,branch,102,142310000,2.6782,15.2884,85.5932,0.000637,0.004281,0.027561 +2025-11-26,Other / Unknown,branch,270,405000000,33.8401,193.1868,1081.5865,0.011506,0.077275,0.49753 +2025-11-27,Azure / Microsoft,branch,16656,16655500000,433.516,2472.4899,13839.3018,0.128971,0.865371,5.570319 +2025-11-27,AWS / Anthropic,branch,11139,23392005000,2855.1026,16305.789,91299.7021,0.696502,4.679761,30.133467 +2025-11-27,Google,branch,106,149030000,2.8046,16.0103,89.635,0.000668,0.004483,0.028862 +2025-11-27,Other / Unknown,branch,180,270000000,22.5601,128.7912,721.0577,0.00767,0.051516,0.331687 +2025-11-28,Azure / Microsoft,branch,16716,16716500000,435.1037,2481.5453,13889.9876,0.129443,0.868541,5.59072 +2025-11-28,AWS / Anthropic,branch,11206,23533125000,2872.3269,16404.159,91850.4977,0.700704,4.707994,30.315257 +2025-11-28,Google,branch,121,169750000,3.1946,18.2362,102.0971,0.00076,0.005106,0.032875 +2025-11-28,Other / Unknown,branch,138,207000000,17.2961,98.7399,552.8109,0.005881,0.039496,0.254293 +2025-11-29,Azure / Microsoft,branch,17474,17473500000,454.8072,2593.9211,14518.9901,0.135305,0.907872,5.843894 +2025-11-29,AWS / Anthropic,branch,11358,23851905000,2911.2355,16626.37,93094.7057,0.710196,4.771768,30.725908 +2025-11-29,Google,branch,114,160230000,3.0154,17.2135,96.3713,0.000718,0.00482,0.031032 +2025-11-29,Other / Unknown,branch,167,250500000,20.9308,119.4896,668.9813,0.007116,0.047796,0.307731 +2025-11-30,Azure / Microsoft,branch,26033,26033000000,677.5973,3864.5691,21631.2055,0.201585,1.352599,8.70656 +2025-11-30,AWS / Anthropic,branch,13016,27332760000,3336.09,19052.7583,106680.5879,0.813839,5.468142,35.209928 +2025-11-30,Google,branch,364,510160000,9.6008,54.8065,306.8388,0.002285,0.015346,0.098802 +2025-11-30,Other / Unknown,branch,171,256500000,21.4321,122.3516,685.0048,0.007287,0.048941,0.315102 +2025-12-01,Azure / Microsoft,branch,20650,20649500000,537.4734,3065.3947,17157.9755,0.159898,1.072888,6.906085 +2025-12-01,AWS / Anthropic,branch,9872,20731935000,2530.4287,14451.5426,80917.3685,0.617298,4.147593,26.706777 +2025-12-01,Google,branch,250,350210000,6.5907,37.6231,210.6359,0.001569,0.010534,0.067825 +2025-12-01,Other / Unknown,branch,218,327000000,27.3228,155.9805,873.281,0.00929,0.062392,0.401709 +2025-12-02,Azure / Microsoft,branch,23171,23171000000,603.104,3439.7084,19253.1273,0.179423,1.203898,7.749384 +2025-12-02,AWS / Anthropic,branch,11361,23858730000,2912.0685,16631.1275,93121.3439,0.710399,4.773134,30.7347 +2025-12-02,Google,branch,317,443380000,8.3441,47.6323,266.6735,0.001986,0.013337,0.085869 +2025-12-02,Other / Unknown,branch,322,483000000,40.3575,230.3931,1289.8921,0.013722,0.092157,0.59335 +2025-12-03,Azure / Microsoft,branch,18784,18784500000,488.9304,2788.5375,15608.3194,0.145457,0.975988,6.282349 +2025-12-03,AWS / Anthropic,branch,9968,20932275000,2554.8811,14591.193,81699.3016,0.623263,4.187672,26.964854 +2025-12-03,Google,branch,153,213850000,4.0245,22.9739,128.6214,0.000958,0.006433,0.041416 +2025-12-03,Other / Unknown,branch,280,420000000,35.0935,200.3419,1121.6453,0.011932,0.080137,0.515957 +2025-12-04,Azure / Microsoft,branch,18973,18973000000,493.8368,2816.5201,15764.9468,0.146916,0.985782,6.345391 +2025-12-04,AWS / Anthropic,branch,10026,21054810000,2569.8371,14676.608,82177.5594,0.626912,4.212187,27.122703 +2025-12-04,Google,branch,244,341460000,6.426,36.6831,205.3731,0.001529,0.010271,0.06613 +2025-12-04,Other / Unknown,branch,319,478500000,39.9815,228.2466,1277.8744,0.013594,0.091299,0.587822 +2025-12-05,Azure / Microsoft,branch,21853,21853000000,568.7986,3244.0528,18157.9815,0.169218,1.135418,7.308588 +2025-12-05,AWS / Anthropic,branch,10170,21356580000,2606.6695,14886.9619,83355.3768,0.635897,4.272558,27.511442 +2025-12-05,Google,branch,449,628880000,11.8351,67.5606,378.2436,0.002817,0.018917,0.121794 +2025-12-05,Other / Unknown,branch,304,456000000,38.1015,217.514,1217.7863,0.012955,0.087006,0.560182 +2025-12-06,Azure / Microsoft,branch,25031,25031000000,651.5168,3715.8233,20798.6288,0.193826,1.300538,8.371448 +2025-12-06,AWS / Anthropic,branch,11340,23813160000,2906.5065,16599.3621,92943.4828,0.709042,4.764017,30.675996 +2025-12-06,Google,branch,467,654360000,12.3146,70.2979,393.5687,0.002931,0.019683,0.126729 +2025-12-06,Other / Unknown,branch,196,294000000,24.5654,140.2393,785.1517,0.008352,0.056096,0.36117 +2025-12-07,Azure / Microsoft,branch,26530,26529500000,690.5204,3938.2739,22043.7547,0.20543,1.378396,8.872611 +2025-12-07,AWS / Anthropic,branch,11419,23980845000,2926.9732,16716.2498,93597.9624,0.714035,4.797564,30.892007 +2025-12-07,Google,branch,626,876470000,16.4945,94.1592,527.1581,0.003926,0.026365,0.169745 +2025-12-07,Other / Unknown,branch,231,346500000,28.9521,165.282,925.3574,0.009844,0.066113,0.425664 +2025-12-08,Azure / Microsoft,branch,23668,23668000000,616.0401,3513.4875,19666.0919,0.183272,1.229721,7.915602 +2025-12-08,AWS / Anthropic,branch,9935,20863080000,2546.4356,14542.9594,81429.2314,0.621203,4.173829,26.875718 +2025-12-08,Google,branch,609,852880000,16.0506,91.6249,512.9697,0.00382,0.025655,0.165176 +2025-12-08,Other / Unknown,branch,323,484500000,40.4828,231.1087,1293.8979,0.013764,0.092443,0.595193 +2025-12-09,Azure / Microsoft,branch,26198,26198000000,681.8919,3889.0631,21768.3064,0.202863,1.361172,8.761743 +2025-12-09,AWS / Anthropic,branch,10517,22085070000,2695.5851,15394.768,86198.6953,0.657588,4.418298,28.449879 +2025-12-09,Google,branch,855,1197420000,22.5346,128.6388,720.1954,0.005363,0.036019,0.231903 +2025-12-09,Other / Unknown,branch,283,424500000,35.4695,202.4884,1133.6629,0.01206,0.080995,0.521485 +2025-12-10,Azure / Microsoft,branch,26240,26240000000,682.9851,3895.298,21803.2048,0.203188,1.363354,8.77579 +2025-12-10,AWS / Anthropic,branch,10457,21960120000,2680.3344,15307.6695,85711.0117,0.653868,4.393301,28.288919 +2025-12-10,Google,branch,807,1129520000,21.2567,121.3444,679.3565,0.005059,0.033976,0.218753 +2025-12-10,Other / Unknown,branch,327,490500000,40.9842,233.9707,1309.9215,0.013935,0.093588,0.602564 +2025-12-11,Azure / Microsoft,branch,25640,25640500000,667.3811,3806.3029,21305.0714,0.198546,1.332206,8.575291 +2025-12-11,AWS / Anthropic,branch,10786,22650495000,2764.5979,15788.907,88405.5662,0.674424,4.531416,29.178257 +2025-12-11,Google,branch,812,1136170000,21.3819,122.0588,683.3562,0.005089,0.034176,0.220041 +2025-12-11,Other / Unknown,branch,314,471000000,39.3548,224.6691,1257.8451,0.013381,0.089868,0.578609 +2025-12-12,Azure / Microsoft,branch,25636,25635500000,667.251,3805.5606,21300.9168,0.198507,1.331946,8.573619 +2025-12-12,AWS / Anthropic,branch,9732,20437515000,2494.4934,14246.3122,79768.2384,0.608532,4.088692,26.327507 +2025-12-12,Google,branch,861,1205890000,22.694,129.5488,725.2897,0.005401,0.036274,0.233543 +2025-12-12,Other / Unknown,branch,292,438000000,36.5975,208.9279,1169.7158,0.012443,0.083571,0.538069 +2025-12-13,Azure / Microsoft,branch,30384,30383500000,790.8338,4510.3958,25246.1004,0.235273,1.578639,10.161555 +2025-12-13,AWS / Anthropic,branch,11738,24650535000,3008.712,17183.0684,96211.7827,0.733975,4.931541,31.754699 +2025-12-13,Google,branch,1104,1545810000,29.091,166.0664,929.7366,0.006924,0.046499,0.299375 +2025-12-13,Other / Unknown,branch,374,561000000,46.8749,267.5995,1498.1976,0.015937,0.10704,0.689171 +2025-12-14,Azure / Microsoft,branch,30356,30356500000,790.131,4506.3877,25223.6657,0.235064,1.577236,10.152525 +2025-12-14,AWS / Anthropic,branch,11328,23788065000,2903.4435,16581.8692,92845.5363,0.708295,4.758996,30.643669 +2025-12-14,Google,branch,1100,1539790000,28.9777,165.4197,926.1158,0.006897,0.046318,0.298209 +2025-12-14,Other / Unknown,branch,308,462000000,38.6028,220.3761,1233.8098,0.013125,0.08815,0.567553 +2025-12-15,Azure / Microsoft,branch,23140,23139500000,602.2841,3435.0323,19226.9534,0.17918,1.202261,7.738849 +2025-12-15,AWS / Anthropic,branch,9268,19462695000,2375.5121,13566.7976,75963.4865,0.579506,3.893671,25.071749 +2025-12-15,Google,branch,749,1047970000,19.722,112.5834,630.3078,0.004694,0.031523,0.202959 +2025-12-15,Other / Unknown,branch,334,501000000,41.8615,238.9792,1337.9626,0.014233,0.095592,0.615463 +2025-12-16,Azure / Microsoft,branch,23073,23073000000,600.5532,3425.1605,19171.6976,0.178665,1.198806,7.716608 +2025-12-16,AWS / Anthropic,branch,10594,22246560000,2715.2957,15507.3373,86828.9957,0.662396,4.450606,28.65791 +2025-12-16,Google,branch,720,1008560000,18.9804,108.3496,606.6044,0.004517,0.030338,0.195327 +2025-12-16,Other / Unknown,branch,378,567000000,47.3762,270.4615,1514.2211,0.016108,0.108185,0.696542 +2025-12-17,Azure / Microsoft,branch,18820,18820000000,489.8544,2793.8075,15637.8169,0.145732,0.977833,6.294221 +2025-12-17,AWS / Anthropic,branch,9962,20920830000,2553.4842,14583.215,81654.6314,0.622922,4.185383,26.950111 +2025-12-17,Google,branch,195,272580000,5.1298,29.2833,163.9449,0.001221,0.008199,0.05279 +2025-12-17,Other / Unknown,branch,352,528000000,44.1175,251.8583,1410.0684,0.015,0.100743,0.648631 +2025-12-18,Azure / Microsoft,branch,18428,18428500000,479.6643,2735.6897,15312.5137,0.1427,0.957491,6.163287 +2025-12-18,AWS / Anthropic,branch,10094,21197715000,2587.2793,14776.2224,82735.322,0.631167,4.240776,27.306793 +2025-12-18,Google,branch,168,235690000,4.4355,25.3202,141.7572,0.001056,0.00709,0.045646 +2025-12-18,Other / Unknown,branch,323,484500000,40.4828,231.1087,1293.8979,0.013764,0.092443,0.595193 +2025-12-19,Azure / Microsoft,branch,18978,18978500000,493.9799,2817.3366,15769.5169,0.146959,0.986068,6.347231 +2025-12-19,AWS / Anthropic,branch,9374,19685715000,2402.7327,13722.2574,76833.9403,0.586147,3.938288,25.359042 +2025-12-19,Google,branch,136,190890000,3.5924,20.5073,114.8119,0.000855,0.005742,0.036969 +2025-12-19,Other / Unknown,branch,297,445500000,37.2241,212.5055,1189.7452,0.012656,0.085002,0.547283 +2025-12-20,Azure / Microsoft,branch,20886,20885500000,543.6161,3100.4286,17354.0714,0.161726,1.08515,6.985014 +2025-12-20,AWS / Anthropic,branch,10307,21645435000,2641.9256,15088.3131,84482.7866,0.644498,4.330346,27.883544 +2025-12-20,Google,branch,159,222810000,4.1931,23.9365,134.0104,0.000998,0.006702,0.043151 +2025-12-20,Other / Unknown,branch,237,355500000,29.7041,169.5751,949.3926,0.010099,0.06783,0.436721 +2025-12-21,Azure / Microsoft,branch,20883,20883000000,543.551,3100.0575,17351.9941,0.161706,1.08502,6.984178 +2025-12-21,AWS / Anthropic,branch,10680,22428210000,2737.4669,15633.9595,87537.9811,0.667805,4.486946,28.891911 +2025-12-21,Google,branch,167,233660000,4.3973,25.1021,140.5362,0.001047,0.007029,0.045253 +2025-12-21,Other / Unknown,branch,210,315000000,26.3201,150.2564,841.234,0.008949,0.060103,0.386968 +2025-12-22,Azure / Microsoft,branch,18753,18753000000,488.1105,2783.8614,15582.1456,0.145213,0.974351,6.271814 +2025-12-22,AWS / Anthropic,branch,9376,19690230000,2403.2838,13725.4047,76851.5625,0.586281,3.939191,25.364858 +2025-12-22,Google,branch,165,230580000,4.3393,24.7712,138.6837,0.001033,0.006936,0.044656 +2025-12-22,Other / Unknown,branch,400,600000000,50.1335,286.2027,1602.3504,0.017045,0.114481,0.737081 +2025-12-23,Azure / Microsoft,branch,18862,18861500000,490.9346,2799.9681,15672.2998,0.146053,0.979989,6.308101 +2025-12-23,AWS / Anthropic,branch,10427,21897015000,2672.6321,15263.6811,85464.711,0.651989,4.380676,28.207628 +2025-12-23,Google,branch,148,207690000,3.9086,22.3121,124.9164,0.00093,0.006247,0.040223 +2025-12-23,Other / Unknown,branch,250,375000000,31.3335,178.8767,1001.469,0.010653,0.071551,0.460676 +2025-12-24,Azure / Microsoft,branch,17588,17588000000,457.7874,2610.9185,14614.1298,0.136192,0.913821,5.882187 +2025-12-24,AWS / Anthropic,branch,10919,22929270000,2798.6236,15983.2318,89493.6334,0.682724,4.587188,29.537374 +2025-12-24,Google,branch,177,248220000,4.6713,26.6663,149.2934,0.001112,0.007467,0.048072 +2025-12-24,Other / Unknown,branch,181,271500000,22.6854,129.5067,725.0636,0.007713,0.051803,0.333529 +2025-12-25,Azure / Microsoft,branch,18278,18277500000,475.734,2713.274,15187.0456,0.141531,0.949646,6.112786 +2025-12-25,AWS / Anthropic,branch,12338,25910745000,3162.5265,18061.5189,101130.4204,0.771498,5.183656,33.378095 +2025-12-25,Google,branch,247,345870000,6.509,37.1568,208.0256,0.001549,0.010404,0.066984 +2025-12-25,Other / Unknown,branch,188,282000000,23.5628,134.5153,753.1047,0.008011,0.053806,0.346428 +2025-12-26,Azure / Microsoft,branch,18884,18884000000,491.5202,2803.3082,15690.9954,0.146227,0.981158,6.315626 +2025-12-26,AWS / Anthropic,branch,13683,28733880000,3507.1032,20029.4324,112149.2016,0.855558,5.748447,37.014844 +2025-12-26,Google,branch,227,318080000,5.986,34.1713,191.3111,0.001425,0.009568,0.061602 +2025-12-26,Other / Unknown,branch,225,337500000,28.2001,160.989,901.3221,0.009588,0.064396,0.414608 +2025-12-27,Azure / Microsoft,branch,20739,20739000000,539.8029,3078.6808,17232.3424,0.160591,1.077538,6.936018 +2025-12-27,AWS / Anthropic,branch,14613,30687300000,3745.5271,21391.0966,119773.4589,0.913721,6.139245,39.53123 +2025-12-27,Google,branch,171,239400000,4.5053,25.7187,143.9886,0.001072,0.007201,0.046364 +2025-12-27,Other / Unknown,branch,210,315000000,26.3201,150.2564,841.234,0.008949,0.060103,0.386968 +2025-12-28,Azure / Microsoft,branch,20801,20801000000,541.4167,3087.8847,17283.8591,0.161071,1.08076,6.956753 +2025-12-28,AWS / Anthropic,branch,14913,31317510000,3822.4472,21830.395,122233.1875,0.932486,6.265323,40.343064 +2025-12-28,Google,branch,245,342860000,6.4524,36.8335,206.2152,0.001536,0.010313,0.066401 +2025-12-28,Other / Unknown,branch,120,180000000,15.0401,85.8608,480.7051,0.005114,0.034344,0.221124 +2025-12-29,Azure / Microsoft,branch,20417,20417000000,531.4218,3030.8803,16964.7878,0.158098,1.060808,6.828327 +2025-12-29,AWS / Anthropic,branch,13866,29118180000,3554.0088,20297.3152,113649.1361,0.867,5.825329,37.509897 +2025-12-29,Google,branch,225,315280000,5.9333,33.8705,189.627,0.001412,0.009484,0.06106 +2025-12-29,Other / Unknown,branch,208,312000000,26.0694,148.8254,833.2222,0.008864,0.05953,0.383282 +2025-12-30,Azure / Microsoft,branch,20004,20004500000,520.6851,2969.6451,16622.0355,0.154904,1.039376,6.690369 +2025-12-30,AWS / Anthropic,branch,14144,29701875000,3625.2515,20704.1896,115927.3153,0.88438,5.942102,38.26181 +2025-12-30,Google,branch,309,432250000,8.1346,46.4366,259.9793,0.001936,0.013002,0.083713 +2025-12-30,Other / Unknown,branch,272,408000000,34.0908,194.6178,1089.5983,0.011591,0.077847,0.501215 +2025-12-31,Azure / Microsoft,branch,17476,17475500000,454.8592,2594.218,14520.6519,0.135321,0.907976,5.844562 +2025-12-31,AWS / Anthropic,branch,12577,26410965000,3223.5806,18410.2056,103082.7942,0.786392,5.283729,34.022476 +2025-12-31,Google,branch,222,310590000,5.8451,33.3667,186.8062,0.001391,0.009343,0.060152 +2025-12-31,Other / Unknown,branch,322,483000000,40.3575,230.3931,1289.8921,0.013722,0.092157,0.59335 +2026-01-01,Azure / Microsoft,branch,19232,19232500000,500.5911,2855.0426,15980.5692,0.148926,0.999265,6.432179 +2026-01-01,AWS / Anthropic,branch,11700,24570105000,2998.8952,17127.0033,95897.862,0.73158,4.91545,31.651089 +2026-01-01,Google,branch,249,349230000,6.5723,37.5178,210.0465,0.001564,0.010505,0.067635 +2026-01-01,Other / Unknown,branch,199,298500000,24.9414,142.3858,797.1693,0.00848,0.056954,0.366698 +2026-01-02,Azure / Microsoft,branch,21418,21417500000,557.4632,3179.4034,17796.1181,0.165845,1.112791,7.162938 +2026-01-02,AWS / Anthropic,branch,12092,25392255000,3099.2424,17700.0967,99106.7383,0.75606,5.079928,32.710179 +2026-01-02,Google,branch,202,282730000,5.3208,30.3737,170.0496,0.001266,0.008505,0.054756 +2026-01-02,Other / Unknown,branch,285,427500000,35.7201,203.9194,1141.6747,0.012145,0.081568,0.52517 +2026-01-03,Azure / Microsoft,branch,21924,21923500000,570.6336,3254.5185,18216.561,0.169763,1.139081,7.332166 +2026-01-03,AWS / Anthropic,branch,12743,26760615000,3266.257,18653.935,104447.4887,0.796803,5.353679,34.472894 +2026-01-03,Google,branch,216,302890000,5.7002,32.5395,182.175,0.001357,0.009111,0.05866 +2026-01-03,Other / Unknown,branch,189,283500000,23.6881,135.2308,757.1106,0.008054,0.054092,0.348271 +2026-01-04,Azure / Microsoft,branch,22766,22766500000,592.5755,3379.6609,18917.0222,0.176291,1.182881,7.614101 +2026-01-04,AWS / Anthropic,branch,13045,27393975000,3343.5616,19095.4292,106919.5119,0.815662,5.480388,35.288785 +2026-01-04,Google,branch,161,225050000,4.2353,24.1771,135.3577,0.001008,0.00677,0.043585 +2026-01-04,Other / Unknown,branch,222,333000000,27.8241,158.8425,889.3045,0.00946,0.063537,0.40908 +2026-01-05,Azure / Microsoft,branch,19664,19664000000,511.8224,2919.0983,16339.109,0.152267,1.021684,6.576491 +2026-01-05,AWS / Anthropic,branch,10873,22833300000,2786.9101,15916.3343,89119.0596,0.679867,4.567988,29.413746 +2026-01-05,Google,branch,176,246400000,4.6371,26.4708,148.1987,0.001104,0.007412,0.04772 +2026-01-05,Other / Unknown,branch,279,418500000,34.9681,199.6264,1117.6394,0.011889,0.079851,0.514114 +2026-01-06,Azure / Microsoft,branch,20166,20166000000,524.8886,2993.6196,16756.2282,0.156154,1.047767,6.744382 +2026-01-06,AWS / Anthropic,branch,11307,23745540000,2898.2532,16552.2265,92679.5599,0.707029,4.750489,30.588889 +2026-01-06,Google,branch,174,243040000,4.5738,26.1098,146.1779,0.001089,0.007311,0.047069 +2026-01-06,Other / Unknown,branch,221,331500000,27.6988,158.127,885.2986,0.009418,0.063251,0.407237 +2026-01-07,Azure / Microsoft,branch,19560,19560000000,509.1154,2903.6596,16252.6938,0.151462,1.016281,6.541709 +2026-01-07,AWS / Anthropic,branch,11024,23150400000,2825.6136,16137.3742,90356.7105,0.689308,4.631426,29.822232 +2026-01-07,Google,branch,179,250600000,4.7161,26.922,150.7249,0.001122,0.007538,0.048533 +2026-01-07,Other / Unknown,branch,382,573000000,47.8775,273.3235,1530.2446,0.016278,0.109329,0.703913 +2026-01-08,Azure / Microsoft,branch,19292,19292500000,502.1528,2863.9496,16030.4241,0.14939,1.002382,6.452246 +2026-01-08,AWS / Anthropic,branch,11278,23684325000,2890.7816,16509.5555,92440.6359,0.705206,4.738242,30.510032 +2026-01-08,Google,branch,175,245350000,4.6173,26.358,147.5672,0.001099,0.00738,0.047517 +2026-01-08,Other / Unknown,branch,335,502500000,41.9868,239.6947,1341.9685,0.014276,0.095878,0.617305 +2026-01-09,Azure / Microsoft,branch,19690,19690500000,512.5121,2923.0322,16361.1282,0.152472,1.023061,6.585354 +2026-01-09,AWS / Anthropic,branch,11899,24987165000,3049.7993,17417.722,97525.6598,0.743999,4.998886,32.188344 +2026-01-09,Google,branch,186,260190000,4.8966,27.9522,156.4928,0.001165,0.007827,0.050391 +2026-01-09,Other / Unknown,branch,223,334500000,27.9494,159.558,893.3103,0.009503,0.063823,0.410923 +2026-01-10,Azure / Microsoft,branch,19595,19595000000,510.0264,2908.8553,16281.7759,0.151733,1.018099,6.553415 +2026-01-10,AWS / Anthropic,branch,12845,26974290000,3292.3371,18802.8807,105281.4687,0.803166,5.396427,34.748149 +2026-01-10,Google,branch,184,257740000,4.8505,27.689,155.0193,0.001154,0.007753,0.049916 +2026-01-10,Other / Unknown,branch,199,298500000,24.9414,142.3858,797.1693,0.00848,0.056954,0.366698 +2026-01-11,Azure / Microsoft,branch,20923,20923000000,544.5921,3105.9954,17385.2307,0.162016,1.087098,6.997555 +2026-01-11,AWS / Anthropic,branch,13747,28868490000,3523.533,20123.2646,112674.5885,0.859566,5.775377,37.188248 +2026-01-11,Google,branch,183,256340000,4.8241,27.5386,154.1772,0.001148,0.007711,0.049645 +2026-01-11,Other / Unknown,branch,230,345000000,28.8268,164.5665,921.3515,0.009801,0.065827,0.423822 +2026-01-12,Azure / Microsoft,branch,19190,19190000000,499.4849,2848.7335,15945.2554,0.148597,0.997057,6.417965 +2026-01-12,AWS / Anthropic,branch,10578,22212960000,2711.1947,15483.9159,86697.8539,0.661396,4.443884,28.614627 +2026-01-12,Google,branch,153,214760000,4.0416,23.0717,129.1687,0.000962,0.00646,0.041592 +2026-01-12,Other / Unknown,branch,268,402000000,33.5895,191.7558,1073.5748,0.01142,0.076702,0.493844 +2026-01-13,Azure / Microsoft,branch,17791,17791000000,463.0712,2641.0536,14782.8055,0.137764,0.924369,5.950079 +2026-01-13,AWS / Anthropic,branch,10464,21973980000,2682.0261,15317.3309,85765.1077,0.65428,4.396074,28.306774 +2026-01-13,Google,branch,185,259280000,4.8795,27.8545,155.9455,0.001161,0.007799,0.050214 +2026-01-13,Other / Unknown,branch,255,382500000,31.9601,182.4542,1021.4984,0.010866,0.072982,0.469889 +2026-01-14,Azure / Microsoft,branch,18222,18222000000,474.2894,2705.0351,15140.9298,0.141101,0.946762,6.094224 +2026-01-14,AWS / Anthropic,branch,10752,22579410000,2755.9216,15739.356,88128.1193,0.672307,4.517195,29.086686 +2026-01-14,Google,branch,161,225260000,4.2392,24.1997,135.484,0.001009,0.006776,0.043626 +2026-01-14,Other / Unknown,branch,311,466500000,38.9788,222.5226,1245.8274,0.013253,0.089009,0.573081 +2026-01-15,Azure / Microsoft,branch,17974,17973500000,467.8214,2668.1455,14934.4475,0.139177,0.933851,6.011115 +2026-01-15,AWS / Anthropic,branch,10883,22855245000,2789.5885,15931.6314,89204.7116,0.68052,4.572378,29.442015 +2026-01-15,Google,branch,171,239470000,4.5067,25.7263,144.0307,0.001073,0.007203,0.046378 +2026-01-15,Other / Unknown,branch,298,447000000,37.3495,213.221,1193.751,0.012699,0.085288,0.549125 +2026-01-16,Azure / Microsoft,branch,19054,19054500000,495.9581,2828.6187,15832.6664,0.147548,0.990017,6.372648 +2026-01-16,AWS / Anthropic,branch,12242,25707465000,3137.7152,17919.8192,100337.0124,0.765446,5.142988,33.116231 +2026-01-16,Google,branch,169,236390000,4.4487,25.3954,142.1782,0.001059,0.007111,0.045781 +2026-01-16,Other / Unknown,branch,314,471000000,39.3548,224.6691,1257.8451,0.013381,0.089868,0.578609 +2026-01-17,Azure / Microsoft,branch,20417,20417000000,531.4218,3030.8803,16964.7878,0.158098,1.060808,6.828327 +2026-01-17,AWS / Anthropic,branch,12078,25364850000,3095.8975,17680.9936,98999.7757,0.755244,5.074445,32.674876 +2026-01-17,Google,branch,180,252700000,4.7556,27.1476,151.9879,0.001132,0.007601,0.04894 +2026-01-17,Other / Unknown,branch,286,429000000,35.8455,204.6349,1145.6805,0.012187,0.081854,0.527013 +2026-01-18,Azure / Microsoft,branch,21038,21037500000,547.5724,3122.9928,17480.3705,0.162903,1.093047,7.035849 +2026-01-18,AWS / Anthropic,branch,13676,28718865000,3505.2705,20018.966,112090.5976,0.855111,5.745443,36.995502 +2026-01-18,Google,branch,142,198590000,3.7373,21.3345,119.4431,0.000889,0.005974,0.038461 +2026-01-18,Other / Unknown,branch,291,436500000,36.4721,208.2124,1165.7099,0.012401,0.083285,0.536227 +2026-01-19,Azure / Microsoft,branch,18814,18813500000,489.6852,2792.8426,15632.4159,0.145681,0.977495,6.292047 +2026-01-19,AWS / Anthropic,branch,13829,29040165000,3544.4867,20242.9335,113344.6412,0.864678,5.809722,37.409399 +2026-01-19,Google,branch,161,225190000,4.2379,24.1922,135.4419,0.001009,0.006774,0.043612 +2026-01-19,Other / Unknown,branch,305,457500000,38.2268,218.2295,1221.7922,0.012997,0.087292,0.562024 +2026-01-20,Azure / Microsoft,branch,18131,18131000000,471.9209,2691.5262,15065.3166,0.140396,0.942034,6.06379 +2026-01-20,AWS / Anthropic,branch,12436,26116440000,3187.6325,18204.902,101933.2542,0.777623,5.224807,33.643071 +2026-01-20,Google,branch,159,222040000,4.1786,23.8538,133.5473,0.000995,0.006679,0.043002 +2026-01-20,Other / Unknown,branch,316,474000000,39.6055,226.1001,1265.8568,0.013466,0.09044,0.582294 +2026-01-21,Azure / Microsoft,branch,17738,17738000000,461.6917,2633.1858,14738.767,0.137353,0.921615,5.932354 +2026-01-21,AWS / Anthropic,branch,11831,24844890000,3032.4339,17318.5468,96970.3561,0.739762,4.970423,32.005066 +2026-01-21,Google,branch,174,243740000,4.587,26.185,146.5989,0.001092,0.007332,0.047205 +2026-01-21,Other / Unknown,branch,288,432000000,36.0961,206.0659,1153.6923,0.012273,0.082426,0.530698 +2026-01-22,Azure / Microsoft,branch,17652,17652500000,459.4663,2620.4934,14667.7238,0.136691,0.917173,5.903759 +2026-01-22,AWS / Anthropic,branch,10949,22993215000,2806.4284,16027.8057,89743.2127,0.684628,4.59998,29.619747 +2026-01-22,Google,branch,163,228690000,4.3038,24.5682,137.547,0.001024,0.006879,0.04429 +2026-01-22,Other / Unknown,branch,302,453000000,37.8508,216.083,1209.7746,0.012869,0.086433,0.556496 +2026-01-23,Azure / Microsoft,branch,17530,17530000000,456.2778,2602.3084,14565.9368,0.135743,0.910808,5.86279 +2026-01-23,AWS / Anthropic,branch,11062,23230830000,2835.4304,16193.4392,90670.6312,0.691703,4.647517,29.925842 +2026-01-23,Google,branch,172,240380000,4.5238,25.824,144.578,0.001077,0.007231,0.046554 +2026-01-23,Other / Unknown,branch,317,475500000,39.7308,226.8156,1269.8627,0.013508,0.090726,0.584137 +2026-01-24,Azure / Microsoft,branch,17026,17026500000,443.1725,2527.5644,14147.5712,0.131844,0.884648,5.694397 +2026-01-24,AWS / Anthropic,branch,12148,25511535000,3113.801,17783.2429,99572.2917,0.759612,5.103791,32.863835 +2026-01-24,Google,branch,135,189210000,3.5608,20.3268,113.8015,0.000847,0.005692,0.036644 +2026-01-24,Other / Unknown,branch,310,465000000,38.8535,221.8071,1241.8216,0.01321,0.088723,0.571238 +2026-01-25,Azure / Microsoft,branch,18617,18617000000,484.5707,2763.6724,15469.1412,0.14416,0.967285,6.226329 +2026-01-25,AWS / Anthropic,branch,13052,27409200000,3345.4199,19106.0421,106978.9355,0.816115,5.483434,35.308398 +2026-01-25,Google,branch,123,172200000,3.2407,18.4994,103.5707,0.000771,0.00518,0.03335 +2026-01-25,Other / Unknown,branch,152,228000000,19.0507,108.757,608.8932,0.006477,0.043503,0.280091 +2026-01-26,Azure / Microsoft,branch,17736,17735500000,461.6266,2632.8147,14736.6898,0.137334,0.921485,5.931518 +2026-01-26,AWS / Anthropic,branch,11798,24776325000,3024.0653,17270.7524,96702.7449,0.737721,4.956706,31.916741 +2026-01-26,Google,branch,139,194950000,3.6688,20.9435,117.2538,0.000873,0.005864,0.037756 +2026-01-26,Other / Unknown,branch,275,412500000,34.4668,196.7643,1101.6159,0.011719,0.078706,0.506743 +2026-01-27,Azure / Microsoft,branch,17569,17569000000,457.2929,2608.098,14598.3424,0.136045,0.912834,5.875833 +2026-01-27,AWS / Anthropic,branch,10103,21215670000,2589.4708,14788.7382,82805.4009,0.631701,4.244368,27.329923 +2026-01-27,Google,branch,162,227220000,4.2761,24.4102,136.6628,0.001018,0.006835,0.044005 +2026-01-27,Other / Unknown,branch,290,435000000,36.3468,207.4969,1161.704,0.012358,0.082999,0.534384 +2026-01-28,Azure / Microsoft,branch,18834,18833500000,490.2058,2795.8115,15649.0342,0.145836,0.978534,6.298736 +2026-01-28,AWS / Anthropic,branch,9725,20423025000,2492.7248,14236.2117,79711.6835,0.6081,4.085793,26.308841 +2026-01-28,Google,branch,147,206150000,3.8796,22.1467,123.9901,0.000923,0.006201,0.039925 +2026-01-28,Other / Unknown,branch,267,400500000,33.4641,191.0403,1069.5689,0.011378,0.076416,0.492002 +2026-01-29,Azure / Microsoft,branch,20130,20130500000,523.9646,2988.3497,16726.7307,0.155879,1.045922,6.732509 +2026-01-29,AWS / Anthropic,branch,10298,21625485000,2639.4906,15074.4066,84404.9212,0.643904,4.326355,27.857844 +2026-01-29,Google,branch,171,238910000,4.4961,25.6661,143.6938,0.00107,0.007187,0.046269 +2026-01-29,Other / Unknown,branch,346,519000000,43.3655,247.5653,1386.0331,0.014744,0.099026,0.637575 +2026-01-30,Azure / Microsoft,branch,19066,19066000000,496.2574,2830.3259,15842.2219,0.147637,0.990614,6.376494 +2026-01-30,AWS / Anthropic,branch,10810,22700370000,2770.6853,15823.6732,88600.2298,0.675909,4.541394,29.242506 +2026-01-30,Google,branch,164,230020000,4.3288,24.7111,138.3469,0.00103,0.006919,0.044548 +2026-01-30,Other / Unknown,branch,296,444000000,37.0988,211.79,1185.7393,0.012614,0.084716,0.54544 +2026-01-31,Azure / Microsoft,branch,20649,20649000000,537.4604,3065.3204,17157.5601,0.159894,1.072862,6.905918 +2026-01-31,AWS / Anthropic,branch,11882,24951570000,3045.4547,17392.9099,97386.7314,0.742939,4.991765,32.142491 +2026-01-31,Google,branch,167,234220000,4.4078,25.1623,140.873,0.001049,0.007045,0.045361 +2026-01-31,Other / Unknown,branch,208,312000000,26.0694,148.8254,833.2222,0.008864,0.05953,0.383282 +2026-02-01,Azure / Microsoft,branch,21346,21345500000,555.5891,3168.7151,17736.2922,0.165288,1.10905,7.138858 +2026-02-01,AWS / Anthropic,branch,13005,27310815000,3333.4115,19037.4611,106594.9359,0.813186,5.463751,35.181659 +2026-02-01,Google,branch,144,202090000,3.8032,21.7105,121.5482,0.000905,0.006079,0.039139 +2026-02-01,Other / Unknown,branch,115,172500000,14.4134,82.2833,460.6757,0.004901,0.032913,0.211911 +2026-02-02,Azure / Microsoft,branch,18908,18908500000,492.1579,2806.9452,15711.3528,0.146417,0.982431,6.32382 +2026-02-02,AWS / Anthropic,branch,11920,25031685000,3055.2331,17448.7554,97699.4227,0.745324,5.007793,32.245694 +2026-02-02,Google,branch,167,233310000,4.3907,25.0645,140.3257,0.001045,0.007018,0.045185 +2026-02-02,Other / Unknown,branch,235,352500000,29.4535,168.1441,941.3809,0.010014,0.067258,0.433035 +2026-02-03,Azure / Microsoft,branch,24256,24255500000,631.3318,3600.7012,20154.2544,0.187821,1.260245,8.112087 +2026-02-03,AWS / Anthropic,branch,11079,23266425000,2839.775,16218.2513,90809.5596,0.692763,4.654638,29.971695 +2026-02-03,Google,branch,158,221550000,4.1694,23.8011,133.2526,0.000992,0.006664,0.042907 +2026-02-03,Other / Unknown,branch,378,567000000,47.3762,270.4615,1514.2211,0.016108,0.108185,0.696542 +2026-02-04,Azure / Microsoft,branch,24045,24045000000,625.8528,3569.4527,19979.3468,0.186191,1.249308,8.041687 +2026-02-04,AWS / Anthropic,branch,11250,23625210000,2883.5663,16468.3484,92209.9083,0.703446,4.726416,30.43388 +2026-02-04,Google,branch,145,202860000,3.8177,21.7933,122.0114,0.000909,0.006102,0.039288 +2026-02-04,Other / Unknown,branch,256,384000000,32.0855,183.1697,1025.5043,0.010909,0.073268,0.471732 +2026-02-05,Azure / Microsoft,branch,22816,22816500000,593.8769,3387.0833,18958.5679,0.176678,1.185479,7.630824 +2026-02-05,AWS / Anthropic,branch,11161,23437995000,2860.7159,16337.8471,91479.2025,0.697872,4.688962,30.192711 +2026-02-05,Google,branch,149,207970000,3.9138,22.3422,125.0848,0.000931,0.006256,0.040277 +2026-02-05,Other / Unknown,branch,258,387000000,32.3361,184.6007,1033.516,0.010994,0.07384,0.475417 +2026-02-06,Azure / Microsoft,branch,26424,26423500000,687.7613,3922.5383,21955.6777,0.204609,1.372888,8.83716 +2026-02-06,AWS / Anthropic,branch,12902,27094515000,3307.0111,18886.6856,105750.7105,0.806745,5.420479,34.903022 +2026-02-06,Google,branch,148,207690000,3.9086,22.3121,124.9164,0.00093,0.006247,0.040223 +2026-02-06,Other / Unknown,branch,279,418500000,34.9681,199.6264,1117.6394,0.011889,0.079851,0.514114 +2026-02-07,Azure / Microsoft,branch,28287,28287000000,736.2653,4199.1728,23504.0875,0.219039,1.46971,9.460395 +2026-02-07,AWS / Anthropic,branch,13680,28728630000,3506.4624,20025.7728,112128.7107,0.855402,5.747397,37.008081 +2026-02-07,Google,branch,145,202580000,3.8124,21.7632,121.8429,0.000907,0.006094,0.039233 +2026-02-07,Other / Unknown,branch,203,304500000,25.4428,145.2479,813.1928,0.008651,0.058099,0.374069 +2026-02-08,Azure / Microsoft,branch,29606,29606500000,770.6097,4395.0511,24600.4796,0.229256,1.538268,9.901693 +2026-02-08,AWS / Anthropic,branch,13708,28787325000,3513.6264,20066.6872,112357.799,0.857149,5.759139,37.083692 +2026-02-08,Google,branch,219,306950000,5.7766,32.9756,184.6169,0.001375,0.009233,0.059447 +2026-02-08,Other / Unknown,branch,223,334500000,27.9494,159.558,893.3103,0.009503,0.063823,0.410923 +2026-02-09,Azure / Microsoft,branch,23328,23328000000,607.1904,3463.0149,19383.5809,0.180639,1.212055,7.801891 +2026-02-09,AWS / Anthropic,branch,10677,22422120000,2736.7236,15629.7144,87514.2117,0.667624,4.485728,28.884066 +2026-02-09,Google,branch,191,267120000,5.027,28.6967,160.6609,0.001196,0.008035,0.051733 +2026-02-09,Other / Unknown,branch,305,457500000,38.2268,218.2295,1221.7922,0.012997,0.087292,0.562024 +2026-02-10,Azure / Microsoft,branch,25074,25074000000,652.636,3722.2066,20834.3581,0.194159,1.302772,8.385829 +2026-02-10,AWS / Anthropic,branch,11548,24251640000,2960.025,16905.012,94654.8835,0.722098,4.851738,31.240844 +2026-02-10,Google,branch,203,283640000,5.3379,30.4714,170.597,0.00127,0.008532,0.054932 +2026-02-10,Other / Unknown,branch,203,304500000,25.4428,145.2479,813.1928,0.008651,0.058099,0.374069 +2026-02-11,Azure / Microsoft,branch,27816,27816500000,724.0189,4129.3276,23113.142,0.215396,1.445265,9.30304 +2026-02-11,AWS / Anthropic,branch,12677,26622435000,3249.3915,18557.6143,103908.168,0.792689,5.326035,34.294891 +2026-02-11,Google,branch,231,323610000,6.0901,34.7654,194.6372,0.001449,0.009734,0.062673 +2026-02-11,Other / Unknown,branch,270,405000000,33.8401,193.1868,1081.5865,0.011506,0.077275,0.49753 +2026-02-12,Azure / Microsoft,branch,28964,28964500000,753.8995,4299.7469,24067.0322,0.224285,1.504911,9.68698 +2026-02-12,AWS / Anthropic,branch,13023,27348615000,3338.0252,19063.8103,106742.4705,0.814311,5.471314,35.230352 +2026-02-12,Google,branch,291,407890000,7.6762,43.8196,245.3279,0.001827,0.012269,0.078996 +2026-02-12,Other / Unknown,branch,231,346500000,28.9521,165.282,925.3574,0.009844,0.066113,0.425664 +2026-02-13,Azure / Microsoft,branch,29876,29875500000,777.6114,4434.9838,24823.9956,0.231339,1.552244,9.991658 +2026-02-13,AWS / Anthropic,branch,13340,28014525000,3419.3026,19527.994,109341.5373,0.834139,5.604534,36.088174 +2026-02-13,Google,branch,649,908950000,17.1058,97.6485,546.6934,0.004071,0.027342,0.176035 +2026-02-13,Other / Unknown,branch,517,775500000,64.7976,369.9169,2071.0379,0.022031,0.147967,0.952677 +2026-02-14,Azure / Microsoft,branch,31816,31815500000,828.1065,4722.9746,26435.9704,0.246362,1.653041,10.640478 +2026-02-14,AWS / Anthropic,branch,15044,31592715000,3856.0372,22022.2313,123307.321,0.94068,6.32038,40.697581 +2026-02-14,Google,branch,857,1200290000,22.5886,128.9472,721.9216,0.005376,0.036105,0.232459 +2026-02-14,Other / Unknown,branch,180,270000000,22.5601,128.7912,721.0577,0.00767,0.051516,0.331687 +2026-02-15,Azure / Microsoft,branch,32682,32681500000,850.647,4851.5313,27155.5426,0.253067,1.698036,10.930106 +2026-02-15,AWS / Anthropic,branch,16570,34796895000,4247.1223,24255.7586,135813.3323,1.036085,6.961403,44.82519 +2026-02-15,Google,branch,713,997570000,18.7735,107.169,599.9944,0.004468,0.030007,0.193198 +2026-02-15,Other / Unknown,branch,187,280500000,23.4374,133.7997,749.0988,0.007969,0.05352,0.344585 +2026-02-16,Azure / Microsoft,branch,30218,30217500000,786.5131,4485.7533,25108.1685,0.233988,1.570014,10.106038 +2026-02-16,AWS / Anthropic,branch,14489,30427005000,3713.7569,21209.6536,118757.5196,0.905971,6.087171,39.195919 +2026-02-16,Google,branch,668,935830000,17.6116,100.5362,562.8605,0.004192,0.02815,0.181241 +2026-02-16,Other / Unknown,branch,221,331500000,27.6988,158.127,885.2986,0.009418,0.063251,0.407237 +2026-02-17,Azure / Microsoft,branch,29106,29106500000,757.5955,4320.8266,24185.0222,0.225385,1.512289,9.734471 +2026-02-17,AWS / Anthropic,branch,14888,31263855000,3815.8984,21792.9939,122023.7704,0.930888,6.254589,40.273945 +2026-02-17,Google,branch,431,603330000,11.3542,64.8158,362.8764,0.002702,0.018148,0.116846 +2026-02-17,Other / Unknown,branch,249,373500000,31.2081,178.1612,997.4631,0.010611,0.071264,0.458833 +2026-02-18,Azure / Microsoft,branch,28500,28500500000,741.8223,4230.8666,23681.4878,0.220692,1.480803,9.531799 +2026-02-18,AWS / Anthropic,branch,13464,28275135000,3451.1112,19709.6565,110358.706,0.841899,5.656671,36.423891 +2026-02-18,Google,branch,210,294210000,5.5368,31.607,176.9544,0.001318,0.00885,0.056979 +2026-02-18,Other / Unknown,branch,273,409500000,34.2161,195.3333,1093.6041,0.011633,0.078133,0.503058 +2026-02-19,Azure / Microsoft,branch,25488,25488500000,663.4248,3783.7387,21178.7723,0.197369,1.324309,8.524456 +2026-02-19,AWS / Anthropic,branch,14100,29610735000,3614.1274,20640.6589,115571.5931,0.881666,5.923869,38.144404 +2026-02-19,Google,branch,182,255010000,4.7991,27.3957,153.3773,0.001142,0.007671,0.049387 +2026-02-19,Other / Unknown,branch,276,414000000,34.5921,197.4798,1105.6218,0.011761,0.078992,0.508586 +2026-02-20,Azure / Microsoft,branch,23798,23797500000,619.4108,3532.7116,19773.6954,0.184275,1.236449,7.958912 +2026-02-20,AWS / Anthropic,branch,14467,30379755000,3707.9899,21176.7172,118573.1014,0.904564,6.077718,39.135052 +2026-02-20,Google,branch,193,270130000,5.0836,29.0201,162.4713,0.00121,0.008126,0.052316 +2026-02-20,Other / Unknown,branch,329,493500000,41.2348,235.4017,1317.9332,0.01402,0.094161,0.606249 +2026-02-21,Azure / Microsoft,branch,25022,25022000000,651.2825,3714.4873,20791.1506,0.193757,1.300071,8.368438 +2026-02-21,AWS / Anthropic,branch,15980,33558630000,4095.9863,23392.6053,130980.3466,0.999216,6.713678,43.230063 +2026-02-21,Google,branch,189,264180000,4.9717,28.3809,158.8926,0.001183,0.007947,0.051163 +2026-02-21,Other / Unknown,branch,146,219000000,18.2987,104.464,584.8579,0.006222,0.041786,0.269035 +2026-02-22,Azure / Microsoft,branch,25767,25767000000,670.6737,3825.0817,21410.1821,0.199525,1.338779,8.617598 +2026-02-22,AWS / Anthropic,branch,16444,34532190000,4214.8138,24071.2416,134780.1807,1.028204,6.908446,44.484199 +2026-02-22,Google,branch,200,280140000,5.272,30.0954,168.4919,0.001255,0.008427,0.054254 +2026-02-22,Other / Unknown,branch,168,252000000,21.0561,120.2051,672.9872,0.007159,0.048082,0.309574 +2026-02-23,Azure / Microsoft,branch,23908,23908000000,622.2869,3549.1152,19865.5115,0.18513,1.24219,7.995868 +2026-02-23,AWS / Anthropic,branch,12324,25880820000,3158.874,18040.6592,101013.6222,0.770607,5.177669,33.339546 +2026-02-23,Google,branch,167,233520000,4.3947,25.0871,140.452,0.001046,0.007024,0.045226 +2026-02-23,Other / Unknown,branch,325,487500000,40.7335,232.5397,1301.9097,0.013849,0.093016,0.598878 +2026-02-24,Azure / Microsoft,branch,23698,23697500000,616.8079,3517.8668,19690.6039,0.1835,1.231253,7.925468 +2026-02-24,AWS / Anthropic,branch,13635,28633395000,3494.8385,19959.3877,111757.0056,0.852566,5.728344,36.8854 +2026-02-24,Google,branch,186,259770000,4.8887,27.9071,156.2402,0.001164,0.007814,0.050309 +2026-02-24,Other / Unknown,branch,372,558000000,46.6242,266.1685,1490.1859,0.015852,0.106467,0.685486 +2026-02-25,Azure / Microsoft,branch,22966,22966000000,597.7682,3409.2764,19082.7897,0.177836,1.193247,7.680823 +2026-02-25,AWS / Anthropic,branch,13941,29275890000,3573.258,20407.2496,114264.683,0.871696,5.856881,37.713059 +2026-02-25,Google,branch,344,481740000,9.066,51.7533,289.7454,0.002158,0.014491,0.093298 +2026-02-25,Other / Unknown,branch,358,537000000,44.8695,256.1514,1434.1036,0.015256,0.102461,0.659688 +2026-02-26,Azure / Microsoft,branch,24956,24956500000,649.5777,3704.7639,20736.7257,0.193249,1.296667,8.346532 +2026-02-26,AWS / Anthropic,branch,14940,31374735000,3829.4318,21870.2847,122456.5384,0.93419,6.276772,40.416781 +2026-02-26,Google,branch,313,438410000,8.2506,47.0984,263.6843,0.001964,0.013188,0.084906 +2026-02-26,Other / Unknown,branch,443,664500000,55.5229,316.9695,1774.6031,0.018878,0.126788,0.816317 +2026-02-27,Azure / Microsoft,branch,26414,26414500000,687.5271,3921.2023,21948.1995,0.204539,1.372421,8.83415 +2026-02-27,AWS / Anthropic,branch,16097,33804645000,4126.0135,23564.0941,131940.5506,1.006541,6.762895,43.546979 +2026-02-27,Google,branch,297,415870000,7.8264,44.6769,250.1275,0.001863,0.01251,0.080541 +2026-02-27,Other / Unknown,branch,334,501000000,41.8615,238.9792,1337.9626,0.014233,0.095592,0.615463 +2026-02-28,Azure / Microsoft,branch,25546,25546000000,664.9214,3792.2745,21226.5499,0.197814,1.327296,8.543686 +2026-02-28,AWS / Anthropic,branch,15840,33264000000,4060.0253,23187.2285,129830.3968,0.990443,6.654735,42.850522 +2026-02-28,Google,branch,255,357000000,6.7185,38.3525,214.7198,0.001599,0.010739,0.06914 +2026-02-28,Other / Unknown,branch,264,396000000,33.0881,188.8938,1057.5513,0.01125,0.075558,0.486474 +2026-03-01,Azure / Microsoft,branch,25858,25857500000,673.0293,3838.5163,21485.3799,0.200226,1.343481,8.647865 +2026-03-01,AWS / Anthropic,branch,16928,35548695000,4338.8829,24779.8134,138747.6304,1.05847,7.111806,45.793655 +2026-03-01,Google,branch,193,269570000,5.0731,28.9599,162.1345,0.001207,0.008109,0.052207 +2026-03-01,Other / Unknown,branch,301,451500000,37.7255,215.3675,1205.7687,0.012827,0.086147,0.554654 +2026-03-02,Azure / Microsoft,branch,26018,26017500000,677.1938,3862.2681,21618.3263,0.201465,1.351794,8.701376 +2026-03-02,AWS / Anthropic,branch,12229,25681845000,3134.5882,17901.9603,100237.0168,0.764683,5.137863,33.083227 +2026-03-02,Google,branch,191,267470000,5.0336,28.7343,160.8714,0.001198,0.008046,0.051801 +2026-03-02,Other / Unknown,branch,489,733500000,61.2882,349.8828,1958.8734,0.020838,0.139953,0.901082 +2026-03-03,Azure / Microsoft,branch,26631,26631000000,693.1622,3953.3415,22128.0925,0.206216,1.38367,8.906557 +2026-03-03,AWS / Anthropic,branch,13636,28634970000,3495.0308,19960.4856,111763.1529,0.852613,5.728659,36.887429 +2026-03-03,Google,branch,313,438620000,8.2545,47.121,263.8106,0.001965,0.013194,0.084947 +2026-03-03,Other / Unknown,branch,550,825000000,68.9336,393.5287,2203.2318,0.023437,0.157411,1.013487 +2026-03-04,Azure / Microsoft,branch,25018,25017500000,651.1654,3713.8193,20787.4115,0.193722,1.299837,8.366933 +2026-03-04,AWS / Anthropic,branch,17115,35941605000,4386.8394,25053.6979,140281.17,1.070169,7.190411,46.2998 +2026-03-04,Google,branch,179,251230000,4.728,26.9896,151.1038,0.001125,0.007557,0.048655 +2026-03-04,Other / Unknown,branch,434,651000000,54.3949,310.5299,1738.5502,0.018494,0.124212,0.799733 +2026-03-05,Azure / Microsoft,branch,24216,24215500000,630.2906,3594.7633,20121.0178,0.187511,1.258167,8.09871 +2026-03-05,AWS / Anthropic,branch,17609,36979215000,4513.4845,25776.9813,144330.9932,1.101065,7.397994,47.636444 +2026-03-05,Google,branch,207,290290000,5.463,31.1859,174.5966,0.0013,0.008732,0.05622 +2026-03-05,Other / Unknown,branch,506,759000000,63.4189,362.0464,2026.9733,0.021562,0.144819,0.932408 +2026-03-06,Azure / Microsoft,branch,25502,25502000000,663.7762,3785.7427,21189.9897,0.197473,1.32501,8.528971 +2026-03-06,AWS / Anthropic,branch,18134,38082450000,4648.1395,26546.0098,148636.9527,1.133914,7.618705,49.057626 +2026-03-06,Google,branch,188,262500000,4.9401,28.2004,157.8822,0.001176,0.007896,0.050838 +2026-03-06,Other / Unknown,branch,573,859500000,71.8163,409.9853,2295.3669,0.024418,0.163994,1.055869 +2026-03-07,Azure / Microsoft,branch,25206,25206500000,656.0848,3741.8761,20944.4544,0.195185,1.309657,8.430143 +2026-03-07,AWS / Anthropic,branch,20171,42358785000,5170.086,29526.9007,165327.6174,1.261242,8.474221,54.56638 +2026-03-07,Google,branch,199,278110000,5.2338,29.8774,167.2709,0.001246,0.008366,0.053861 +2026-03-07,Other / Unknown,branch,365,547500000,45.7468,261.1599,1462.1447,0.015554,0.104464,0.672587 +2026-03-08,Azure / Microsoft,branch,24564,24564500000,639.3746,3646.5719,20411.007,0.190214,1.2763,8.21543 +2026-03-08,AWS / Anthropic,branch,20648,43360905000,5292.3994,30225.4453,169238.922,1.291081,8.674703,55.857306 +2026-03-08,Google,branch,170,238630000,4.4908,25.636,143.5254,0.001069,0.007178,0.046215 +2026-03-08,Other / Unknown,branch,399,598500000,50.0082,285.4872,1598.3445,0.017003,0.114195,0.735238 +2026-03-09,Azure / Microsoft,branch,24776,24776000000,644.8796,3677.9689,20586.7455,0.191852,1.287289,8.286165 +2026-03-09,AWS / Anthropic,branch,20285,42598920000,5199.3956,29694.2909,166264.8715,1.268393,8.522261,54.875721 +2026-03-09,Google,branch,142,198520000,3.736,21.327,119.401,0.000889,0.005972,0.038447 +2026-03-09,Other / Unknown,branch,480,720000000,60.1602,343.4432,1922.8205,0.020454,0.137377,0.884497 +2026-03-10,Azure / Microsoft,branch,26549,26549000000,691.0279,3941.1687,22059.9575,0.205581,1.379409,8.879133 +2026-03-10,AWS / Anthropic,branch,18843,39569880000,4829.6872,27582.8478,154442.4369,1.178202,7.916277,50.973726 +2026-03-10,Google,branch,186,260680000,4.9058,28.0049,156.7875,0.001168,0.007841,0.050486 +2026-03-10,Other / Unknown,branch,607,910500000,76.0776,434.3125,2431.5667,0.025866,0.173725,1.118521 +2026-03-11,Azure / Microsoft,branch,26693,26693000000,694.776,3962.5453,22179.6092,0.206696,1.386891,8.927293 +2026-03-11,AWS / Anthropic,branch,19131,40174470000,4903.4802,28004.2874,156802.1699,1.196204,8.03723,51.752556 +2026-03-11,Google,branch,166,232820000,4.3815,25.0119,140.031,0.001043,0.007003,0.04509 +2026-03-11,Other / Unknown,branch,532,798000000,66.6776,380.6495,2131.126,0.02267,0.15226,0.980318 +2026-03-12,Azure / Microsoft,branch,24757,24757000000,644.385,3675.1483,20570.9582,0.191705,1.286302,8.279811 +2026-03-12,AWS / Anthropic,branch,18333,38498460000,4698.9154,26835.9965,150260.6523,1.1463,7.701931,49.593528 +2026-03-12,Google,branch,160,224560000,4.2261,24.1245,135.0629,0.001006,0.006755,0.04349 +2026-03-12,Other / Unknown,branch,525,787500000,65.8003,375.641,2103.0849,0.022372,0.150256,0.967419 +2026-03-13,Azure / Microsoft,branch,24552,24552500000,639.0622,3644.7905,20401.0361,0.190121,1.275677,8.211417 +2026-03-13,AWS / Anthropic,branch,18805,39491445000,4820.1138,27528.1733,154136.3027,1.175867,7.900586,50.872687 +2026-03-13,Google,branch,173,242270000,4.5593,26.0271,145.7147,0.001085,0.007288,0.04692 +2026-03-13,Other / Unknown,branch,469,703500000,58.7816,335.5726,1878.7558,0.019986,0.134229,0.864228 +2026-03-14,Azure / Microsoft,branch,24334,24333500000,633.362,3612.2802,20219.0657,0.188425,1.264298,8.138174 +2026-03-14,AWS / Anthropic,branch,21606,45371865000,5537.8463,31627.2186,177087.7596,1.350958,9.077012,58.447815 +2026-03-14,Google,branch,175,244790000,4.6068,26.2978,147.2304,0.001096,0.007363,0.047408 +2026-03-14,Other / Unknown,branch,293,439500000,36.7228,209.6435,1173.7217,0.012486,0.083857,0.539912 +2026-03-15,Azure / Microsoft,branch,24067,24067000000,626.4254,3572.7186,19997.6269,0.186362,1.250452,8.049045 +2026-03-15,AWS / Anthropic,branch,25760,54095790000,6602.6418,37708.3767,211137.5024,1.610714,10.822304,69.685933 +2026-03-15,Google,branch,209,292740000,5.5092,31.4491,176.0702,0.001311,0.008806,0.056695 +2026-03-15,Other / Unknown,branch,281,421500000,35.2188,201.0574,1125.6512,0.011974,0.080423,0.5178 +2026-03-16,Azure / Microsoft,branch,23222,23222500000,604.4444,3447.3536,19295.9194,0.179822,1.206574,7.766608 +2026-03-16,AWS / Anthropic,branch,24839,52162635000,6366.6913,36360.8386,203592.3401,1.553154,10.435561,67.195652 +2026-03-16,Google,branch,201,281610000,5.2997,30.2534,169.376,0.001261,0.008471,0.054539 +2026-03-16,Other / Unknown,branch,405,607500000,50.7602,289.7802,1622.3798,0.017258,0.115912,0.746295 +2026-03-17,Azure / Microsoft,branch,22922,22921500000,596.6099,3402.6705,19045.814,0.177491,1.190935,7.66594 +2026-03-17,AWS / Anthropic,branch,23645,49655025000,6060.6259,34612.8671,193805.0625,1.47849,9.933893,63.965361 +2026-03-17,Google,branch,219,306950000,5.7766,32.9756,184.6169,0.001375,0.009233,0.059447 +2026-03-17,Other / Unknown,branch,445,667500000,55.7736,318.4005,1782.6148,0.018963,0.12736,0.820003 +2026-03-18,Azure / Microsoft,branch,22443,22443000000,584.1553,3331.6377,18648.2213,0.173786,1.166073,7.505909 +2026-03-18,AWS / Anthropic,branch,23261,48848310000,5962.1626,34050.5328,190656.4295,1.45447,9.772503,62.926155 +2026-03-18,Google,branch,198,277060000,5.2141,29.7646,166.6394,0.001241,0.008334,0.053658 +2026-03-18,Other / Unknown,branch,487,730500000,61.0376,348.4517,1950.8616,0.020753,0.139381,0.897396 +2026-03-19,Azure / Microsoft,branch,22824,22824000000,594.0721,3388.1967,18964.7998,0.176736,1.185869,7.633332 +2026-03-19,AWS / Anthropic,branch,21854,45892770000,5601.4252,31990.3242,179120.8676,1.366468,9.181223,59.118842 +2026-03-19,Google,branch,209,293020000,5.5144,31.4791,176.2386,0.001312,0.008814,0.056749 +2026-03-19,Other / Unknown,branch,518,777000000,64.9229,370.6325,2075.0438,0.022074,0.148253,0.95452 +2026-03-20,Azure / Microsoft,branch,21260,21260500000,553.3767,3156.0969,17665.6645,0.16463,1.104634,7.11043 +2026-03-20,AWS / Anthropic,branch,21591,45341625000,5534.1554,31606.1393,176969.732,1.350057,9.070962,58.40886 +2026-03-20,Google,branch,231,323750000,6.0927,34.7805,194.7214,0.00145,0.009739,0.0627 +2026-03-20,Other / Unknown,branch,455,682500000,57.0269,325.5555,1822.6736,0.019389,0.130222,0.83843 +2026-03-21,Azure / Microsoft,branch,20332,20332500000,529.2224,3018.3364,16894.5755,0.157444,1.056418,6.800067 +2026-03-21,AWS / Anthropic,branch,24590,51638265000,6302.6895,35995.3177,201545.7081,1.537541,10.330656,66.520161 +2026-03-21,Google,branch,229,320390000,6.0295,34.4195,192.7005,0.001435,0.009637,0.06205 +2026-03-21,Other / Unknown,branch,337,505500000,42.2375,241.1257,1349.9802,0.014361,0.09645,0.620991 +2026-03-22,Azure / Microsoft,branch,20912,20912500000,544.3188,3104.4367,17376.5061,0.161935,1.086553,6.994044 +2026-03-22,AWS / Anthropic,branch,27118,56947695000,6950.73,39696.3449,222268.5738,1.695631,11.392851,73.359743 +2026-03-22,Google,branch,155,216370000,4.0719,23.2446,130.137,0.000969,0.006508,0.041904 +2026-03-22,Other / Unknown,branch,479,718500000,60.0349,342.7277,1918.8146,0.020412,0.137091,0.882655 +2026-03-23,Azure / Microsoft,branch,22624,22624000000,588.8664,3358.5069,18798.6168,0.175188,1.175477,7.566443 +2026-03-23,AWS / Anthropic,branch,24921,52333470000,6387.5425,36479.922,204259.1142,1.558241,10.469738,67.415721 +2026-03-23,Google,branch,270,378420000,7.1216,40.6537,227.603,0.001695,0.011383,0.073288 +2026-03-23,Other / Unknown,branch,486,729000000,60.9122,347.7362,1946.8557,0.02071,0.139094,0.895554 +2026-03-24,Azure / Microsoft,branch,23364,23363500000,608.1144,3468.2848,19413.0784,0.180914,1.2139,7.813764 +2026-03-24,AWS / Anthropic,branch,25243,53010615000,6470.1912,36951.9373,206902.0316,1.578403,10.605206,68.288016 +2026-03-24,Google,branch,200,280490000,5.2786,30.133,168.7024,0.001256,0.008437,0.054322 +2026-03-24,Other / Unknown,branch,450,675000000,56.4002,321.978,1802.6442,0.019176,0.128791,0.829216 +2026-03-25,Azure / Microsoft,branch,23337,23337000000,607.4247,3464.351,19391.0591,0.180709,1.212523,7.804901 +2026-03-25,AWS / Anthropic,branch,24409,51259320000,6256.4375,35731.1678,200066.6743,1.526258,10.254845,66.032006 +2026-03-25,Google,branch,188,262920000,4.948,28.2455,158.1348,0.001178,0.007909,0.050919 +2026-03-25,Other / Unknown,branch,548,822000000,68.6829,392.0977,2195.22,0.023352,0.156839,1.009801 +2026-03-26,Azure / Microsoft,branch,22380,22379500000,582.5025,3322.2112,18595.4582,0.173294,1.162774,7.484672 +2026-03-26,AWS / Anthropic,branch,23674,49714455000,6067.8796,34654.2937,194037.0196,1.480259,9.945782,64.041918 +2026-03-26,Google,branch,207,289730000,5.4525,31.1257,174.2598,0.001298,0.008715,0.056112 +2026-03-26,Other / Unknown,branch,442,663000000,55.3976,316.2539,1770.5972,0.018835,0.126502,0.814475 +2026-03-27,Azure / Microsoft,branch,21088,21088000000,548.8868,3130.4895,17522.3317,0.163294,1.095671,7.052739 +2026-03-27,AWS / Anthropic,branch,22605,47471130000,5794.0714,33090.5465,185281.2543,1.413464,9.496987,61.152078 +2026-03-27,Google,branch,170,237580000,4.4711,25.5232,142.8939,0.001064,0.007147,0.046012 +2026-03-27,Other / Unknown,branch,363,544500000,45.4962,259.7289,1454.133,0.015469,0.103892,0.668901 +2026-03-28,Azure / Microsoft,branch,20833,20833000000,542.2496,3092.635,17310.4484,0.161319,1.082422,6.967455 +2026-03-28,AWS / Anthropic,branch,24969,52435530000,6399.9994,36551.0646,204657.4575,1.56128,10.490156,67.547194 +2026-03-28,Google,branch,140,195580000,3.6807,21.0112,117.6328,0.000876,0.005883,0.037878 +2026-03-28,Other / Unknown,branch,326,489000000,40.8588,233.2552,1305.9156,0.013892,0.093302,0.600721 +2026-03-29,Azure / Microsoft,branch,21894,21893500000,569.8527,3250.065,18191.6336,0.169531,1.137523,7.322133 +2026-03-29,AWS / Anthropic,branch,22638,47539695000,5802.44,33138.3408,185548.8656,1.415505,9.510704,61.240403 +2026-03-29,Google,branch,134,186970000,3.5186,20.0862,112.4542,0.000837,0.005624,0.03621 +2026-03-29,Other / Unknown,branch,343,514500000,42.9895,245.4188,1374.0155,0.014616,0.098168,0.632047 +2026-03-30,Azure / Microsoft,branch,22746,22746000000,592.0419,3376.6177,18899.9885,0.176132,1.181816,7.607245 +2026-03-30,AWS / Anthropic,branch,21736,45646440000,5571.3595,31818.6157,178159.4341,1.359133,9.131943,58.801521 +2026-03-30,Google,branch,178,248640000,4.6792,26.7114,149.546,0.001114,0.007479,0.048154 +2026-03-30,Other / Unknown,branch,432,648000000,54.1442,309.0989,1730.5384,0.018409,0.12364,0.796048 +2026-03-31,Azure / Microsoft,branch,16064,16064000000,418.1202,2384.6824,13347.8156,0.124391,0.834639,5.372496 +2026-03-31,AWS / Anthropic,branch,14739,30952110000,3777.8484,21575.6868,120807.0203,0.921606,6.192222,39.872357 +2026-03-31,Google,branch,117,163660000,3.08,17.582,98.4343,0.000733,0.004923,0.031696 +2026-03-31,Other / Unknown,branch,343,514500000,42.9895,245.4188,1374.0155,0.014616,0.098168,0.632047 +2026-04-01,Azure / Microsoft,branch,21395,21395000000,556.8775,3176.0633,17777.4225,0.165671,1.111622,7.155413 +2026-04-01,AWS / Anthropic,branch,19340,40613370000,4957.05,28310.23,158515.2099,1.209272,8.125036,52.317945 +2026-04-01,Google,branch,154,216020000,4.0653,23.207,129.9265,0.000968,0.006498,0.041836 +2026-04-01,Other / Unknown,branch,506,759000000,63.4189,362.0464,2026.9733,0.021562,0.144819,0.932408 +2026-04-02,Azure / Microsoft,branch,21588,21588000000,561.901,3204.7139,17937.7891,0.167166,1.12165,7.21996 +2026-04-02,AWS / Anthropic,branch,18704,39278400000,4794.1107,27379.6668,153304.7817,1.169523,7.857964,50.598243 +2026-04-02,Google,branch,162,226800000,4.2682,24.3651,136.4102,0.001016,0.006822,0.043924 +2026-04-02,Other / Unknown,branch,432,648000000,54.1442,309.0989,1730.5384,0.018409,0.12364,0.796048 +2026-04-03,Azure / Microsoft,branch,23034,23033500000,599.5251,3419.2967,19138.8765,0.178359,1.196754,7.703398 +2026-04-03,AWS / Anthropic,branch,19632,41228145000,5032.0861,28738.7692,160914.6953,1.227577,8.248027,53.109895 +2026-04-03,Google,branch,168,235270000,4.4276,25.2751,141.5045,0.001054,0.007077,0.045564 +2026-04-03,Other / Unknown,branch,594,891000000,74.4483,425.011,2379.4903,0.025312,0.170004,1.094566 +2026-04-04,Azure / Microsoft,branch,23673,23673000000,616.1702,3514.2298,19670.2465,0.183311,1.22998,7.917274 +2026-04-04,AWS / Anthropic,branch,22069,46345320000,5656.661,32305.7817,180887.1839,1.379942,9.271759,59.701815 +2026-04-04,Google,branch,208,290920000,5.4749,31.2535,174.9756,0.001303,0.008751,0.056342 +2026-04-04,Other / Unknown,branch,347,520500000,43.4908,248.2808,1390.039,0.014787,0.099312,0.639418 +2026-04-05,Azure / Microsoft,branch,22807,22807000000,593.6296,3385.6731,18950.6743,0.176605,1.184986,7.627646 +2026-04-05,AWS / Anthropic,branch,21493,45135300000,5508.9725,31462.317,176164.4393,1.343914,9.029685,58.143073 +2026-04-05,Google,branch,194,271600000,5.1113,29.178,163.3554,0.001216,0.00817,0.0526 +2026-04-05,Other / Unknown,branch,384,576000000,48.1282,274.7546,1538.2564,0.016364,0.109902,0.707598 +2026-04-06,Azure / Microsoft,branch,21412,21412000000,557.32,3178.5869,17791.5481,0.165803,1.112505,7.161098 +2026-04-06,AWS / Anthropic,branch,20422,42886620000,5234.5107,29894.837,167387.7733,1.276959,8.579818,55.246335 +2026-04-06,Google,branch,180,251720000,4.7372,27.0423,151.3985,0.001127,0.007572,0.04875 +2026-04-06,Other / Unknown,branch,413,619500000,51.7629,295.5043,1654.4268,0.017599,0.118202,0.761036 +2026-04-07,Azure / Microsoft,branch,22056,22056000000,574.0823,3274.188,18326.6572,0.170789,1.145966,7.37648 +2026-04-07,AWS / Anthropic,branch,19802,41583990000,5075.5186,28986.8169,162303.5691,1.238173,8.319216,53.568293 +2026-04-07,Google,branch,214,299740000,5.6409,32.2011,180.2804,0.001343,0.009016,0.05805 +2026-04-07,Other / Unknown,branch,597,895500000,74.8243,427.1575,2391.508,0.02544,0.170863,1.100094 +2026-04-08,Azure / Microsoft,branch,22669,22669000000,590.0377,3365.1871,18836.008,0.175536,1.177815,7.581493 +2026-04-08,AWS / Anthropic,branch,18317,38466120000,4694.9682,26813.4534,150134.4283,1.145337,7.695461,49.551868 +2026-04-08,Google,branch,164,229320000,4.3156,24.6359,137.9259,0.001027,0.006898,0.044412 +2026-04-08,Other / Unknown,branch,500,750000000,62.6669,357.7533,2002.938,0.021307,0.143101,0.921351 +2026-04-09,Azure / Microsoft,branch,23432,23432000000,609.8974,3478.4536,19469.996,0.181444,1.217459,7.836673 +2026-04-09,AWS / Anthropic,branch,19100,40109370000,4895.5344,27958.9083,156548.0827,1.194266,8.024207,51.668695 +2026-04-09,Google,branch,157,220220000,4.1444,23.6582,132.4526,0.000986,0.006624,0.04265 +2026-04-09,Other / Unknown,branch,559,838500000,70.0616,399.9682,2239.2847,0.023821,0.159987,1.030071 +2026-04-10,Azure / Microsoft,branch,23802,23802500000,619.5409,3533.4539,19777.85,0.184313,1.236709,7.960585 +2026-04-10,AWS / Anthropic,branch,18642,39148515000,4778.2576,27289.1282,152797.8366,1.165656,7.83198,50.430926 +2026-04-10,Google,branch,161,225890000,4.2511,24.2674,135.8629,0.001012,0.006795,0.043748 +2026-04-10,Other / Unknown,branch,499,748500000,62.5416,357.0378,1998.9321,0.021264,0.142815,0.919509 +2026-04-11,Azure / Microsoft,branch,22817,22817000000,593.8899,3387.1575,18958.9834,0.176682,1.185505,7.630991 +2026-04-11,AWS / Anthropic,branch,18330,38493840000,4698.3515,26832.7761,150242.6203,1.146163,7.701007,49.587577 +2026-04-11,Google,branch,144,201040000,3.7834,21.5977,120.9167,0.0009,0.006047,0.038935 +2026-04-11,Other / Unknown,branch,381,571500000,47.7522,272.608,1526.2388,0.016236,0.109043,0.70207 +2026-04-12,Azure / Microsoft,branch,21370,21370000000,556.2268,3172.3521,17756.6497,0.165477,1.110323,7.147051 +2026-04-12,AWS / Anthropic,branch,17643,37049670000,4522.0839,25826.0932,144605.9812,1.103162,7.412089,47.727204 +2026-04-12,Google,branch,136,190820000,3.5911,20.4998,114.7698,0.000855,0.00574,0.036956 +2026-04-12,Other / Unknown,branch,325,487500000,40.7335,232.5397,1301.9097,0.013849,0.093016,0.598878 +2026-04-13,Azure / Microsoft,branch,22330,22330500000,581.2271,3314.9372,18554.7433,0.172915,1.160228,7.468284 +2026-04-13,AWS / Anthropic,branch,18898,39685695000,4843.8229,27663.5786,154894.4664,1.181651,7.939447,51.122919 +2026-04-13,Google,branch,154,214970000,4.0456,23.0942,129.295,0.000963,0.006466,0.041633 +2026-04-13,Other / Unknown,branch,561,841500000,70.3123,401.3992,2247.2964,0.023906,0.16056,1.033756 +2026-04-14,Azure / Microsoft,branch,23492,23492500000,611.4721,3487.4347,19520.2664,0.181913,1.220602,7.856907 +2026-04-14,AWS / Anthropic,branch,20085,42178395000,5148.0685,29401.1569,164623.5497,1.255871,8.438132,54.334003 +2026-04-14,Google,branch,170,237370000,4.4671,25.5007,142.7676,0.001063,0.00714,0.045971 +2026-04-14,Other / Unknown,branch,573,859500000,71.8163,409.9853,2295.3669,0.024418,0.163994,1.055869 +2026-04-15,Azure / Microsoft,branch,23868,23868000000,621.2458,3543.1773,19832.2749,0.184821,1.240112,7.982491 +2026-04-15,AWS / Anthropic,branch,19882,41752620000,5096.1007,29104.3633,162961.7371,1.243194,8.352952,53.785521 +2026-04-15,Google,branch,176,246120000,4.6318,26.4407,148.0303,0.001102,0.007403,0.047666 +2026-04-15,Other / Unknown,branch,636,954000000,79.7123,455.0622,2547.7371,0.027102,0.182025,1.171959 +2026-04-16,Azure / Microsoft,branch,23515,23515000000,612.0577,3490.7748,19538.9619,0.182087,1.221771,7.864432 +2026-04-16,AWS / Anthropic,branch,22308,46846800000,5717.869,32655.3468,182844.4755,1.394874,9.372085,60.347819 +2026-04-16,Google,branch,190,266000000,5.0059,28.5764,159.9873,0.001191,0.008001,0.051516 +2026-04-16,Other / Unknown,branch,595,892500000,74.5736,425.7265,2383.4962,0.025355,0.170291,1.096408 +2026-04-17,Azure / Microsoft,branch,23168,23167500000,603.0129,3439.1889,19250.219,0.179396,1.203716,7.748213 +2026-04-17,AWS / Anthropic,branch,22750,47774895000,5831.1473,33302.2909,186466.8583,1.422508,9.557757,61.543387 +2026-04-17,Google,branch,155,216370000,4.0719,23.2446,130.137,0.000969,0.006508,0.041904 +2026-04-17,Other / Unknown,branch,726,1089000000,90.9924,519.4578,2908.266,0.030937,0.207783,1.337802 +2026-04-18,Azure / Microsoft,branch,22556,22556500000,587.1095,3348.4866,18742.5301,0.174665,1.17197,7.543868 +2026-04-18,AWS / Anthropic,branch,22306,46843125000,5717.4204,32652.7851,182830.1318,1.394765,9.371349,60.343085 +2026-04-18,Google,branch,156,218750000,4.1167,23.5003,131.5685,0.00098,0.00658,0.042365 +2026-04-18,Other / Unknown,branch,623,934500000,78.083,445.7607,2495.6607,0.026548,0.178304,1.148004 +2026-04-19,Azure / Microsoft,branch,22498,22497500000,585.5739,3339.7281,18693.5061,0.174208,1.168905,7.524136 +2026-04-19,AWS / Anthropic,branch,23070,48447735000,5913.2705,33771.3053,189092.9731,1.442542,9.692365,62.410136 +2026-04-19,Google,branch,177,248010000,4.6674,26.6437,149.1671,0.001111,0.00746,0.048032 +2026-04-19,Other / Unknown,branch,754,1131000000,94.5017,539.492,3020.4305,0.032131,0.215797,1.389398 +2026-04-20,Azure / Microsoft,branch,22650,22650000000,589.5432,3362.3666,18820.2206,0.175389,1.176828,7.575139 +2026-04-20,AWS / Anthropic,branch,22313,46856460000,5719.048,32662.0804,182882.1788,1.395162,9.374017,60.360263 +2026-04-20,Google,branch,156,218960000,4.1207,23.5229,131.6948,0.000981,0.006586,0.042406 +2026-04-20,Other / Unknown,branch,788,1182000000,98.7631,563.8193,3156.6303,0.033579,0.225528,1.45205 +2026-04-21,Azure / Microsoft,branch,23376,23376000000,608.4398,3470.1405,19423.4648,0.181011,1.214549,7.817945 +2026-04-21,AWS / Anthropic,branch,21382,44901150000,5480.3934,31299.0988,175250.5448,1.336942,8.982841,57.841442 +2026-04-21,Google,branch,202,283500000,5.3353,30.4564,170.5128,0.00127,0.008528,0.054905 +2026-04-21,Other / Unknown,branch,932,1398000000,116.8111,666.8522,3733.4764,0.039716,0.266741,1.717399 +2026-04-22,Azure / Microsoft,branch,22326,22326000000,581.11,3314.2692,18551.0042,0.17288,1.159994,7.466779 +2026-04-22,AWS / Anthropic,branch,21124,44361030000,5414.4692,30922.5991,173142.4401,1.32086,8.874786,57.145662 +2026-04-22,Google,branch,197,275380000,5.1825,29.5841,165.6289,0.001233,0.008284,0.053333 +2026-04-22,Other / Unknown,branch,936,1404000000,117.3125,669.7142,3749.4999,0.039886,0.267886,1.72477 +2026-04-23,Azure / Microsoft,branch,23522,23522000000,612.2399,3491.814,19544.7784,0.182141,1.222135,7.866773 +2026-04-23,AWS / Anthropic,branch,20991,44080680000,5380.2512,30727.1765,172048.2256,1.312512,8.8187,56.784517 +2026-04-23,Google,branch,196,274680000,5.1693,29.5089,165.2079,0.00123,0.008262,0.053197 +2026-04-23,Other / Unknown,branch,868,1302000000,108.7898,621.0598,3477.1004,0.036989,0.248424,1.599466 +2026-04-24,Azure / Microsoft,branch,21881,21881000000,569.5273,3248.2094,18181.2471,0.169434,1.136873,7.317952 +2026-04-24,AWS / Anthropic,branch,22574,47404350000,5785.9206,33043.9963,185020.61,1.411475,9.483627,61.066052 +2026-04-24,Google,branch,184,258300000,4.861,27.7492,155.3561,0.001157,0.00777,0.050025 +2026-04-24,Other / Unknown,branch,1163,1744500000,145.7632,832.1343,4658.8338,0.04956,0.332854,2.143064 +2026-04-25,Azure / Microsoft,branch,19320,19320500000,502.8816,2868.1061,16053.6897,0.149607,1.003837,6.46161 +2026-04-25,AWS / Anthropic,branch,20157,42329175000,5166.4719,29506.2606,165212.0486,1.260361,8.468297,54.528237 +2026-04-25,Google,branch,186,260050000,4.894,27.9372,156.4086,0.001165,0.007822,0.050364 +2026-04-25,Other / Unknown,branch,1340,2010000000,167.9473,958.7789,5367.8738,0.057102,0.383512,2.469222 +2026-04-26,Azure / Microsoft,branch,19134,19134500000,498.0404,2840.4946,15899.1396,0.148167,0.994173,6.399404 +2026-04-26,AWS / Anthropic,branch,20869,43825005000,5349.0449,30548.9539,171050.3183,1.3049,8.76755,56.455158 +2026-04-26,Google,branch,162,227430000,4.2801,24.4328,136.7891,0.001019,0.006841,0.044046 +2026-04-26,Other / Unknown,branch,1475,2212500000,184.8674,1055.3723,5908.6671,0.062855,0.422149,2.717987 +2026-04-27,Azure / Microsoft,branch,20996,20996500000,546.5052,3116.9064,17446.303,0.162585,1.090917,7.022137 +2026-04-27,AWS / Anthropic,branch,21562,45279465000,5526.5685,31562.8097,176727.1196,1.348206,9.058526,58.328786 +2026-04-27,Google,branch,189,264390000,4.9756,28.4034,159.0189,0.001184,0.007953,0.051204 +2026-04-27,Other / Unknown,branch,1590,2385000000,199.2808,1137.6556,6369.3428,0.067755,0.455062,2.929898 +2026-04-28,Azure / Microsoft,branch,22824,22823500000,594.0591,3388.1225,18964.3844,0.176733,1.185843,7.633165 +2026-04-28,AWS / Anthropic,branch,20136,42285075000,5161.0893,29475.5199,165039.925,1.259048,8.459474,54.471427 +2026-04-28,Google,branch,203,283850000,5.3418,30.494,170.7233,0.001271,0.008538,0.054973 +2026-04-28,Other / Unknown,branch,1390,2085000000,174.214,994.5543,5568.1676,0.059233,0.397822,2.561357 +2026-04-29,Azure / Microsoft,branch,23360,23359500000,608.0103,3467.6911,19409.7547,0.180883,1.213692,7.812426 +2026-04-29,AWS / Anthropic,branch,21636,45434655000,5545.5102,31670.9874,177332.8309,1.352827,9.089573,58.528701 +2026-04-29,Google,branch,212,296730000,5.5842,31.8777,178.47,0.001329,0.008926,0.057467 +2026-04-29,Other / Unknown,branch,1419,2128500000,177.8487,1015.304,5684.338,0.060469,0.406122,2.614796 +2026-04-30,Azure / Microsoft,branch,12772,12771500000,332.4217,1895.9146,10612.0286,0.098895,0.66357,4.271342 +2026-04-30,AWS / Anthropic,branch,11955,25105185000,3064.2041,17499.9898,97986.2954,0.747513,5.022497,32.340377 +2026-04-30,Google,branch,126,175910000,3.3105,18.898,105.8021,0.000788,0.005291,0.034068 +2026-04-30,Other / Unknown,branch,741,1111500000,92.8724,530.1904,2968.3541,0.031577,0.212076,1.365443 +2026-05-01,Azure / Microsoft,branch,20174,20174500000,525.1099,2994.8814,16763.291,0.15622,1.048209,6.747225 +2026-05-01,AWS / Anthropic,branch,20605,43269765000,5281.2753,30161.9146,168883.1998,1.288367,8.656469,55.7399 +2026-05-01,Google,branch,157,219590000,4.1325,23.5906,132.0737,0.000984,0.006605,0.042528 +2026-05-01,Other / Unknown,branch,1117,1675500000,139.9979,799.2209,4474.5635,0.047599,0.319688,2.058299 +2026-05-02,Azure / Microsoft,branch,20908,20908500000,544.2147,3103.8429,17373.1825,0.161904,1.086345,6.992706 +2026-05-02,AWS / Anthropic,branch,20272,42570885000,5195.9738,29674.7486,166155.4501,1.267558,8.516653,54.839606 +2026-05-02,Google,branch,181,252910000,4.7596,27.1701,152.1142,0.001133,0.007608,0.048981 +2026-05-02,Other / Unknown,branch,955,1432500000,119.6938,683.3089,3825.6116,0.040696,0.273324,1.759781 +2026-05-03,Azure / Microsoft,branch,20665,20665000000,537.8768,3067.6956,17170.8547,0.160018,1.073693,6.911269 +2026-05-03,AWS / Anthropic,branch,21062,44229150000,5398.3727,30830.67,172627.7085,1.316933,8.848402,56.975775 +2026-05-03,Google,branch,168,235900000,4.4395,25.3427,141.8835,0.001057,0.007096,0.045686 +2026-05-03,Other / Unknown,branch,1132,1698000000,141.8779,809.9535,4534.6516,0.048238,0.323981,2.08594 +2026-05-04,Azure / Microsoft,branch,21188,21188500000,551.5027,3145.4086,17605.8386,0.164072,1.100893,7.08635 +2026-05-04,AWS / Anthropic,branch,22172,46560885000,5682.9717,32456.0449,181728.5406,1.386361,9.314885,59.979505 +2026-05-04,Google,branch,172,240310000,4.5225,25.8165,144.5359,0.001076,0.007229,0.046541 +2026-05-04,Other / Unknown,branch,1122,1683000000,140.6246,802.7985,4494.5929,0.047812,0.321119,2.067513 +2026-05-05,Azure / Microsoft,branch,22575,22575000000,587.5911,3351.2329,18757.902,0.174808,1.172932,7.550056 +2026-05-05,AWS / Anthropic,branch,21059,44223900000,5397.7319,30827.0104,172607.2176,1.316777,8.847352,56.969012 +2026-05-05,Google,branch,166,232400000,4.3736,24.9667,139.7784,0.001041,0.006991,0.045009 +2026-05-05,Other / Unknown,branch,1129,1693500000,141.5019,807.807,4522.634,0.048111,0.323123,2.080412 +2026-05-06,Azure / Microsoft,branch,22881,22881000000,595.5557,3396.6583,19012.162,0.177178,1.18883,7.652395 +2026-05-06,AWS / Anthropic,branch,23549,49453530000,6036.0325,34472.4116,193018.6214,1.47249,9.893582,63.705796 +2026-05-06,Google,branch,199,278180000,5.2351,29.8849,167.313,0.001246,0.008368,0.053875 +2026-05-06,Other / Unknown,branch,859,1288500000,107.6618,614.6202,3441.0475,0.036605,0.245848,1.582882 +2026-05-07,Azure / Microsoft,branch,25410,25410500000,661.3946,3772.1597,21113.961,0.196765,1.320256,8.498369 +2026-05-07,AWS / Anthropic,branch,26483,55613985000,6787.9445,38766.66,217063.0634,1.655919,11.126031,71.641664 +2026-05-07,Google,branch,192,268310000,5.0494,28.8245,161.3766,0.001202,0.008071,0.051963 +2026-05-07,Other / Unknown,branch,782,1173000000,98.0111,559.5262,3132.595,0.033324,0.22381,1.440994 +2026-05-08,Azure / Microsoft,branch,22314,22314000000,580.7976,3312.4878,18541.0333,0.172787,1.159371,7.462766 +2026-05-08,AWS / Anthropic,branch,25072,52651830000,6426.3998,36701.8402,205501.6829,1.56772,10.533428,67.82583 +2026-05-08,Google,branch,203,283780000,5.3405,30.4865,170.6812,0.001271,0.008536,0.054959 +2026-05-08,Other / Unknown,branch,840,1260000000,105.2804,601.0256,3364.9358,0.035795,0.24041,1.54787 +2026-05-09,Azure / Microsoft,branch,22470,22469500000,584.8451,3335.5716,18670.2405,0.173991,1.16745,7.514772 +2026-05-09,AWS / Anthropic,branch,24337,51107175000,6237.8675,35625.1125,199472.8478,1.521728,10.224407,65.836013 +2026-05-09,Google,branch,226,316050000,5.9478,33.9533,190.0902,0.001416,0.009507,0.061209 +2026-05-09,Other / Unknown,branch,811,1216500000,101.6457,580.2759,3248.7654,0.03456,0.23211,1.494432 +2026-05-10,Azure / Microsoft,branch,20158,20158500000,524.6934,2992.5063,16749.9964,0.156096,1.047377,6.741874 +2026-05-10,AWS / Anthropic,branch,23491,49330155000,6020.974,34386.411,192537.0851,1.468817,9.8689,63.546865 +2026-05-10,Google,branch,215,300930000,5.6633,32.3289,180.9961,0.001348,0.009052,0.058281 +2026-05-10,Other / Unknown,branch,880,1320000000,110.2938,629.6459,3525.1709,0.0375,0.251858,1.621579 diff --git a/dashboard.py b/dashboard.py new file mode 100644 index 0000000..47e9bfa --- /dev/null +++ b/dashboard.py @@ -0,0 +1,1123 @@ +#!/usr/bin/env python3 +""" +Generate an interactive HTML dashboard of AI coding agent commit data. + +Usage: + python3 dashboard.py + python3 dashboard.py --output my_dashboard.html + +Reads from daily_ai_commits.csv and push_events_daily.csv. +""" + +import csv +import sys +from datetime import datetime, timedelta +from pathlib import Path +from collections import defaultdict + +import plotly.graph_objects as go + +AI_CSV = "daily_ai_commits.csv" +PUSH_CSV = "push_events_daily.csv" +BRANCH_CSV = "branch_activity_daily.csv" +BRANCH_CREATES_CSV = "branch_creates_daily.csv" +AGENT_BRANCH_CREATES_CSV = "agent_branch_creates_daily.csv" +CARBON_CSV = "daily_carbon_estimates.csv" +CC_WEB_VS_CLI_CSV = "claude_code_web_vs_cli_pilot.csv" +OUTPUT = "dashboard.html" +TOP_N = 5 +BRANCH_TOP_N = 5 +# Empirical multiplier: distinct commits per PushEvent, bilaterally winsorized +# at [1, 50] to neutralize mirror/import dumps that otherwise dominate the +# unwinsorized mean. Derived from `githubarchive.day.202509*` (full month, +# 71.5M push events). Winsorized mean = 1.29, 95% CI [1.28, 1.31], n=30 days. +# Raw (unwinsorized) mean = 3.52 — but ~58% of that volume comes from +# <0.1% of pushes that look like mirror dumps, not developer activity. +# See METHODOLOGY.md §7.3 for derivation. +COMMITS_PER_PUSH = 1.29 +# Empty filter = all dates. (Was "2026-03" when this was a monthly snapshot.) +MONTH_FILTER = "" + +# Superseded commit signatures — dropped from all aggregates to avoid +# double-counting with their retroactive-backfill replacements. Kept in +# sync with intervention_data.SUPERSEDED_TOOLS. +SUPERSEDED_TOOLS = frozenset({"Copilot SWE Agent", "Warp (Oz Agent)"}) + +for i, arg in enumerate(sys.argv): + if arg == "--output" and i + 1 < len(sys.argv): + OUTPUT = sys.argv[i + 1] + +# ── WCAG AA accessible palette ── +# All colors tested against #FFFEFC background for 3:1+ contrast (graphics) +# and against #1a1a1a for dark-bg use +CHART_COLORS = [ + "#C1440E", # burnt sienna — 5.2:1 on cream + "#1B6B93", # deep teal — 5.8:1 on cream + "#2D6A4F", # forest green — 5.4:1 on cream + "#7B2D8E", # deep purple — 5.6:1 on cream + "#B8860B", # dark goldenrod — 3.8:1 on cream + "#6b6b6b", # gray — 4.1:1 on cream (Other) +] + +# Dash patterns for non-color differentiation (accessibility) +DASH_PATTERNS = ["solid", "dash", "dot", "dashdot", "longdash"] + +LAYOUT_DEFAULTS = dict( + template="plotly_white", + font=dict(family="Noto Sans, -apple-system, sans-serif", size=13, color="#1a1a1a"), + margin=dict(l=60, r=30, t=50, b=50), + hovermode="x unified", + paper_bgcolor="rgba(0,0,0,0)", + plot_bgcolor="#FFFEFC", + legend=dict(orientation="h", yanchor="bottom", y=1.02, xanchor="right", x=1, + font=dict(size=11)), +) + + +def load_data(): + ai = defaultdict(dict) + with open(AI_CSV) as f: + for row in csv.DictReader(f): + if row.get("view", "all") != "all": + continue + if not row["date"].startswith(MONTH_FILTER): + continue + if row["tool"] in SUPERSEDED_TOOLS: + continue + try: + count = int(row["commits"]) + except (ValueError, KeyError): + count = 0 + ai[row["date"]][row["tool"]] = count + + push = {} + if Path(PUSH_CSV).exists(): + with open(PUSH_CSV) as f: + for row in csv.DictReader(f): + if not row["date"].startswith(MONTH_FILTER): + continue + try: + push[row["date"]] = int(row["push_events"]) + except (ValueError, KeyError): + pass + + # Branch activity: date -> agent -> push_events + branches = defaultdict(dict) + if Path(BRANCH_CSV).exists(): + with open(BRANCH_CSV) as f: + for row in csv.DictReader(f): + if not row["date"].startswith(MONTH_FILTER): + continue + try: + count = int(row["push_events"]) + except (ValueError, KeyError): + count = 0 + branches[row["date"]][row["agent"]] = count + + # Carbon estimates: signal -> date -> provider -> {low, mid, high} + # Month-filtered (per-provider + cumulative charts). + carbon = {"commit": defaultdict(dict), "branch": defaultdict(dict)} + # Full-range (last 365 days) for the total daily emissions charts. + carbon_full = {"commit": defaultdict(dict), "branch": defaultdict(dict)} + if Path(CARBON_CSV).exists(): + cutoff = (datetime.now() - timedelta(days=365)).strftime("%Y-%m-%d") + with open(CARBON_CSV) as f: + for row in csv.DictReader(f): + signal = row["signal"] + payload = { + "low": float(row["tco2e_low"]), + "mid": float(row["tco2e_mid"]), + "high": float(row["tco2e_high"]), + } + if row["date"] >= cutoff: + carbon_full[signal][row["date"]][row["provider_group"]] = payload + if row["date"].startswith(MONTH_FILTER): + carbon[signal][row["date"]][row["provider_group"]] = payload + + # Full-range loaders for the long-history % share charts. + ai_full = defaultdict(dict) + with open(AI_CSV) as f: + for row in csv.DictReader(f): + if row.get("view", "all") != "all": + continue + if row["tool"] in SUPERSEDED_TOOLS: + continue + try: + count = int(row["commits"]) + except (ValueError, KeyError): + count = 0 + ai_full[row["date"]][row["tool"]] = count + + push_full = {} + if Path(PUSH_CSV).exists(): + with open(PUSH_CSV) as f: + for row in csv.DictReader(f): + try: + push_full[row["date"]] = int(row["push_events"]) + except (ValueError, KeyError): + pass + + branches_full = defaultdict(dict) + if Path(BRANCH_CSV).exists(): + with open(BRANCH_CSV) as f: + for row in csv.DictReader(f): + try: + count = int(row["push_events"]) + except (ValueError, KeyError): + count = 0 + branches_full[row["date"]][row["agent"]] = count + + branch_creates_full = {} + if Path(BRANCH_CREATES_CSV).exists(): + with open(BRANCH_CREATES_CSV) as f: + for row in csv.DictReader(f): + try: + branch_creates_full[row["date"]] = int(row["branch_creates"]) + except (ValueError, KeyError): + pass + + # Per-day, per-agent branch CREATE counts (apples-to-apples numerator + # for the AI-share-of-branches chart). + agent_branch_creates_full = defaultdict(dict) + if Path(AGENT_BRANCH_CREATES_CSV).exists(): + with open(AGENT_BRANCH_CREATES_CSV) as f: + for row in csv.DictReader(f): + try: + count = int(row["branch_creates"]) + except (ValueError, KeyError): + count = 0 + agent_branch_creates_full[row["date"]][row["agent"]] = count + + # Claude Code web-vs-CLI pilot (session-URL detection in commit messages, + # only meaningful from 2026-01-15 onward — Claude Code v2.1.9 release). + cc_web_share = {} + if Path(CC_WEB_VS_CLI_CSV).exists(): + with open(CC_WEB_VS_CLI_CSV) as f: + for row in csv.DictReader(f): + try: + cc_web_share[row["date"]] = float(row["web_share_pct"]) + except (ValueError, KeyError): + pass + + return (ai, push, branches, carbon, carbon_full, + ai_full, push_full, branches_full, branch_creates_full, + agent_branch_creates_full, cc_web_share) + + +def kernel_smooth(values, bandwidth=3): + """Simple Gaussian kernel smoother.""" + import math + n = len(values) + smoothed = [] + for i in range(n): + if values[i] is None: + smoothed.append(None) + continue + wsum, wcount = 0.0, 0.0 + for j in range(n): + if values[j] is None: + continue + dist = abs(i - j) + weight = math.exp(-0.5 * (dist / bandwidth) ** 2) + wsum += weight * values[j] + wcount += weight + smoothed.append(wsum / wcount if wcount > 0 else None) + return smoothed + + +def build_dashboard(ai, push, branches, carbon, carbon_full, + ai_full, push_full, branches_full, branch_creates_full, + agent_branch_creates_full, cc_web_share): + dates = sorted(ai.keys()) + if not dates: + print("No data found.") + return + + # Drop last day if incomplete + if len(dates) >= 2: + last_total = sum(v for v in ai[dates[-1]].values() if v > 0) + prev_total = sum(v for v in ai[dates[-2]].values() if v > 0) + if last_total < prev_total * 0.75: + dates = dates[:-1] + + # Top N tools + tool_totals = defaultdict(int) + for d in dates: + for tool, count in ai[d].items(): + tool_totals[tool] += count + ranked = sorted(tool_totals, key=lambda t: -tool_totals[t]) + top_tools = ranked[:TOP_N] + other_tools = ranked[TOP_N:] + + color_map = {t: CHART_COLORS[i] for i, t in enumerate(top_tools)} + color_map["Other"] = CHART_COLORS[-1] + + # Build series + series = {t: [] for t in top_tools} + series["Other"] = [] + daily_totals = [] + daily_share = [] + + for d in dates: + day_data = ai[d] + day_total = sum(v for v in day_data.values() if v > 0) + daily_totals.append(day_total) + for t in top_tools: + series[t].append(day_data.get(t, 0)) + series["Other"].append(sum(day_data.get(t, 0) for t in other_tools)) + pe = push.get(d, 0) + est = pe * COMMITS_PER_PUSH if pe > 0 else 0 + daily_share.append(100 * day_total / est if est > 0 else None) + + # Smoothed share + share_smooth = kernel_smooth(daily_share, bandwidth=3) + + stack_order = ["Other"] + list(reversed(top_tools)) + grid_color = "#EFE2D0" + + # ════════════════════════════════════════════════════════════ + # Chart 1: Stacked area — total commits by tool + # ════════════════════════════════════════════════════════════ + fig1 = go.Figure() + for tool in stack_order: + fig1.add_trace(go.Scatter( + x=dates, y=series[tool], name=tool, stackgroup="one", + mode="lines", line=dict(width=0.5, color=color_map[tool]), + hovertemplate=f"{tool}
%{{y:,.0f}}", + )) + fig1.update_layout(**LAYOUT_DEFAULTS, title="Daily AI Agent Commits by Tool", + yaxis_title="Commits", height=480, + yaxis=dict(gridcolor=grid_color)) + + # ════════════════════════════════════════════════════════════ + # Chart 2: Tool share (100% stacked) + # ════════════════════════════════════════════════════════════ + fig2 = go.Figure() + for tool in stack_order: + pcts = [100 * series[tool][i] / daily_totals[i] if daily_totals[i] > 0 else 0 + for i in range(len(dates))] + fig2.add_trace(go.Scatter( + x=dates, y=pcts, name=tool, stackgroup="one", groupnorm="percent", + mode="lines", line=dict(width=0.5, color=color_map[tool]), + hovertemplate=f"{tool}
%{{y:.1f}}%", + )) + fig2.update_layout(**LAYOUT_DEFAULTS, title="Tool Share of AI Commits", + yaxis_title="Share (%)", height=450, + yaxis=dict(range=[0, 100], gridcolor=grid_color)) + fig2.update_layout(margin=dict(l=60, r=30, t=80, b=50), + legend=dict(orientation="h", yanchor="bottom", y=1.02, + xanchor="left", x=0, font=dict(size=9))) + + # ════════════════════════════════════════════════════════════ + # Chart 3: Top 5 tools — simple line chart, one axis + # Uses dash patterns + color for accessibility + # ════════════════════════════════════════════════════════════ + fig3 = go.Figure() + for i, tool in enumerate(top_tools): + fig3.add_trace(go.Scatter( + x=dates, y=series[tool], name=tool, + mode="lines", + line=dict(width=3 if i == 0 else 2.5, color=color_map[tool], + dash=DASH_PATTERNS[i]), + hovertemplate=f"{tool}
%{{y:,.0f}}", + )) + fig3.update_layout(**LAYOUT_DEFAULTS, title=f"Top {TOP_N} Tools — Daily Commits", + yaxis_title="Commits", height=450, + yaxis=dict(gridcolor=grid_color)) + fig3.update_layout(margin=dict(l=60, r=30, t=80, b=50), + legend=dict(orientation="h", yanchor="bottom", y=1.02, + xanchor="left", x=0, font=dict(size=9))) + + # ════════════════════════════════════════════════════════════ + # Chart 4a: AI % of total GitHub commits (daily + kernel smooth) + # ════════════════════════════════════════════════════════════ + share_d = [d for d, s in zip(dates, daily_share) if s is not None] + share_v = [s for s in daily_share if s is not None] + smooth_d = [d for d, s in zip(dates, share_smooth) if s is not None] + smooth_v = [s for s in share_smooth if s is not None] + + fig4a = go.Figure() + fig4a.add_trace(go.Scatter( + x=share_d, y=share_v, name="Daily", + mode="markers", marker=dict(size=7, color="#FDA880", line=dict(width=1, color="#C1440E")), + hovertemplate="%{y:.2f}%", + )) + fig4a.add_trace(go.Scatter( + x=smooth_d, y=smooth_v, name="Trend", + mode="lines", line=dict(color="#C1440E", width=3), + hovertemplate="Trend
%{y:.2f}%", + )) + fig4a.update_layout(**LAYOUT_DEFAULTS, title="AI Share of Total GitHub Commits", + yaxis_title="AI %", yaxis=dict(ticksuffix="%", gridcolor=grid_color), + height=420) + + # ════════════════════════════════════════════════════════════ + # Chart 4b: Simple daily AI commits bar chart + # ════════════════════════════════════════════════════════════ + fig4b = go.Figure() + # Color bars by weekday vs weekend + bar_colors = [] + for d in dates: + wd = datetime.strptime(d, "%Y-%m-%d").weekday() + bar_colors.append("#FDA880" if wd < 5 else "#EFE2D0") + fig4b.add_trace(go.Bar( + x=dates, y=daily_totals, name="AI Commits", + marker_color=bar_colors, marker_line=dict(width=0.5, color="#C1440E"), + hovertemplate="%{x}
%{y:,.0f} commits", + )) + fig4b.update_layout(**LAYOUT_DEFAULTS, title="Daily AI Commits", + yaxis_title="Commits", height=420, showlegend=False, + yaxis=dict(gridcolor=grid_color), bargap=0.15) + + # ════════════════════════════════════════════════════════════ + # Chart 5: Day-of-week averages + # ════════════════════════════════════════════════════════════ + dow_order = ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"] + dow_data = defaultdict(list) + for i, d in enumerate(dates): + wd = datetime.strptime(d, "%Y-%m-%d").strftime("%a") + dow_data[wd].append(daily_totals[i]) + dow_avgs = [sum(dow_data.get(d, [0])) / max(len(dow_data.get(d, [1])), 1) for d in dow_order] + peak = max(dow_avgs) if dow_avgs else 1 + valley = min(dow_avgs) if dow_avgs else 0 + + fig5 = go.Figure(go.Bar( + x=dow_order, y=dow_avgs, + marker_color=["#1B6B93" if d in ["Mon", "Tue", "Wed", "Thu", "Fri"] else "#8DB0C3" + for d in dow_order], + text=[f"{v:,.0f}" for v in dow_avgs], + textposition="outside", textfont=dict(size=12, color="#2d2d2d"), + hovertemplate="%{x}
Avg: %{y:,.0f}", + )) + fig5.update_layout(**LAYOUT_DEFAULTS, title="Average AI Commits by Day of Week", + yaxis_title="Avg Commits", height=380, showlegend=False, + yaxis=dict(gridcolor=grid_color, range=[valley * 0.92, peak * 1.06])) + + # ════════════════════════════════════════════════════════════ + # Charts 6 & 7: Branch-based agent activity (separate signal) + # ════════════════════════════════════════════════════════════ + fig6 = None + fig7 = None + branch_agents_ranked = [] + + if branches: + branch_dates = sorted(d for d in dates if d in branches) + # Drop last day if incomplete (same logic) + if len(branch_dates) >= 2: + bl = sum(branches[branch_dates[-1]].values()) + bp = sum(branches[branch_dates[-2]].values()) + if bl < bp * 0.75: + branch_dates = branch_dates[:-1] + + # Rank agents by total branch pushes + b_totals = defaultdict(int) + for d in branch_dates: + for agent, count in branches[d].items(): + b_totals[agent] += count + branch_agents_ranked = sorted(b_totals, key=lambda a: -b_totals[a]) + b_top = branch_agents_ranked[:BRANCH_TOP_N] + b_other = branch_agents_ranked[BRANCH_TOP_N:] + + # Branch color map (reuse commit colors where agent name matches, else assign) + b_color_map = {} + used_colors = set() + for agent in b_top: + # Try to match commit tool name + if agent in color_map: + b_color_map[agent] = color_map[agent] + used_colors.add(color_map[agent]) + ci = 0 + for agent in b_top: + if agent not in b_color_map: + while ci < len(CHART_COLORS) and CHART_COLORS[ci] in used_colors: + ci += 1 + b_color_map[agent] = CHART_COLORS[ci] if ci < len(CHART_COLORS) else "#6b6b6b" + used_colors.add(b_color_map[agent]) + ci += 1 + b_color_map["Other"] = "#6b6b6b" + + # Build branch series + b_series = {a: [] for a in b_top} + b_series["Other"] = [] + b_daily_totals = [] + + for d in branch_dates: + day_data = branches[d] + for a in b_top: + b_series[a].append(day_data.get(a, 0)) + b_series["Other"].append(sum(day_data.get(a, 0) for a in b_other)) + b_daily_totals.append(sum(day_data.values())) + + b_stack_order = ["Other"] + list(reversed(b_top)) + + # Chart 6: Branch activity stacked area + fig6 = go.Figure() + for agent in b_stack_order: + fig6.add_trace(go.Scatter( + x=branch_dates, y=b_series[agent], name=agent, stackgroup="one", + mode="lines", line=dict(width=0.5, color=b_color_map.get(agent, "#6b6b6b")), + hovertemplate=f"{agent}
%{{y:,.0f}} pushes", + )) + fig6.update_layout(**LAYOUT_DEFAULTS, + title="Daily Branch Pushes by Agent", + yaxis_title="Branch Pushes", height=480, + yaxis=dict(gridcolor=grid_color)) + + # Chart 7: Branch top agents line chart + fig7 = go.Figure() + for i, agent in enumerate(b_top): + fig7.add_trace(go.Scatter( + x=branch_dates, y=b_series[agent], name=agent, + mode="lines", + line=dict(width=3 if i == 0 else 2.5, + color=b_color_map.get(agent, "#6b6b6b"), + dash=DASH_PATTERNS[i % len(DASH_PATTERNS)]), + hovertemplate=f"{agent}
%{{y:,.0f}} pushes", + )) + fig7.update_layout(**LAYOUT_DEFAULTS, + title=f"Top {BRANCH_TOP_N} Agents — Daily Branch Pushes", + yaxis_title="Branch Pushes", height=450, + yaxis=dict(gridcolor=grid_color)) + fig7.update_layout(margin=dict(l=60, r=30, t=80, b=50), + legend=dict(orientation="h", yanchor="bottom", y=1.02, + xanchor="left", x=0, font=dict(size=9))) + + # ════════════════════════════════════════════════════════════ + # Charts 8 & 9: Carbon estimation (commit + branch signals) + # ════════════════════════════════════════════════════════════ + def hex_to_rgba(hex_color, alpha=0.15): + return f"rgba({int(hex_color[1:3],16)},{int(hex_color[3:5],16)},{int(hex_color[5:7],16)},{alpha})" + + carbon_providers = ["AWS / Anthropic", "Azure / Microsoft", "Google", "Other / Unknown"] + carbon_colors = { + "AWS / Anthropic": "#C1440E", + "Azure / Microsoft": "#1B6B93", + "Google": "#2D6A4F", + "Other / Unknown": "#6b6b6b", + } + + fig8 = fig9 = fig8b = fig9b = None + fig_total_commit = fig_total_branch = None + + for signal, fig_daily_name, fig_cum_name in [("commit", "fig8", "fig9"), ("branch", "fig8b", "fig9b")]: + c_data = carbon[signal] + if not c_data: + continue + + c_dates = sorted(c_data.keys()) + signal_label = "Commit" if signal == "commit" else "Branch" + + # Chart A: Daily tCO2e by provider with uncertainty band + fig_daily = go.Figure() + for provider in carbon_providers: + mids = [c_data[d].get(provider, {}).get("mid", 0) for d in c_dates] + lows = [c_data[d].get(provider, {}).get("low", 0) for d in c_dates] + highs = [c_data[d].get(provider, {}).get("high", 0) for d in c_dates] + pcolor = carbon_colors[provider] + fill_color = hex_to_rgba(pcolor, 0.15) + + # High bound (invisible) + fig_daily.add_trace(go.Scatter( + x=c_dates, y=highs, mode="lines", + line=dict(width=0, color=pcolor), + showlegend=False, hoverinfo="skip", + )) + # Low bound with fill to high + fig_daily.add_trace(go.Scatter( + x=c_dates, y=lows, mode="lines", + line=dict(width=0, color=pcolor), + fill="tonexty", fillcolor=fill_color, + showlegend=False, hoverinfo="skip", + )) + # Mid line (visible, legend entry) + fig_daily.add_trace(go.Scatter( + x=c_dates, y=mids, name=provider, + mode="lines", line=dict(width=2.5, color=pcolor), + hovertemplate=f"{provider}
%{{y:.2f}} tCO2e", + )) + + fig_daily.update_layout(**LAYOUT_DEFAULTS, + title=f"Daily Estimated Carbon — {signal_label} (tCO2e/day)", + yaxis_title="tCO2e / day", height=450, + yaxis=dict(gridcolor=grid_color)) + fig_daily.update_layout(margin=dict(l=60, r=30, t=80, b=50), + legend=dict(orientation="h", yanchor="bottom", y=1.02, + xanchor="left", x=0, font=dict(size=9))) + + # Chart B: Cumulative tCO2e (all providers combined) + cum_lows, cum_mids, cum_highs = [], [], [] + running_low = running_mid = running_high = 0.0 + for d in c_dates: + day_low = sum(v.get("low", 0) for v in c_data[d].values()) + day_mid = sum(v.get("mid", 0) for v in c_data[d].values()) + day_high = sum(v.get("high", 0) for v in c_data[d].values()) + running_low += day_low + running_mid += day_mid + running_high += day_high + cum_lows.append(running_low) + cum_mids.append(running_mid) + cum_highs.append(running_high) + + cum_color = "#C1440E" + fig_cum = go.Figure() + fig_cum.add_trace(go.Scatter( + x=c_dates, y=cum_highs, mode="lines", + line=dict(width=0, color=cum_color), + showlegend=False, hoverinfo="skip", + )) + fig_cum.add_trace(go.Scatter( + x=c_dates, y=cum_lows, mode="lines", + line=dict(width=0, color=cum_color), + fill="tonexty", fillcolor=hex_to_rgba(cum_color, 0.15), + showlegend=False, hoverinfo="skip", + )) + fig_cum.add_trace(go.Scatter( + x=c_dates, y=cum_mids, name="Cumulative tCO2e", + mode="lines", line=dict(width=3, color=cum_color), + hovertemplate="Cumulative
%{y:.1f} tCO2e", + )) + # Annotation with final total + fig_cum.add_annotation( + x=c_dates[-1], y=cum_mids[-1], + text=f"{cum_mids[-1]:.1f} tCO2e", + showarrow=True, arrowhead=2, ax=40, ay=-30, + font=dict(size=12, color=cum_color), + ) + fig_cum.update_layout(**LAYOUT_DEFAULTS, + title=f"Cumulative Estimated Carbon — {signal_label} (tCO2e)", + yaxis_title="tCO2e", height=450, + yaxis=dict(gridcolor=grid_color)) + + # Chart C: Total daily tCO2e (all providers summed) with CI band — full year + full_data = carbon_full[signal] + full_dates = sorted(full_data.keys()) + tot_lows, tot_mids, tot_highs = [], [], [] + for d in full_dates: + tot_lows.append(sum(v.get("low", 0) for v in full_data[d].values())) + tot_mids.append(sum(v.get("mid", 0) for v in full_data[d].values())) + tot_highs.append(sum(v.get("high", 0) for v in full_data[d].values())) + + tot_color = "#C1440E" + fig_total = go.Figure() + fig_total.add_trace(go.Scatter( + x=full_dates, y=tot_highs, name="High", + mode="lines", line=dict(width=0, color=tot_color), + showlegend=False, hoverinfo="skip", + )) + fig_total.add_trace(go.Scatter( + x=full_dates, y=tot_lows, name="Uncertainty band", + mode="lines", line=dict(width=0, color=tot_color), + fill="tonexty", fillcolor=hex_to_rgba(tot_color, 0.18), + hovertemplate="Low: %{y:.2f} tCO2e", + )) + fig_total.add_trace(go.Scatter( + x=full_dates, y=tot_mids, name="Mid estimate", + mode="lines", line=dict(width=3, color=tot_color), + hovertemplate="%{x}
Mid: %{y:.2f} tCO2e", + )) + span_label = "" + if full_dates: + span_label = f" ({full_dates[0]} to {full_dates[-1]})" + fig_total.update_layout(**LAYOUT_DEFAULTS, + title=f"Total Daily Estimated Carbon — {signal_label}{span_label}", + yaxis_title="tCO2e / day", height=450, + yaxis=dict(gridcolor=grid_color)) + + if signal == "commit": + fig8, fig9 = fig_daily, fig_cum + fig_total_commit = fig_total if full_dates else None + else: + fig8b, fig9b = fig_daily, fig_cum + fig_total_branch = fig_total if full_dates else None + + # ════════════════════════════════════════════════════════════ + # Charts: AI % of total commits & AI % of total branches — full history + # ════════════════════════════════════════════════════════════ + fig_share_commits_full = None + fig_share_branches_full = None + + # Commits share — full history + commit_share_dates = sorted(d for d in ai_full if d in push_full) + cs_d, cs_v = [], [] + for d in commit_share_dates: + pe = push_full.get(d, 0) + if not pe: + continue + ai_total = sum(v for v in ai_full[d].values() if v > 0) + est_total = pe * COMMITS_PER_PUSH + if est_total <= 0: + continue + cs_d.append(d) + cs_v.append(100 * ai_total / est_total) + + if cs_d: + cs_smooth = kernel_smooth(cs_v, bandwidth=7) + fig_share_commits_full = go.Figure() + fig_share_commits_full.add_trace(go.Scatter( + x=cs_d, y=cs_v, name="Daily", + mode="markers", + marker=dict(size=4, color="#FDA880", line=dict(width=0.3, color="#C1440E")), + hovertemplate="%{x}
%{y:.2f}%", + )) + fig_share_commits_full.add_trace(go.Scatter( + x=cs_d, y=cs_smooth, name="Trend", + mode="lines", line=dict(color="#C1440E", width=3), + hovertemplate="Trend
%{x}
%{y:.2f}%", + )) + fig_share_commits_full.update_layout( + **LAYOUT_DEFAULTS, + title=f"AI Share of Total GitHub Commits ({cs_d[0]} to {cs_d[-1]})", + yaxis_title="AI %", + yaxis=dict(ticksuffix="%", gridcolor=grid_color), + height=420, + ) + + # Branches share — full history. Apples-to-apples: + # numerator = agent-prefixed branch CREATES, denominator = total branch CREATES. + bs_d, bs_v = [], [] + branch_share_dates = sorted( + d for d in agent_branch_creates_full if d in branch_creates_full + ) + for d in branch_share_dates: + bc = branch_creates_full.get(d, 0) + if not bc: + continue + agent_total = sum( + v for v in agent_branch_creates_full[d].values() if v > 0 + ) + if agent_total <= 0: + continue + bs_d.append(d) + bs_v.append(100 * agent_total / bc) + + if bs_d: + bs_smooth = kernel_smooth(bs_v, bandwidth=7) + fig_share_branches_full = go.Figure() + fig_share_branches_full.add_trace(go.Scatter( + x=bs_d, y=bs_v, name="Daily", + mode="markers", + marker=dict(size=4, color="#8DB0C3", line=dict(width=0.3, color="#1B6B93")), + hovertemplate="%{x}
%{y:.2f}%", + )) + fig_share_branches_full.add_trace(go.Scatter( + x=bs_d, y=bs_smooth, name="Trend", + mode="lines", line=dict(color="#1B6B93", width=3), + hovertemplate="Trend
%{x}
%{y:.2f}%", + )) + fig_share_branches_full.update_layout( + **LAYOUT_DEFAULTS, + title=f"AI Share of Total GitHub Branch Creates ({bs_d[0]} to {bs_d[-1]})", + yaxis_title="AI %", + yaxis=dict(ticksuffix="%", gridcolor=grid_color), + height=420, + ) + + # ════════════════════════════════════════════════════════════ + # Chart: Claude Code session-URL emission rate over time + # Signal: presence of https://claude.ai/code/session_* URL in commit body + # Meaningful from 2026-01-15 (v2.1.9 added the trailer). + # Pre-2026-04-17: reasonable proxy for web-vs-CLI usage. + # 2026-04-17 onward: emission rate dropped after v2.1.113 (JS → native + # binary migration); the URL is now suppressed on a meaningful share of + # full agentic-coding commits, so the signal no longer cleanly maps to + # web-vs-CLI. See HTML caption. + # ════════════════════════════════════════════════════════════ + fig_cc_web_share = None + if cc_web_share: + web_dates = sorted(cc_web_share) + web_vals = [cc_web_share[d] for d in web_dates] + if len(web_dates) >= 2: + web_smooth = kernel_smooth(web_vals, bandwidth=7) + else: + web_smooth = web_vals + fig_cc_web_share = go.Figure() + fig_cc_web_share.add_trace(go.Scatter( + x=web_dates, y=web_vals, name="Daily (sampled, n≈1,000/day)", + mode="markers", + marker=dict(size=5, color="#7B2D8E", line=dict(width=0.3, color="#4A1C5C")), + hovertemplate="%{x}
%{y:.1f}%", + )) + fig_cc_web_share.add_trace(go.Scatter( + x=web_dates, y=web_smooth, name="Trend (7-day smooth)", + mode="lines", line=dict(color="#4A1C5C", width=3), + hovertemplate="Trend
%{x}
%{y:.1f}%", + )) + # Mark the v2.1.113 release date as the inflection where the signal's + # interpretation changes from "web-vs-CLI" to "emission-rate artifact". + # Use add_shape + add_annotation directly — add_vline's annotation + # positioning tries to mean() the x array, which fails on string dates. + v2_1_113_release = "2026-04-17" + if web_dates[0] <= v2_1_113_release <= web_dates[-1]: + fig_cc_web_share.add_shape( + type="line", + x0=v2_1_113_release, x1=v2_1_113_release, + y0=0, y1=1, yref="paper", + line=dict(color="#a3a3a3", width=1.5, dash="dash"), + ) + fig_cc_web_share.add_annotation( + x=v2_1_113_release, y=0.98, yref="paper", + text="v2.1.113 native-binary release", + showarrow=False, xanchor="left", yanchor="top", + font=dict(size=10, color="#6b6b6b"), + ) + fig_cc_web_share.update_layout( + **LAYOUT_DEFAULTS, + title=f"Claude Code session-URL emission rate ({web_dates[0]} to {web_dates[-1]})", + yaxis_title="% of sampled commits with session URL", + yaxis=dict(ticksuffix="%", range=[0, 100], gridcolor=grid_color), + height=420, + ) + + # ════════════════════════════════════════════════════════════ + # Header stats + # ════════════════════════════════════════════════════════════ + avg_ai = sum(daily_totals) // len(dates) + full_shares = [s for s in daily_share if s is not None] + avg_share = sum(full_shares) / len(full_shares) if full_shares else 0 + first_week = daily_totals[:7] + last_week = daily_totals[-7:] + growth = 100 * (sum(last_week) / sum(first_week) - 1) if sum(first_week) > 0 else 0 + top1 = top_tools[0] + top1_pct = 100 * tool_totals[top1] / sum(daily_totals) if sum(daily_totals) > 0 else 0 + + generated = datetime.now().strftime("%Y-%m-%d %H:%M") + if MONTH_FILTER: + month_label = datetime.strptime(dates[0], "%Y-%m-%d").strftime("%B %Y") + else: + first = datetime.strptime(dates[0], "%Y-%m-%d").strftime("%b %Y") + last = datetime.strptime(dates[-1], "%Y-%m-%d").strftime("%b %Y") + month_label = f"{first} – {last}" + + figs = {"fig1": fig1, "fig2": fig2, "fig3": fig3, "fig4a": fig4a, "fig4b": fig4b, "fig5": fig5} + if fig6: + figs["fig6"] = fig6 + if fig7: + figs["fig7"] = fig7 + if fig8 is not None: + figs["fig8"] = fig8 + if fig9 is not None: + figs["fig9"] = fig9 + if fig8b is not None: + figs["fig8b"] = fig8b + if fig9b is not None: + figs["fig9b"] = fig9b + if fig_total_commit is not None: + figs["fig_total_commit"] = fig_total_commit + if fig_total_branch is not None: + figs["fig_total_branch"] = fig_total_branch + if fig_share_commits_full is not None: + figs["fig_share_commits_full"] = fig_share_commits_full + if fig_share_branches_full is not None: + figs["fig_share_branches_full"] = fig_share_branches_full + if fig_cc_web_share is not None: + figs["fig_cc_web_share"] = fig_cc_web_share + fig_json = {k: v.to_json() for k, v in figs.items()} + + # ════════════════════════════════════════════════════════════ + # HTML output + # ════════════════════════════════════════════════════════════ + html = f""" + + + + +AI Coding Agent Dashboard — {month_label} + + + + + + + + + + +
+ +
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +
+ + {"" if not fig6 else ''' +
+

Signal 2: Branch Activity

+

+ Some agents (notably Codex) work by creating branches and PRs rather than authoring commits directly. + These are invisible to commit attribution but detectable via branch naming conventions in GH Archive. + This is a separate signal — do not add these numbers to the commit counts above. +

+
+ +
+ +
+ +
+
+ +
+
+

How branch detection works

+
    +
  • Agents like Codex create branches with recognizable prefixes (e.g., codex/fix-login-bug).
  • +
  • We count PushEvents to these branches via GH Archive (BigQuery).
  • +
  • Each push may contain one or many commits — this counts push operations, not individual commits.
  • +
  • Codex appears here as a top agent despite being nearly invisible in commit attribution (305 total commits vs. 400K+ branch pushes in March).
  • +
+
+
+ '''} + + {"" if fig8 is None else ''' +
+

Estimated Carbon Emissions

+

+ Estimated energy and carbon from AI coding agent activity using the Jegham et al. (2025) + framework. Tokens per task from SWE-rebench benchmarks, grouped by inference provider. + Shaded bands show low/high uncertainty. +

+
+ +
+
+ +
+
+ +
+
+ '''} + + {"" if fig8b is None else ''' +
+
+ +
+
+ +
+
+ '''} + + {"" if fig_share_commits_full is None and fig_share_branches_full is None else ''' +
+

AI share of GitHub activity — full history

+

+ Long-run trend in the share of GitHub commits and branch creates attributable to AI agents, + across the full data window. Daily points + 7-day kernel-smoothed trend. + Total GitHub commits estimated as PushEvents × 2.2 (±30%). + Branch share is apples-to-apples: numerator and denominator are both + CreateEvents with ref_type=branch, with agent-prefixed + branches in the numerator (Codex, Copilot, Claude, Cursor, Devin, Sweep, Codegen, + Jules, Gru, OpenHands, Open SWE). + Note: Oct 8–14 2025 GH Archive outage causes a visible gap. +

+
+ +
+ ''' + ("" if fig_share_commits_full is None else '
') + ("" if fig_share_branches_full is None else '
') + ''' +
+ '''} + + {"" if fig_cc_web_share is None else ''' +
+

Claude Code session-URL emission rate

+

+ Daily share of Claude Code commits whose message body contains a + https://claude.ai/code/session_* trailer. The trailer was added + in Claude Code v2.1.9 (2026-01-15) and originally identified commits + created from the claude.ai web product. Sample of ~1,000 commits/day + (±2-3% of daily volume) drawn from GitHub Search default sort. +

+

+ Two regimes: From late January through mid-April 2026 the signal + was a reasonable proxy for web-vs-CLI usage — commits without the + trailer were predominantly trivial one-liner chore commits (median + ~50 chars). On 2026-04-17, Claude Code v2.1.113 migrated the CLI + from bundled JavaScript to a native binary; from that day, full + multi-paragraph agentic-coding commits stopped emitting the trailer + in a meaningful share of cases. Post-Apr-17 the chart measures + URL-emission rate, not web-vs-CLI share — the no-trailer + bucket is now dominated by full Claude Code sessions whose binary + simply doesn't emit the URL. The dashed vertical line marks the + v2.1.113 release. +

+
+ +
+
+ +
+
+ '''} + + {"" if fig_total_commit is None and fig_total_branch is None else ''' +
+

Total Daily Carbon — past year (all providers, with confidence intervals)

+

+ Trailing 365 days of daily totals across all providers, with shaded low/high uncertainty bands reflecting + ranges in token counts, energy intensity, PUE, and grid carbon factors. +

+
+ +
+ ''' + ("" if fig_total_commit is None else '
') + ("" if fig_total_branch is None else '
') + ''' +
+ '''} + +
+

Methodology

+

Two independent signals, reported separately:

+
    +
  • Signal 1 — Commit attribution (charts above the divider): Detected via git author/committer metadata using the GitHub Search API. Measures when an agent is the recorded author of a commit. {len(ranked)} tools tracked.
  • +
  • Signal 2 — Branch activity (charts below the divider): Detected via branch naming conventions (e.g., codex/, copilot/) in GH Archive PushEvents via BigQuery. Measures when an agent creates and pushes to a branch. {len(branch_agents_ranked)} agents tracked.
  • +
  • Total GitHub commits estimated from GH Archive PushEvent counts × 2.2 commits/push. Approximate (±30%).
  • +
  • Not measured by either signal: Copilot autocomplete, Cursor editor mode, Windsurf, Amazon Q, Tabnine, or any tool where the user commits manually.
  • +
  • Carbon estimation: Commits and branch pushes translated into energy (kWh) and carbon (tCO2e) +using the Jegham et al. (2025) framework. Token estimates from SWE-rebench. Grouped by inference provider. +Shaded bands reflect uncertainty in token counts, energy, and grid carbon intensity.
  • +
+

+ Sources: Robbes et al. 2026 (arXiv:2601.18341, 2601.18345) · GitHub Search API · GH Archive via BigQuery +

+
+ +
+ +
c/naught · Generated {generated}
+ + + + +""" + + with open(OUTPUT, "w") as f: + f.write(html) + print(f"Dashboard written to {OUTPUT}") + print(f" {len(dates)} days, {len(ranked)} tools, top {TOP_N}: {', '.join(top_tools)}") + + +def main(): + (ai, push, branches, carbon, carbon_full, + ai_full, push_full, branches_full, branch_creates_full, + agent_branch_creates_full, cc_web_share) = load_data() + build_dashboard(ai, push, branches, carbon, carbon_full, + ai_full, push_full, branches_full, branch_creates_full, + agent_branch_creates_full, cc_web_share) + + +if __name__ == "__main__": + main() diff --git a/estimate_carbon.py b/estimate_carbon.py new file mode 100644 index 0000000..951dd6e --- /dev/null +++ b/estimate_carbon.py @@ -0,0 +1,453 @@ +#!/usr/bin/env python3 +""" +Estimate carbon emissions from AI coding agent activity. + +Reads daily_ai_commits.csv and branch_activity_daily.csv, +applies the Jegham et al. (2025) framework to estimate energy (kWh) +and carbon (tCO2e) per provider group per day. + +Usage: + python3 estimate_carbon.py + python3 estimate_carbon.py --output my_carbon.csv + +Methodology: docs/superpowers/specs/2026-03-31-carbon-estimation-design.md +""" + +import csv +import sys +from collections import defaultdict +from pathlib import Path + +# ───────────────────────────────────────────────────────────── +# Config: All assumptions in one place +# ───────────────────────────────────────────────────────────── + +AI_CSV = "daily_ai_commits.csv" +BRANCH_CSV = "branch_activity_daily.csv" +OUTPUT = "daily_carbon_estimates.csv" + +# Tokens per agentic task by provider group (SWE-rebench, March 2026) +# Low/mid/high = 0.5x / 1.0x / 2.0x of mid estimate +TOKENS_PER_TASK = { + "AWS / Anthropic": {"low": 1_050_000, "mid": 2_100_000, "high": 4_200_000}, + "Azure / Microsoft": {"low": 500_000, "mid": 1_000_000, "high": 2_000_000}, + "Google": {"low": 700_000, "mid": 1_400_000, "high": 2_800_000}, + "Other / Unknown": {"low": 750_000, "mid": 1_500_000, "high": 3_000_000}, +} + +# Node-level utilization: fraction of time GPU nodes are actively serving +# requests vs. idle. Idle GPUs still draw ~30-40% TDP but aren't producing +# useful work. This factor increases effective per-request energy by +# attributing idle overhead to the requests that are served. +# Cloud providers target 70-85% utilization; 0.75 is a reasonable mid estimate. +# Set to 1.0 to ignore idle overhead (pure cost-allocation model). +NODE_UTILIZATION = 0.90 + +# Jegham et al. provider parameters +# Note: concurrent_requests models multi-tenant GPU sharing in production +# inference. A 4-GPU node serves multiple requests simultaneously; per-request +# power = node power / concurrent_requests. Jegham's formula assumes exclusive +# GPU use; we adjust for production serving conditions. +# +# output_fraction: portion of total session tokens generated at decode speed. +# Includes thinking/reasoning tokens (not just code output). +# Claude uses extended thinking (~25% output); GPT/Gemini are lower (~15-18%). +# See QA review C2 for justification. +PROVIDER_PARAMS = { + "AWS / Anthropic": { + "pue": 1.14, + "cif": 0.287, # Location-based; market-based may be lower (see methodology) + "gpu_power_kw": 0.700, # H100 SXM TDP + "num_gpus": 4, + "non_gpu_power_kw": 0.200, + "gpu_utilization": 0.7, + "non_gpu_utilization": 0.5, + "concurrent_requests": 4, # Multi-tenant serving (QA fix C3) + "output_fraction": 0.25, # Extended thinking model (QA fix C2) + "throughput_tps": 65, # Claude Sonnet 4.6 output tokens/sec (Artificial Analysis) + "latency_s": 1.5, # Time to first token (prefill ~2-4% of total; see C1) + }, + "Azure / Microsoft": { + "pue": 1.12, + "cif": 0.35, + "gpu_power_kw": 0.700, + "num_gpus": 4, + "non_gpu_power_kw": 0.200, + "gpu_utilization": 0.7, + "non_gpu_utilization": 0.5, + "concurrent_requests": 6, # Higher throughput model, more concurrency + "output_fraction": 0.15, # Standard decode (no extended thinking) + "throughput_tps": 120, # GPT-5.2 medium output tokens/sec + "latency_s": 0.8, + }, + "Google": { + "pue": 1.10, + "cif": 0.28, # Location-based; Google claims 100% RE (market-based ~0) + "gpu_power_kw": 0.400, # TPU v5e per chip + "num_gpus": 4, + "non_gpu_power_kw": 0.150, + "gpu_utilization": 0.7, + "non_gpu_utilization": 0.5, + "concurrent_requests": 8, # TPU optimized for throughput + "output_fraction": 0.18, # Gemini thinking mode moderate + "throughput_tps": 85, # Gemini 3.1 Pro output tokens/sec + "latency_s": 1.0, + }, + "Other / Unknown": { + "pue": 1.20, + "cif": 0.40, # Conservative; unknown datacenter location + "gpu_power_kw": 0.700, + "num_gpus": 4, + "non_gpu_power_kw": 0.200, + "gpu_utilization": 0.7, + "non_gpu_utilization": 0.5, + "concurrent_requests": 4, # Conservative assumption + "output_fraction": 0.20, # Middle ground + "throughput_tps": 80, + "latency_s": 1.2, + }, +} + +# Jegham min/max energy multipliers (from Monte Carlo bounds) +ENERGY_BAND = {"low": 0.7, "mid": 1.0, "high": 1.4} + +# CIF uncertainty: ±15% to account for multi-region operation +CIF_BAND = {"low": 0.85, "mid": 1.0, "high": 1.15} + +# Branch signal additional uncertainty multiplier on tokens +BRANCH_TOKEN_BAND = {"low": 0.5, "mid": 1.0, "high": 2.0} + +# ───────────────────────────────────────────────────────────── +# Tool -> Provider mapping +# ───────────────────────────────────────────────────────────── + +# Confident single-provider mappings +TOOL_PROVIDER_MAP = { + "Claude Code": "AWS / Anthropic", + "Copilot": "Azure / Microsoft", + "Copilot SWE Agent": "Azure / Microsoft", + "OpenAI Codex": "Azure / Microsoft", + "Gemini Code Assist": "Google", + "Gemini CLI": "Google", + "Jules (Google)": "Google", + "Devin": "Other / Unknown", + "OpenHands": "Other / Unknown", + "Lovable": "Other / Unknown", + "Warp (Oz Agent)": "Other / Unknown", + "Sweep AI": "Other / Unknown", + "Codegen": "Other / Unknown", + "Gru": "Other / Unknown", + "ChatGPT": "Azure / Microsoft", + "Coderabbit": "Other / Unknown", + "Sourcery AI": "Other / Unknown", + "DeepSource": "Other / Unknown", + "Qwen Coder": "Other / Unknown", + "OpenCode": "Other / Unknown", + "Crush": "Other / Unknown", + "Sketch": "Other / Unknown", +} + +# Multi-model tools: weighted by estimated model usage share +MULTI_MODEL_TOOLS = { + "Cursor": {"Azure / Microsoft": 0.50, "AWS / Anthropic": 0.35, "Google": 0.15}, + "Aider": {"Azure / Microsoft": 0.40, "AWS / Anthropic": 0.45, "Google": 0.15}, + "Cline": {"Azure / Microsoft": 0.35, "AWS / Anthropic": 0.50, "Google": 0.15}, + "Amp (Sourcegraph)": {"Azure / Microsoft": 0.20, "AWS / Anthropic": 0.70, "Google": 0.10}, + "Roo Code": {"Azure / Microsoft": 0.30, "AWS / Anthropic": 0.55, "Google": 0.15}, + "Kilo Code": {"Azure / Microsoft": 0.30, "AWS / Anthropic": 0.55, "Google": 0.15}, + "Junie (JetBrains)": {"Azure / Microsoft": 0.50, "AWS / Anthropic": 0.35, "Google": 0.15}, +} + + +def map_tool_to_provider(tool): + """Return provider group for a tool, or 'Multi-Model' for weighted tools.""" + if tool in MULTI_MODEL_TOOLS: + return "Multi-Model" + return TOOL_PROVIDER_MAP.get(tool, "Other / Unknown") + + +def calc_energy_kwh(provider, signal): + """ + Calculate energy per task (kWh) for a provider group. + + Applies Jegham et al. formula: + E = [(L + output_tokens/R) / 3600] * [P_GPU*U_GPU + P_non_GPU*U_non_GPU] * PUE + + Args: + provider: One of the keys in PROVIDER_PARAMS + signal: "commit" or "branch" (branch adds extra token uncertainty) + + Returns: + dict with "low", "mid", "high" energy in kWh + """ + params = PROVIDER_PARAMS[provider] + tokens = TOKENS_PER_TASK[provider] + + # Output fraction is per-provider: includes thinking/reasoning tokens + # generated at decode speed (not just code output in the diff) + output_fraction = params["output_fraction"] + + results = {} + for band in ("low", "mid", "high"): + # Token estimate (with branch uncertainty if applicable) + token_count = tokens[band] + if signal == "branch": + token_count *= BRANCH_TOKEN_BAND[band] + + output_tokens = token_count * output_fraction + + # Inference time (seconds) + # Prefill (latency to first token) + generation time + inference_time_s = params["latency_s"] + (output_tokens / params["throughput_tps"]) + + # Power draw during inference (kW) + # Divide by concurrent_requests to model multi-tenant GPU sharing, + # then divide by NODE_UTILIZATION to attribute idle overhead to + # served requests (idle GPUs still draw power but produce no work) + power_kw = ( + params["gpu_power_kw"] * params["num_gpus"] * params["gpu_utilization"] + + params["non_gpu_power_kw"] * params["non_gpu_utilization"] + ) / (params["concurrent_requests"] * NODE_UTILIZATION) + + # Energy (kWh) = time (hours) * power (kW) * PUE + energy_kwh = (inference_time_s / 3600) * power_kw * params["pue"] + + # Apply Jegham Monte Carlo energy band multiplier + energy_kwh *= ENERGY_BAND[band] + + results[band] = energy_kwh + + return results + + +def calc_carbon_tco2e(provider, signal): + """ + Calculate carbon per task (tCO2e) for a provider group. + Carbon = Energy (kWh) * CIF (kgCO2e/kWh) * CIF_uncertainty / 1000 + Returns dict with "low", "mid", "high" in tCO2e. + """ + energy = calc_energy_kwh(provider, signal) + cif = PROVIDER_PARAMS[provider]["cif"] + return { + band: energy[band] * (cif * CIF_BAND[band]) / 1000 + for band in ("low", "mid", "high") + } + + +def calc_energy_multimodel(tool, signal): + """ + Calculate weighted-average energy for a multi-model tool. + Weights come from MULTI_MODEL_TOOLS config. + Returns dict with "low", "mid", "high" in kWh. + """ + weights = MULTI_MODEL_TOOLS[tool] + result = {"low": 0.0, "mid": 0.0, "high": 0.0} + for provider, weight in weights.items(): + provider_energy = calc_energy_kwh(provider, signal) + for band in ("low", "mid", "high"): + result[band] += weight * provider_energy[band] + return result + + +def calc_carbon_multimodel(tool, signal): + """ + Calculate weighted-average carbon for a multi-model tool. + Uses provider-specific CIF for each weighted component. + Returns dict with "low", "mid", "high" in tCO2e. + """ + weights = MULTI_MODEL_TOOLS[tool] + result = {"low": 0.0, "mid": 0.0, "high": 0.0} + for provider, weight in weights.items(): + provider_carbon = calc_carbon_tco2e(provider, signal) + for band in ("low", "mid", "high"): + result[band] += weight * provider_carbon[band] + return result + + +def aggregate_by_provider(tool_data): + """ + Aggregate tool-level counts into provider groups. + Multi-model tools are split proportionally across providers. + + Args: + tool_data: {date: {tool: count}} + Returns: + {date: {provider: count}} (counts may be fractional for multi-model) + """ + result = {} + for date, tools in tool_data.items(): + providers = defaultdict(float) + for tool, count in tools.items(): + if tool in MULTI_MODEL_TOOLS: + for provider, weight in MULTI_MODEL_TOOLS[tool].items(): + providers[provider] += count * weight + else: + provider = map_tool_to_provider(tool) + providers[provider] += count + result[date] = dict(providers) + return result + + +def estimate_all(commits, branches): + """ + Run full estimation pipeline. + Returns list of dicts, one per (date, provider, signal) combination. + """ + rows = [] + + # Process commits + commit_by_provider = aggregate_by_provider(commits) + for date in sorted(commit_by_provider): + for provider, count in commit_by_provider[date].items(): + energy = calc_energy_kwh(provider, "commit") + carbon = calc_carbon_tco2e(provider, "commit") + tokens = TOKENS_PER_TASK.get(provider, TOKENS_PER_TASK["Other / Unknown"]) + rows.append({ + "date": date, + "provider_group": provider, + "signal": "commit", + "activity_count": int(round(count)), + "tokens_mid": int(round(count * tokens["mid"])), + "kwh_low": round(count * energy["low"], 4), + "kwh_mid": round(count * energy["mid"], 4), + "kwh_high": round(count * energy["high"], 4), + "tco2e_low": round(count * carbon["low"], 6), + "tco2e_mid": round(count * carbon["mid"], 6), + "tco2e_high": round(count * carbon["high"], 6), + }) + + # Process branches + branch_agent_to_tool = { + "Claude Code": "Claude Code", + "Codex": "OpenAI Codex", + "Copilot": "Copilot", + "Cursor": "Cursor", + "Devin": "Devin", + "Jules": "Jules (Google)", + "Codegen": "Codegen", + "Sweep": "Sweep AI", + "OpenHands": "OpenHands", + "Gru": "Gru", + "Open SWE": "OpenHands", + } + + branch_as_tools = {} + for date, agents in branches.items(): + tools = {} + for agent, count in agents.items(): + tool_name = branch_agent_to_tool.get(agent, agent) + tools[tool_name] = count + branch_as_tools[date] = tools + + branch_by_provider = aggregate_by_provider(branch_as_tools) + for date in sorted(branch_by_provider): + for provider, count in branch_by_provider[date].items(): + energy = calc_energy_kwh(provider, "branch") + carbon = calc_carbon_tco2e(provider, "branch") + tokens = TOKENS_PER_TASK.get(provider, TOKENS_PER_TASK["Other / Unknown"]) + rows.append({ + "date": date, + "provider_group": provider, + "signal": "branch", + "activity_count": int(round(count)), + "tokens_mid": int(round(count * tokens["mid"])), + "kwh_low": round(count * energy["low"], 4), + "kwh_mid": round(count * energy["mid"], 4), + "kwh_high": round(count * energy["high"], 4), + "tco2e_low": round(count * carbon["low"], 6), + "tco2e_mid": round(count * carbon["mid"], 6), + "tco2e_high": round(count * carbon["high"], 6), + }) + + return rows + + +def load_commits(): + """Load daily_ai_commits.csv into {date: {tool: count}}.""" + data = defaultdict(dict) + if not Path(AI_CSV).exists(): + return data + with open(AI_CSV) as f: + for row in csv.DictReader(f): + if row.get("view", "all") != "all": + continue + try: + count = int(row["commits"]) + except (ValueError, KeyError): + count = 0 + data[row["date"]][row["tool"]] = count + return dict(data) + + +def load_branches(): + """Load branch_activity_daily.csv into {date: {agent: count}}.""" + data = defaultdict(dict) + if not Path(BRANCH_CSV).exists(): + return data + with open(BRANCH_CSV) as f: + for row in csv.DictReader(f): + try: + count = int(row["push_events"]) + except (ValueError, KeyError): + count = 0 + data[row["date"]][row["agent"]] = count + return dict(data) + + +def write_csv(rows, output_path): + """Write estimation results to CSV.""" + if not rows: + print("No data to write.") + return + fieldnames = [ + "date", "provider_group", "signal", "activity_count", "tokens_mid", + "kwh_low", "kwh_mid", "kwh_high", "tco2e_low", "tco2e_mid", "tco2e_high", + ] + with open(output_path, "w", newline="") as f: + writer = csv.DictWriter(f, fieldnames=fieldnames) + writer.writeheader() + writer.writerows(rows) + print(f"Carbon estimates written to {output_path} ({len(rows)} rows)") + + +def main(): + output = OUTPUT + for i, arg in enumerate(sys.argv): + if arg == "--output" and i + 1 < len(sys.argv): + output = sys.argv[i + 1] + + commits = load_commits() + branches = load_branches() + + if not commits and not branches: + print("No input data found. Run github_ai_daily.py and/or fetch_branch_activity.py first.") + sys.exit(1) + + rows = estimate_all(commits, branches) + write_csv(rows, output) + + # Print summary + commit_rows = [r for r in rows if r["signal"] == "commit"] + branch_rows = [r for r in rows if r["signal"] == "branch"] + + if commit_rows: + dates = sorted(set(r["date"] for r in commit_rows)) + total_mid = sum(r["tco2e_mid"] for r in commit_rows) + total_kwh = sum(r["kwh_mid"] for r in commit_rows) + print(f"\nCommit-attributed ({len(dates)} days):") + print(f" Total energy (mid): {total_kwh:,.1f} kWh") + print(f" Total carbon (mid): {total_mid:,.4f} tCO2e") + print(f" Daily avg carbon: {total_mid / len(dates):,.4f} tCO2e/day") + + if branch_rows: + dates = sorted(set(r["date"] for r in branch_rows)) + total_mid = sum(r["tco2e_mid"] for r in branch_rows) + total_kwh = sum(r["kwh_mid"] for r in branch_rows) + print(f"\nBranch-attributed ({len(dates)} days):") + print(f" Total energy (mid): {total_kwh:,.1f} kWh") + print(f" Total carbon (mid): {total_mid:,.4f} tCO2e") + print(f" Daily avg carbon: {total_mid / len(dates):,.4f} tCO2e/day") + + +if __name__ == "__main__": + main() diff --git a/events/model_releases.csv b/events/model_releases.csv new file mode 100644 index 0000000..2cbf35c --- /dev/null +++ b/events/model_releases.csv @@ -0,0 +1,36 @@ +date,vendor,event,event_type,source_url +2025-01-31,OpenAI,o3-mini,model_release,https://openai.com/index/openai-o3-mini/ +2025-02-05,Google,Gemini 2.0 Pro,model_release,https://blog.google/technology/google-deepmind/gemini-model-updates-february-2025/ +2025-02-24,Anthropic,Claude 3.7 Sonnet,model_release,https://www.anthropic.com/news/claude-3-7-sonnet +2025-02-24,Anthropic,Claude Code CLI research preview,agent_launch,https://www.anthropic.com/news/claude-3-7-sonnet +2025-02-27,OpenAI,GPT-4.5 research preview,model_release,https://openai.com/index/introducing-gpt-4-5/ +2025-03-25,Google,Gemini 2.5 Pro,model_release,https://blog.google/technology/google-deepmind/gemini-model-thinking-updates-march-2025/ +2025-04-16,OpenAI,o3 + o4-mini + GPT-4.1,model_release,https://openai.com/index/introducing-o3-and-o4-mini/ +2025-04-16,OpenAI,Codex CLI open-sourced,agent_launch,https://openai.com/index/introducing-codex/ +2025-05-09,Aider,v0.85 signature change,signature_change,https://github.com/Aider-AI/aider/issues/3788 +2025-05-19,GitHub,Copilot coding agent public preview,agent_launch,https://github.blog/changelog/2025-05-19-github-copilot-coding-agent-in-public-preview/ +2025-05-22,Anthropic,Claude Opus 4 + Sonnet 4,model_release,https://www.anthropic.com/news/claude-4 +2025-05-22,Google,Jules (Google) beta launch,agent_launch,https://blog.google/technology/google-labs/jules/ +2025-06-04,Cursor,Cursor 1.0 background agents GA,agent_launch,https://cursor.com/changelog/1-0 +2025-06-10,OpenAI,o3-pro,model_release,https://openai.com/index/o3-pro/ +2025-08-06,Google,Jules GA,agent_launch,https://blog.google/technology/google-labs/jules-ga/ +2025-08-07,OpenAI,GPT-5,model_release,https://openai.com/index/introducing-gpt-5/ +2025-09-10,Replit,Replit Agent 3,agent_launch,https://blog.replit.com/agent-3 +2025-09-25,GitHub,Copilot coding agent GA,agent_launch,https://github.blog/changelog/2025-09-25-copilot-coding-agent-ga/ +2025-09-29,Anthropic,Claude Sonnet 4.5,model_release,https://www.anthropic.com/news/claude-sonnet-4-5 +2025-10-15,Anthropic,Claude Haiku 4.5,model_release,https://www.anthropic.com/news/claude-haiku-4-5 +2025-10-20,Anthropic,Claude Code web launch,agent_launch,https://www.anthropic.com/news/claude-code-web +2025-10-29,Cursor,Cursor 2.0,agent_launch,https://cursor.com/changelog/2-0 +2025-11-12,OpenAI,GPT-5.1,model_release,https://openai.com/index/gpt-5-1/ +2025-11-18,Google,Gemini 3 Pro,model_release,https://blog.google/products/gemini/gemini-3/ +2025-11-19,OpenAI,GPT-5.1-Codex-Max,model_release,https://openai.com/index/gpt-5-1-codex-max/ +2025-11-24,Anthropic,Claude Opus 4.5,model_release,https://www.anthropic.com/news/claude-opus-4-5 +2025-12-24,Cognition,Devin GA,agent_launch,https://cognition.ai/blog/devin-ga +2026-01-09,Codegen,Codegen standalone shutdown,shutdown,https://codegen.com/blog/an-update-on-codegen +2026-02-05,Anthropic,Claude Opus 4.6,model_release,https://www.anthropic.com/news/claude-opus-4-6 +2026-02-10,Warp,Warp Oz platform launch,agent_launch,https://www.warp.dev/blog/oz +2026-02-17,Anthropic,Claude Sonnet 4.6,model_release,https://www.anthropic.com/news/claude-sonnet-4-6 +2026-02-19,Google,Gemini 3.1 Pro,model_release,https://blog.google/products/gemini/gemini-3-1/ +2026-03-17,OpenAI,GPT-5.4 mini + nano,model_release,https://help.openai.com/en/articles/9624314-model-release-notes +2026-03-26,GitHub,Copilot SWE Agent signature change,signature_change,https://github.blog/changelog/2026-03-26-copilot-swe-agent-identity-change/ +2026-04-16,Anthropic,Claude Opus 4.7,model_release,https://www.anthropic.com/news/claude-opus-4-7 diff --git a/fetch_bot_donors.py b/fetch_bot_donors.py new file mode 100644 index 0000000..2f3a2c0 --- /dev/null +++ b/fetch_bot_donors.py @@ -0,0 +1,159 @@ +#!/usr/bin/env python3 +"""Fetch daily commit counts for non-agent bot donors (robustness control). + +Mirrors the GitHub Search API pattern used by github_ai_daily.py. Output CSV +is used as the donor pool for a synthetic-control robustness check on the +"other agents" aggregate series. + +Usage: + python fetch_bot_donors.py --start-date 2025-02-01 --end-date 2026-04-09 +""" +from __future__ import annotations +import argparse +import csv +import json +import os +import subprocess +import sys +import time +import urllib.parse +from datetime import date, datetime, timedelta, timezone +from pathlib import Path + +GITHUB_TOKEN = os.environ.get("GITHUB_TOKEN", "") +DELAY = 4 if GITHUB_TOKEN else 12 + +BOT_DONORS = [ + {"name": "Dependabot", + "query": "author-email:49699333+dependabot[bot]@users.noreply.github.com", + "signal_type": "author_email"}, + {"name": "Renovate", + "query": "author-name:renovate[bot]", + "signal_type": "author_name"}, + {"name": "pre-commit-ci", + "query": "author-name:pre-commit-ci[bot]", + "signal_type": "author_name"}, + {"name": "semantic-release-bot", + "query": "author-name:semantic-release-bot", + "signal_type": "author_name"}, + {"name": "allcontributors", + "query": "author-name:allcontributors[bot]", + "signal_type": "author_name"}, + {"name": "github-actions", + "query": "author-name:github-actions[bot]", + "signal_type": "author_name"}, +] + + +def build_search_url(query: str, start: str, end: str) -> str: + q = f"{query} committer-date:{start}..{end}" + return f"https://api.github.com/search/commits?q={urllib.parse.quote(q)}&per_page=1" + + +def fetch_one(url: str, max_retries: int = 3) -> dict: + headers = ["-H", "Accept: application/vnd.github.cloak-preview+json"] + if GITHUB_TOKEN: + headers += ["-H", f"Authorization: Bearer {GITHUB_TOKEN}"] + for attempt in range(max_retries): + try: + out = subprocess.run(["curl", "-sS", *headers, url], + capture_output=True, text=True, timeout=30) + except subprocess.TimeoutExpired: + backoff = 2 ** attempt * 5 + print(f" curl timeout, retry {attempt+1}/{max_retries} after {backoff}s", + file=sys.stderr) + time.sleep(backoff) + continue + if out.returncode != 0: + backoff = 2 ** attempt * 5 + print(f" curl rc={out.returncode}, retry {attempt+1}/{max_retries} after {backoff}s", + file=sys.stderr) + time.sleep(backoff) + continue + try: + data = json.loads(out.stdout) + except json.JSONDecodeError: + return {"total_count": None, "incomplete_results": True, "error": "json_decode"} + msg = (data.get("message") or "").lower() + if "rate limit" in msg or "abuse" in msg or "secondary rate" in msg: + backoff = 2 ** attempt * 30 + print(f" RATE LIMITED, sleep {backoff}s then retry {attempt+1}/{max_retries}", + file=sys.stderr) + time.sleep(backoff) + continue + return data + return {"total_count": None, "incomplete_results": True, "error": "max_retries_exceeded"} + + +def iter_dates(start: str, end: str): + d = date.fromisoformat(start) + e = date.fromisoformat(end) + while d <= e: + yield d.isoformat() + d += timedelta(days=1) + + +def load_fetched_combos(path: Path) -> set[tuple[str, str]]: + """Return the set of (date, donor) combos already in the output CSV. + + Only counts rows with a non-error outcome — incomplete / max_retries_exceeded + rows are not considered fetched and will be retried on restart. + """ + if not path.exists(): + return set() + fetched: set[tuple[str, str]] = set() + with path.open() as f: + reader = csv.DictReader(f) + for row in reader: + incomplete = (row.get("incomplete") or "").lower() == "true" + if incomplete: + continue + fetched.add((row["date"], row["donor"])) + return fetched + + +def main(): + ap = argparse.ArgumentParser() + ap.add_argument("--start-date", required=True) + ap.add_argument("--end-date", required=True) + ap.add_argument("--output", default="bot_donors_daily.csv") + args = ap.parse_args() + + if not GITHUB_TOKEN: + print("WARNING: GITHUB_TOKEN not set — will be slow", file=sys.stderr) + + fieldnames = ["date", "donor", "commits", "incomplete", "fetched_at"] + outpath = Path(args.output) + need_header = not outpath.exists() + already = load_fetched_combos(outpath) + if already: + print(f"Resuming: {len(already)} (date, donor) combos already fetched", + file=sys.stderr) + with outpath.open("a", newline="") as f: + w = csv.DictWriter(f, fieldnames=fieldnames) + if need_header: + w.writeheader() + for d in iter_dates(args.start_date, args.end_date): + for donor in BOT_DONORS: + if (d, donor["name"]) in already: + continue + url = build_search_url(donor["query"], d, d) + r = fetch_one(url) + w.writerow({ + "date": d, + "donor": donor["name"], + "commits": r.get("total_count") or 0, + "incomplete": str(bool(r.get("incomplete_results"))), + "fetched_at": datetime.now(timezone.utc).isoformat(), + }) + f.flush() + err = r.get("error") or ("incomplete" if r.get("incomplete_results") else "") + count = r.get("total_count") or 0 + suffix = f" [{err}]" if err else "" + print(f" {d} {donor['name']:25s} {count:>8d}{suffix}", + flush=True) + time.sleep(DELAY) + + +if __name__ == "__main__": + main() diff --git a/fetch_branch_activity.py b/fetch_branch_activity.py new file mode 100644 index 0000000..2de6526 --- /dev/null +++ b/fetch_branch_activity.py @@ -0,0 +1,242 @@ +#!/usr/bin/env python3 +""" +Fetch daily AI agent branch activity from GH Archive via BigQuery. + +Detects agents that create branches with recognizable prefixes (e.g., codex/, +copilot/, cursor/). This captures tools like Codex that are nearly invisible +via commit authorship but create millions of branches. + +Usage: + python3 fetch_branch_activity.py --date 2026-03-15 + python3 fetch_branch_activity.py --start-date 2026-03-01 --end-date 2026-03-30 + python3 fetch_branch_activity.py --month 2026-03 + +Requires: pip3 install google-cloud-bigquery +Auth: gcloud auth application-default login + +NOTE: This data is NOT comparable to commit-attribution data from github_ai_daily.py. +Branch pushes and commit authorship measure different things: + - Commit attribution = agent is the git author/committer + - Branch activity = agent created a branch (may contain many commits, or just one) +Report these separately. Do not sum them. +""" + +import csv +import os +import sys +from datetime import datetime, timedelta, timezone +from pathlib import Path + +from google.cloud import bigquery + +PROJECT = os.environ.get("GCP_PROJECT", "your-gcp-project") +OUTPUT = "branch_activity_daily.csv" + +# Branch prefixes from Robbes et al. 2026 (arXiv:2601.18345, Table 1) +AGENT_BRANCHES = [ + ("Codex", "refs/heads/codex/"), + ("Copilot", "refs/heads/copilot/"), + ("Claude Code", "refs/heads/claude/"), + ("Cursor", "refs/heads/cursor/"), + ("Devin", "refs/heads/devin/"), + ("Sweep", "refs/heads/sweep/"), + ("Codegen", "refs/heads/codegen-bot/"), + ("Jules", "refs/heads/jules/"), + ("Gru", "refs/heads/gru/"), + ("OpenHands", "refs/heads/openhands/"), + ("Open SWE", "refs/heads/open-swe/"), +] + +CSV_FIELDS = ["date", "agent", "push_events", "unique_repos", "fetched_at"] + + +def parse_args(): + args = {"start_date": None, "end_date": None, "date": None, "month": None, + "output": OUTPUT} + i = 1 + while i < len(sys.argv): + if sys.argv[i] == "--start-date" and i + 1 < len(sys.argv): + args["start_date"] = sys.argv[i + 1]; i += 2 + elif sys.argv[i] == "--end-date" and i + 1 < len(sys.argv): + args["end_date"] = sys.argv[i + 1]; i += 2 + elif sys.argv[i] == "--date" and i + 1 < len(sys.argv): + args["date"] = sys.argv[i + 1]; i += 2 + elif sys.argv[i] == "--month" and i + 1 < len(sys.argv): + args["month"] = sys.argv[i + 1]; i += 2 + elif sys.argv[i] == "--output" and i + 1 < len(sys.argv): + args["output"] = sys.argv[i + 1]; i += 2 + else: + i += 1 + return args + + +def build_dates(args): + if args["start_date"] and args["end_date"]: + start = datetime.strptime(args["start_date"], "%Y-%m-%d").date() + end = datetime.strptime(args["end_date"], "%Y-%m-%d").date() + elif args["date"]: + start = end = datetime.strptime(args["date"], "%Y-%m-%d").date() + elif args["month"]: + y, m = args["month"].split("-") + start = datetime(int(y), int(m), 1).date() + if int(m) == 12: + end = datetime(int(y) + 1, 1, 1).date() - timedelta(days=1) + else: + end = datetime(int(y), int(m) + 1, 1).date() - timedelta(days=1) + else: + print("Specify --date, --start-date/--end-date, or --month") + sys.exit(1) + dates = [] + d = start + while d <= end: + dates.append(d.isoformat()) + d += timedelta(days=1) + return dates + + +def load_existing(path): + existing = set() + if Path(path).exists(): + with open(path, "r") as f: + for row in csv.DictReader(f): + existing.add((row["date"], row["agent"])) + return existing + + +def append_csv(path, rows): + file_exists = Path(path).exists() + with open(path, "a", newline="") as f: + writer = csv.DictWriter(f, fieldnames=CSV_FIELDS) + if not file_exists: + writer.writeheader() + writer.writerows(rows) + + +def build_query(dates): + """Build a single BigQuery query for all dates and agents.""" + # Group dates by month for wildcard tables + by_prefix = {} + for d in dates: + prefix = d.replace("-", "")[:6] + by_prefix.setdefault(prefix, []).append(d.split("-")[2]) + + # Build CASE statement for agent detection + case_parts = [] + like_parts = [] + for agent, prefix in AGENT_BRANCHES: + case_parts.append(f" WHEN ref LIKE '{prefix}%' THEN '{agent}'") + like_parts.append(f"ref LIKE '{prefix}%'") + + case_stmt = "CASE\n" + "\n".join(case_parts) + "\n END" + filter_stmt = " OR ".join(like_parts) + + # Build UNION ALL across month tables + union_parts = [] + for prefix, days in sorted(by_prefix.items()): + suffix_filter = ", ".join(f"'{d}'" for d in days) + union_parts.append(f""" + SELECT + CONCAT('{prefix[:4]}-', '{prefix[4:6]}-', _TABLE_SUFFIX) as date, + JSON_VALUE(payload, '$.ref') as ref, + repo.name as repo + FROM `githubarchive.day.{prefix}*` + WHERE type = 'PushEvent' + AND _TABLE_SUFFIX IN ({suffix_filter}) +""") + + subquery = "UNION ALL".join(union_parts) + + query = f""" +SELECT + date, + {case_stmt} as agent, + COUNT(*) as push_events, + COUNT(DISTINCT repo) as unique_repos +FROM ({subquery}) +WHERE {filter_stmt} +GROUP BY date, agent +ORDER BY date, push_events DESC +""" + return query + + +def main(): + args = parse_args() + output = args["output"] + dates = build_dates(args) + + existing = load_existing(output) + new_dates = [d for d in dates if (d, AGENT_BRANCHES[0][0]) not in existing] + + if not new_dates: + print(f"All {len(dates)} dates already in {output}.") + else: + print(f"Fetching branch activity for {len(new_dates)} days via BigQuery...") + client = bigquery.Client(project=PROJECT) + query = build_query(new_dates) + + print(f" Running query...", end="", flush=True) + results = {} + for row in client.query(query).result(): + results[(row.date, row.agent)] = (row.push_events, row.unique_repos) + print(f" done ({len(results)} rows)") + + # Build CSV rows — include zeros for agents with no activity + fetched_at = datetime.now(tz=timezone.utc).isoformat() + csv_rows = [] + for d in sorted(new_dates): + for agent, _ in AGENT_BRANCHES: + pe, repos = results.get((d, agent), (0, 0)) + csv_rows.append({ + "date": d, + "agent": agent, + "push_events": pe, + "unique_repos": repos, + "fetched_at": fetched_at, + }) + + if csv_rows: + append_csv(output, csv_rows) + print(f" Appended {len(csv_rows)} rows to {output}") + + # Print summary + if not Path(output).exists(): + return + + all_data = {} + with open(output) as f: + for row in csv.DictReader(f): + if row["date"] in dates: + all_data.setdefault(row["date"], {})[row["agent"]] = int(row["push_events"]) + + if not all_data: + return + + # Find agents with any activity + agent_totals = {} + for d in all_data: + for agent, count in all_data[d].items(): + agent_totals[agent] = agent_totals.get(agent, 0) + count + active_agents = [a for a, t in sorted(agent_totals.items(), key=lambda x: -x[1]) if t > 0] + + print(f"\n {'Date':<12} {'Day':<5}", end="") + for a in active_agents: + print(f" {a:>14}", end="") + print(f" {'TOTAL':>10}") + print(f" {'─' * (18 + 15 * len(active_agents) + 10)}") + + for d in sorted(all_data): + wd = datetime.strptime(d, "%Y-%m-%d").strftime("%a") + row_total = sum(all_data[d].get(a, 0) for a in active_agents) + print(f" {d:<12} {wd:<5}", end="") + for a in active_agents: + v = all_data[d].get(a, 0) + print(f" {v:>14,}" if v > 0 else f" {'—':>14}", end="") + print(f" {row_total:>10,}") + + print(f"\n Signal: PushEvents to agent-prefixed branches (GH Archive via BigQuery)") + print(f" NOTE: Not comparable to commit-attribution data. Report separately.\n") + + +if __name__ == "__main__": + main() diff --git a/fetch_branch_creates.py b/fetch_branch_creates.py new file mode 100644 index 0000000..ca9d8a4 --- /dev/null +++ b/fetch_branch_creates.py @@ -0,0 +1,217 @@ +#!/usr/bin/env python3 +""" +Fetch daily branch CREATE counts from GH Archive via BigQuery, with both +totals (denominator) and agent-prefixed breakdown (numerator) in one scan. + +Outputs: + - branch_creates_daily.csv (totals; appends new dates) + - agent_branch_creates_daily.csv (per-agent; appends new dates) + +Usage: + python3 fetch_branch_creates.py --start-date 2026-04-09 --end-date 2026-04-26 + python3 fetch_branch_creates.py --month 2026-04 + python3 fetch_branch_creates.py --backfill # everything missing + # since 2025-04-01 + +Requires: pip3 install google-cloud-bigquery +Auth: gcloud auth application-default login + +Note: CreateEvent.payload.ref is the bare branch name (no refs/heads/ prefix), +unlike PushEvent.payload.ref. The agent prefixes here reflect that. +""" + +import csv +import os +import sys +from datetime import datetime, timedelta, timezone +from pathlib import Path + +from google.cloud import bigquery + +PROJECT = os.environ.get("GCP_PROJECT", "your-gcp-project") +TOTALS_CSV = "branch_creates_daily.csv" +AGENTS_CSV = "agent_branch_creates_daily.csv" +DEFAULT_BACKFILL_START = "2025-04-01" + +# Agent branch prefixes for CreateEvent (ref is bare branch name). +AGENT_BRANCHES = [ + ("Codex", "codex/"), + ("Copilot", "copilot/"), + ("Claude Code", "claude/"), + ("Cursor", "cursor/"), + ("Devin", "devin/"), + ("Sweep", "sweep/"), + ("Codegen", "codegen-bot/"), + ("Jules", "jules/"), + ("Gru", "gru/"), + ("OpenHands", "openhands/"), + ("Open SWE", "open-swe/"), +] + +TOTALS_FIELDS = ["date", "weekday", "branch_creates", "fetched_at"] +AGENTS_FIELDS = ["date", "agent", "branch_creates", "unique_repos", "fetched_at"] + + +def parse_args(): + args = {"start_date": None, "end_date": None, "date": None, "month": None, + "backfill": False} + i = 1 + while i < len(sys.argv): + a = sys.argv[i] + if a == "--start-date" and i + 1 < len(sys.argv): + args["start_date"] = sys.argv[i + 1]; i += 2 + elif a == "--end-date" and i + 1 < len(sys.argv): + args["end_date"] = sys.argv[i + 1]; i += 2 + elif a == "--date" and i + 1 < len(sys.argv): + args["date"] = sys.argv[i + 1]; i += 2 + elif a == "--month" and i + 1 < len(sys.argv): + args["month"] = sys.argv[i + 1]; i += 2 + elif a == "--backfill": + args["backfill"] = True; i += 1 + else: + i += 1 + return args + + +def build_dates(args): + if args["backfill"]: + start = datetime.strptime(DEFAULT_BACKFILL_START, "%Y-%m-%d").date() + end = datetime.now(tz=timezone.utc).date() - timedelta(days=1) + elif args["start_date"] and args["end_date"]: + start = datetime.strptime(args["start_date"], "%Y-%m-%d").date() + end = datetime.strptime(args["end_date"], "%Y-%m-%d").date() + elif args["date"]: + start = end = datetime.strptime(args["date"], "%Y-%m-%d").date() + elif args["month"]: + y, m = args["month"].split("-") + start = datetime(int(y), int(m), 1).date() + if int(m) == 12: + end = datetime(int(y) + 1, 1, 1).date() - timedelta(days=1) + else: + end = datetime(int(y), int(m) + 1, 1).date() - timedelta(days=1) + else: + print("Specify --backfill, --date, --start-date/--end-date, or --month") + sys.exit(1) + out = [] + d = start + while d <= end: + out.append(d.isoformat()) + d += timedelta(days=1) + return out + + +def existing_dates(path, key="date"): + if not Path(path).exists(): + return set() + with open(path) as f: + return {row[key] for row in csv.DictReader(f)} + + +def append_csv(path, fields, rows): + file_exists = Path(path).exists() + with open(path, "a", newline="") as f: + writer = csv.DictWriter(f, fieldnames=fields) + if not file_exists: + writer.writeheader() + writer.writerows(rows) + + +def build_query(dates): + """One scan per month-table; computes totals + per-agent counts together.""" + by_prefix = {} + for d in dates: + prefix = d.replace("-", "")[:6] + by_prefix.setdefault(prefix, []).append(d.split("-")[2]) + + countif_cols = [] + distinct_cols = [] + for agent, prefix in AGENT_BRANCHES: + safe = agent.replace(" ", "_").lower() + countif_cols.append( + f"COUNTIF(STARTS_WITH(ref, '{prefix}')) AS {safe}_creates" + ) + distinct_cols.append( + f"COUNT(DISTINCT IF(STARTS_WITH(ref, '{prefix}'), repo, NULL)) " + f"AS {safe}_repos" + ) + + union_parts = [] + for prefix, days in sorted(by_prefix.items()): + suffix_filter = ", ".join(f"'{d}'" for d in days) + union_parts.append(f""" + SELECT + CONCAT('{prefix[:4]}-', '{prefix[4:6]}-', _TABLE_SUFFIX) AS date, + JSON_VALUE(payload, '$.ref') AS ref, + repo.name AS repo + FROM `githubarchive.day.{prefix}*` + WHERE type = 'CreateEvent' + AND JSON_VALUE(payload, '$.ref_type') = 'branch' + AND _TABLE_SUFFIX IN ({suffix_filter}) +""") + + subquery = "UNION ALL".join(union_parts) + + cols = ",\n ".join(["COUNT(*) AS total_creates"] + countif_cols + distinct_cols) + + return f""" +SELECT + date, + {cols} +FROM ({subquery}) +GROUP BY date +ORDER BY date +""" + + +def main(): + args = parse_args() + dates = build_dates(args) + have_totals = existing_dates(TOTALS_CSV) + have_agents = existing_dates(AGENTS_CSV) + todo = [d for d in dates if d not in have_totals or d not in have_agents] + + if not todo: + print(f"All {len(dates)} dates already in both CSVs.") + return + + print(f"Fetching branch creates for {len(todo)} days " + f"(range {todo[0]} → {todo[-1]}) via BigQuery...") + client = bigquery.Client(project=PROJECT) + query = build_query(todo) + print(" Running query...", end="", flush=True) + rows = list(client.query(query).result()) + print(f" done ({len(rows)} rows)") + + fetched_at = datetime.now(tz=timezone.utc).isoformat() + new_totals = [] + new_agents = [] + for row in rows: + d = row["date"] + if d not in have_totals: + new_totals.append({ + "date": d, + "weekday": datetime.strptime(d, "%Y-%m-%d").strftime("%a"), + "branch_creates": row["total_creates"], + "fetched_at": fetched_at, + }) + if d not in have_agents: + for agent, _ in AGENT_BRANCHES: + safe = agent.replace(" ", "_").lower() + new_agents.append({ + "date": d, + "agent": agent, + "branch_creates": row[f"{safe}_creates"], + "unique_repos": row[f"{safe}_repos"], + "fetched_at": fetched_at, + }) + + if new_totals: + append_csv(TOTALS_CSV, TOTALS_FIELDS, new_totals) + print(f" +{len(new_totals)} rows → {TOTALS_CSV}") + if new_agents: + append_csv(AGENTS_CSV, AGENTS_FIELDS, new_agents) + print(f" +{len(new_agents)} rows → {AGENTS_CSV}") + + +if __name__ == "__main__": + main() diff --git a/fetch_daily_totals.py b/fetch_daily_totals.py new file mode 100644 index 0000000..0965337 --- /dev/null +++ b/fetch_daily_totals.py @@ -0,0 +1,200 @@ +#!/usr/bin/env python3 +""" +Fetch daily total GitHub push events from GH Archive via BigQuery. + +Usage: + python3 fetch_daily_totals.py --start-date 2026-01-01 --end-date 2026-03-31 + python3 fetch_daily_totals.py --date 2026-03-15 + python3 fetch_daily_totals.py --month 2026-03 + +Requires: pip3 install google-cloud-bigquery +Auth: gcloud auth application-default login + +Outputs to push_events_daily.csv. Each push event ≈ 1-3 commits (the exact +commit count was removed from GH Archive in Oct 2025). +""" + +import csv +import os +import sys +from datetime import datetime, timedelta, timezone +from pathlib import Path + +from google.cloud import bigquery + +PROJECT = os.environ.get("GCP_PROJECT", "your-gcp-project") +OUTPUT = "push_events_daily.csv" + +def parse_args(): + args = {"start_date": None, "end_date": None, "date": None, "month": None, + "output": OUTPUT} + i = 1 + while i < len(sys.argv): + if sys.argv[i] == "--start-date" and i + 1 < len(sys.argv): + args["start_date"] = sys.argv[i + 1]; i += 2 + elif sys.argv[i] == "--end-date" and i + 1 < len(sys.argv): + args["end_date"] = sys.argv[i + 1]; i += 2 + elif sys.argv[i] == "--date" and i + 1 < len(sys.argv): + args["date"] = sys.argv[i + 1]; i += 2 + elif sys.argv[i] == "--month" and i + 1 < len(sys.argv): + args["month"] = sys.argv[i + 1]; i += 2 + elif sys.argv[i] == "--output" and i + 1 < len(sys.argv): + args["output"] = sys.argv[i + 1]; i += 2 + else: + i += 1 + return args + + +def load_existing(path): + """Load dates already fetched.""" + existing = set() + if Path(path).exists(): + with open(path, "r") as f: + for row in csv.DictReader(f): + existing.add(row["date"]) + return existing + + +def append_csv(path, rows): + file_exists = Path(path).exists() + with open(path, "a", newline="") as f: + writer = csv.DictWriter(f, fieldnames=[ + "date", "weekday", "push_events", "fetched_at" + ]) + if not file_exists: + writer.writeheader() + writer.writerows(rows) + + +def fetch_push_events(client, dates): + """Fetch push event counts for a list of dates via BigQuery. + + Uses table wildcard to query multiple days in one shot. + Groups by table suffix to get per-day counts. + """ + if not dates: + return {} + + # Group dates by month prefix for efficient wildcard queries + by_prefix = {} + for d in dates: + prefix = d.replace("-", "")[:6] # YYYYMM + by_prefix.setdefault(prefix, []).append(d) + + results = {} + for prefix, prefix_dates in sorted(by_prefix.items()): + # Table suffix is just the day part (e.g., "01", "15") + # since the wildcard `YYYYMM*` already covers year+month + day_suffixes = [d.split("-")[2] for d in prefix_dates] + + suffix_filter = ", ".join(f"'{s}'" for s in day_suffixes) + query = f""" + SELECT + _TABLE_SUFFIX as day_suffix, + COUNT(*) as push_events + FROM `githubarchive.day.{prefix}*` + WHERE type = 'PushEvent' + AND _TABLE_SUFFIX IN ({suffix_filter}) + GROUP BY day_suffix + ORDER BY day_suffix + """ + + year = prefix[:4] + month = prefix[4:6] + print(f" Querying {prefix}* ({len(prefix_dates)} days)...", end="", flush=True) + try: + query_job = client.query(query) + for row in query_job.result(): + date_str = f"{year}-{month}-{row.day_suffix}" + results[date_str] = row.push_events + print(f" done") + except Exception as e: + print(f" ERROR: {e}") + + return results + + +def main(): + args = parse_args() + output = args["output"] + + # Build date list + if args["start_date"] and args["end_date"]: + start = datetime.strptime(args["start_date"], "%Y-%m-%d").date() + end = datetime.strptime(args["end_date"], "%Y-%m-%d").date() + dates = [] + d = start + while d <= end: + dates.append(d.isoformat()) + d += timedelta(days=1) + elif args["date"]: + dates = [args["date"]] + elif args["month"]: + # e.g., 2026-03 + y, m = args["month"].split("-") + start = datetime(int(y), int(m), 1).date() + if int(m) == 12: + end = datetime(int(y) + 1, 1, 1).date() - timedelta(days=1) + else: + end = datetime(int(y), int(m) + 1, 1).date() - timedelta(days=1) + dates = [] + d = start + while d <= end: + dates.append(d.isoformat()) + d += timedelta(days=1) + else: + print("Specify --date, --start-date/--end-date, or --month") + sys.exit(1) + + # Skip dates we already have + existing = load_existing(output) + new_dates = [d for d in dates if d not in existing] + + if not new_dates: + print(f"All {len(dates)} dates already in {output}.") + else: + print(f"Fetching {len(new_dates)} new dates via BigQuery...") + client = bigquery.Client(project=PROJECT) + results = fetch_push_events(client, new_dates) + + # Save + rows = [] + for d in sorted(results): + weekday = datetime.strptime(d, "%Y-%m-%d").strftime("%a") + rows.append({ + "date": d, + "weekday": weekday, + "push_events": results[d], + "fetched_at": datetime.now(tz=timezone.utc).isoformat(), + }) + if rows: + append_csv(output, rows) + print(f"Appended {len(rows)} rows to {output}") + + # Warn about missing dates (table might not exist yet) + missing = set(new_dates) - set(results.keys()) + if missing: + print(f" Warning: no data for {len(missing)} dates (table may not exist yet)") + + # Print summary + if Path(output).exists(): + all_data = {} + with open(output) as f: + for row in csv.DictReader(f): + if row["date"] in [d for d in dates]: + all_data[row["date"]] = (row["weekday"], int(row["push_events"])) + + if all_data: + print(f"\n {'Date':<12} {'Day':<5} {'Push Events':>14}") + print(f" {'-'*33}") + for d in sorted(all_data): + wd, pe = all_data[d] + print(f" {d:<12} {wd:<5} {pe:>14,}") + vals = [pe for _, pe in all_data.values()] + print(f" {'-'*33}") + print(f" {'Average':<18} {sum(vals)//len(vals):>14,}") + print(f" {'Total':<18} {sum(vals):>14,}") + + +if __name__ == "__main__": + main() diff --git a/github_ai_daily.py b/github_ai_daily.py new file mode 100644 index 0000000..3a12a9b --- /dev/null +++ b/github_ai_daily.py @@ -0,0 +1,475 @@ +#!/usr/bin/env python3 +""" +AI Coding Agent Daily Commit Tracker + +Usage: + python3 github_ai_daily.py # last 7 days, all repos + python3 github_ai_daily.py --days 14 # last 14 days + python3 github_ai_daily.py --output data/daily.csv + +Set GITHUB_TOKEN env var for 30 req/min (vs 10 unauthenticated). +Results are appended to a CSV file so you can run daily via cron. + +Advanced: A `--view` flag exists for filtering to curated repo sets +(top-starred, top-packages, trending). It requires a corresponding JSON +file at `lists/.json` listing owner orgs. The helper that produced +these lists was retired in April 2026; see git history if you need to +regenerate one. The automated pipeline always uses the default `all` +view. +""" + +import json +import os +import subprocess +import sys +import time +import csv +import urllib.parse +from datetime import datetime, timedelta, timezone +from pathlib import Path + +# --------------------------------------------------------------------------- +# Config +# --------------------------------------------------------------------------- +GITHUB_TOKEN = os.environ.get("GITHUB_TOKEN", "") +DELAY = 4 if GITHUB_TOKEN else 12 +LISTS_DIR = Path(__file__).parent / "lists" +VALID_VIEWS = ["all", "top-starred", "top-packages", "trending"] + +# --------------------------------------------------------------------------- +# CLI args +# --------------------------------------------------------------------------- +def parse_args(): + args = {"days": 7, "date": None, "start_date": None, "end_date": None, + "views": ["all"], "output": "daily_ai_commits.csv"} + i = 1 + while i < len(sys.argv): + if sys.argv[i] == "--days" and i + 1 < len(sys.argv): + args["days"] = int(sys.argv[i + 1]); i += 2 + elif sys.argv[i] == "--date" and i + 1 < len(sys.argv): + args["date"] = sys.argv[i + 1]; i += 2 + elif sys.argv[i] == "--start-date" and i + 1 < len(sys.argv): + args["start_date"] = sys.argv[i + 1]; i += 2 + elif sys.argv[i] == "--end-date" and i + 1 < len(sys.argv): + args["end_date"] = sys.argv[i + 1]; i += 2 + elif sys.argv[i] == "--view" and i + 1 < len(sys.argv): + view = sys.argv[i + 1] + if view not in VALID_VIEWS: + print(f"Unknown view: {view}") + print(f"Available: {', '.join(VALID_VIEWS)}") + sys.exit(1) + args["views"] = [view]; i += 2 + elif sys.argv[i] == "--all-views": + args["views"] = list(VALID_VIEWS); i += 1 + elif sys.argv[i] == "--output" and i + 1 < len(sys.argv): + args["output"] = sys.argv[i + 1]; i += 2 + else: + i += 1 + return args + +ARGS = parse_args() + +# --------------------------------------------------------------------------- +# Tool definitions — commit-level detectable tools +# +# Sources: +# - Robbes et al. 2026 "Agentic Much?" (arXiv:2601.18341) +# - Robbes et al. 2026 "Promises, Perils, and Heuristics" (arXiv:2601.18345) +# Table 1: 48 agents, 86 file-based, 20 branch-based, 4 label-based heuristics +# - GitHub Search API probing (validated 2026-03) +# +# Only includes tools with commit-level author/committer signatures +# searchable via GitHub Search API. Co-authored-by trailers in message +# body are NOT searchable via the API (would need git log parsing). +# --------------------------------------------------------------------------- +TOOLS = [ + # --- Tier 1: High volume, default-on attribution --- + {"tool": "Claude Code", "query": "author-email:noreply@anthropic.com"}, + {"tool": "Copilot", "query": 'committer-name:"GitHub Copilot"'}, + {"tool": "Copilot SWE Agent", "query": "committer-name:copilot-swe-agent"}, + {"tool": "Copilot SWE Agent (new)", "query": "author-email:198982749+Copilot@users.noreply.github.com"}, + {"tool": "Cursor", "query": "committer-email:cursoragent@cursor.com"}, + {"tool": "Aider", "query": "author-name:aider"}, + + # --- Tier 2: Significant volume --- + {"tool": "Devin", "query": 'author-name:"devin-ai-integration"'}, + {"tool": "Lovable", "query": 'author-name:"lovable-dev"'}, + {"tool": "OpenHands", "query": "author-email:openhands@all-hands.dev"}, + {"tool": "Gemini Code Assist", "query": "author-name:gemini-code-assist"}, + {"tool": "Coderabbit", "query": "author-name:coderabbitai"}, + {"tool": "ChatGPT", "query": "author-name:ChatGPT"}, + + # --- Tier 3: Moderate volume --- + {"tool": "Gemini CLI", "query": "author-email:218195315+gemini-cli@users.noreply.github.com"}, + {"tool": "Jules (Google)", "query": "author-name:google-labs-jules"}, + {"tool": "Cline", "query": "author-name:cline"}, + {"tool": "Sourcery AI", "query": "author-name:sourcery-ai"}, + {"tool": "DeepSource", "query": "author-name:deepsource-autofix"}, + {"tool": "Sweep AI", "query": "author-name:sweep-ai"}, + {"tool": "Qwen Coder", "query": "author-name:Qwen-Coder"}, + {"tool": "Roo Code", "query": "author-email:roomote@roocode.com"}, + {"tool": "OpenCode", "query": "author-email:noreply@opencode.ai"}, + + # --- Tier 4: Lower volume / opt-in --- + {"tool": "OpenAI Codex", "query": "author-email:codex@openai.com"}, + {"tool": "Amp (Sourcegraph)", "query": "author-email:amp@ampcode.com"}, + {"tool": "Warp (Oz Agent)", "query": "author-email:agent@warp.dev"}, + {"tool": "Codegen", "query": "author-name:codegen-sh"}, + {"tool": "Gru", "query": "author-name:gru-agent"}, + {"tool": "Junie (JetBrains)", "query": "author-email:junie@jetbrains.com"}, + {"tool": "Crush", "query": "author-email:crush@charm.land"}, + {"tool": "Sketch", "query": "author-email:hello@sketch.dev"}, + {"tool": "Kilo Code", "query": 'author-name:"Kilo Code"'}, +] + +# --------------------------------------------------------------------------- +# GitHub API helpers +# --------------------------------------------------------------------------- +def commit_search(query, date_start, date_end, retries=3): + """Search commits for a single day. Returns (count, incomplete).""" + q = f"{query} committer-date:{date_start}..{date_end}" + params = urllib.parse.urlencode({"q": q, "per_page": "1"}) + url = f"https://api.github.com/search/commits?{params}" + + for attempt in range(retries + 1): + cmd = ["curl", "-sS", + "-H", "Accept: application/vnd.github.cloak-preview+json", + "-H", "User-Agent: ai-commit-daily/1.0"] + if GITHUB_TOKEN: + cmd += ["-H", f"Authorization: Bearer {GITHUB_TOKEN}"] + cmd.append(url) + try: + result = subprocess.run(cmd, capture_output=True, text=True, timeout=60) + except subprocess.TimeoutExpired: + if attempt < retries: + print(f" (curl timeout, retry {attempt+1}/{retries}...)", flush=True) + time.sleep(10) + continue + return -1, False + if result.returncode != 0: + return -1, False + try: + data = json.loads(result.stdout) + except json.JSONDecodeError: + return -1, False + if "total_count" in data: + return data["total_count"], data.get("incomplete_results", False) + msg = data.get("message", "") + if "rate limit" in msg.lower() or "abuse" in msg.lower(): + if attempt < retries: + wait = 60 * (attempt + 1) + print(f" (rate limited, waiting {wait}s...)", flush=True) + time.sleep(wait) + continue + return -1, False + print(f" Unexpected: {msg[:120]}", file=sys.stderr) + return -1, False + return -1, False + +# --------------------------------------------------------------------------- +# View / org-batch management +# --------------------------------------------------------------------------- +MAX_QUERY_ORGS = 5 # GitHub limits to 5 AND/OR/NOT operators per query + + +def load_view_orgs(view_name): + """Load org list from a view's JSON file. Returns (orgs, description).""" + if view_name == "all": + return [], "all public repos" + path = LISTS_DIR / f"{view_name}.json" + if not path.exists(): + print(f"ERROR: List file not found: {path}") + print("The `build_repo_lists.py` helper was retired in April 2026.") + print("See git history for the old version, or create the file manually:") + print(f' {{"orgs": ["owner1", "owner2", ...]}}') + sys.exit(1) + with open(path, "r") as f: + data = json.load(f) + orgs = data.get("orgs", []) + stats = data.get("stats", {}) + built = data.get("built_at", "unknown")[:10] + desc = (f"{view_name} ({stats.get('total_repos', '?')} repos, " + f"{stats.get('unique_orgs', '?')} orgs, built {built})") + return orgs, desc + + +def build_org_batches(orgs): + """Split org list into query-sized batches.""" + batches = [] + for i in range(0, len(orgs), MAX_QUERY_ORGS): + batch = orgs[i:i + MAX_QUERY_ORGS] + clause = " OR ".join(f"org:{o}" for o in batch) + batches.append(f" ({clause})") + return batches + + +def search_with_batches(tool_query, date_start, date_end, org_batches): + """Search commits, summing across org batches if filtering.""" + if not org_batches: + return commit_search(tool_query, date_start, date_end) + total = 0 + any_incomplete = False + for batch in org_batches: + count, incomplete = commit_search(tool_query + batch, date_start, date_end) + if count < 0: + return -1, False + total += count + any_incomplete = any_incomplete or incomplete + time.sleep(DELAY) + return total, any_incomplete + +# --------------------------------------------------------------------------- +# CSV persistence +# --------------------------------------------------------------------------- +def load_existing_csv(path): + """Load existing CSV data to avoid re-fetching.""" + existing = set() # (date, tool, view) triples + if Path(path).exists(): + with open(path, "r") as f: + reader = csv.DictReader(f) + for row in reader: + existing.add((row["date"], row["tool"], row.get("view", "all"))) + return existing + + +CSV_FIELDS = ["date", "tool", "view", "commits", "incomplete", "run_id", "fetched_at"] + + +def append_csv(path, rows): + """Append rows to CSV, creating with header if needed.""" + file_exists = Path(path).exists() + with open(path, "a", newline="") as f: + writer = csv.DictWriter(f, fieldnames=CSV_FIELDS) + if not file_exists: + writer.writeheader() + writer.writerows(rows) + +# --------------------------------------------------------------------------- +# Run one view +# --------------------------------------------------------------------------- +def run_view(view_name, dates, output, existing, run_id): + """Fetch daily commits for one view. Flushes to CSV after each day.""" + orgs, scope_desc = load_view_orgs(view_name) + org_batches = build_org_batches(orgs) + + # Group by date, skip dates fully fetched + dates_to_fetch = [] + for d in dates: + tools_needed = [t for t in TOOLS if (d, t["tool"], view_name) not in existing] + if tools_needed: + dates_to_fetch.append((d, tools_needed)) + + if not dates_to_fetch: + print(f"\n [{view_name}] All {len(dates)} days already fetched. Skipping.") + return 0 + + total_pairs = sum(len(tools) for _, tools in dates_to_fetch) + queries_per_pair = max(len(org_batches), 1) + total_calls = total_pairs * queries_per_pair + est_min = total_calls * DELAY // 60 + 1 + auth = "authenticated" if GITHUB_TOKEN else "unauthenticated" + + print(f"\n{'='*90}") + print(f" VIEW: {view_name} | RUN: {run_id}") + print(f" Scope: {scope_desc}") + print(f" Dates: {dates_to_fetch[0][0]} to {dates_to_fetch[-1][0]} " + f"({len(dates_to_fetch)} days, {total_pairs} tool queries)") + print(f" ~{total_calls} API calls, ~{est_min} min ({auth})") + print(f"{'='*90}") + + total_rows = 0 + + for d, tools_needed in dates_to_fetch: + fetched_at = datetime.now(tz=timezone.utc).isoformat() + day_rows = [] + day_total = 0 + + print(f"\n {d} ", end="", flush=True) + + for t in tools_needed: + count, incomplete = search_with_batches(t["query"], d, d, org_batches) + marker = f"{count:>8,}" if count >= 0 else " ERROR" + if incomplete: + marker += " ~" + print(f"\n {t['tool']:<22} {marker}", end="", flush=True) + + if count > 0: + day_total += count + + day_rows.append({ + "date": d, + "tool": t["tool"], + "view": view_name, + "commits": count if count >= 0 else "", + "incomplete": "1" if incomplete else "", + "run_id": run_id, + "fetched_at": fetched_at, + }) + + if not org_batches: + time.sleep(DELAY) + + # Flush this day to CSV immediately + if day_rows: + append_csv(output, day_rows) + total_rows += len(day_rows) + + # Day summary line + weekday = datetime.strptime(d, "%Y-%m-%d").strftime("%a") + print(f"\n {'─'*40}") + print(f" TOTAL {d} ({weekday}): {day_total:,} AI commits", flush=True) + + return total_rows + +# --------------------------------------------------------------------------- +# Summary +# --------------------------------------------------------------------------- +def print_summary(csv_path, dates, view_name): + """Print a formatted daily summary table for one view.""" + if not Path(csv_path).exists(): + return + + # Load data for this view + data = {} # tool -> {date: count} + with open(csv_path, "r") as f: + for row in csv.DictReader(f): + if row.get("view", "all") != view_name: + continue + tool = row["tool"] + if tool not in data: + data[tool] = {} + try: + data[tool][row["date"]] = int(row["commits"]) + except (ValueError, KeyError): + data[tool][row["date"]] = -1 + + if not data: + return + + # Filter to dates that have data + active_dates = [d for d in dates if any(data[t].get(d, 0) != 0 for t in data)] + if not active_dates: + return + + # Sort tools by total commits descending + tool_totals = {} + for tool, by_date in data.items(): + tool_totals[tool] = sum(v for v in by_date.values() if v > 0) + tools_sorted = sorted(tool_totals, key=lambda t: -tool_totals[t]) + + # Compute daily totals + day_totals = {} + for d in active_dates: + day_totals[d] = sum( + data[t].get(d, 0) for t in data if data[t].get(d, 0) > 0 + ) + + # Print table + col_w = 10 + print(f"\n{'='*90}") + print(f" DAILY AI COMMITS — view: {view_name}") + print(f"{'='*90}\n") + + # Header + print(f" {'Tool':<22}", end="") + for d in active_dates: + print(f" {d[5:]:>{col_w}}", end="") + print(f" {'Total':>{col_w}}") + print(f" {'-'*(22 + (col_w+1)*len(active_dates) + col_w + 1)}") + + for tool in tools_sorted: + print(f" {tool:<22}", end="") + row_total = 0 + for d in active_dates: + c = data[tool].get(d, 0) + if c > 0: + print(f" {c:>{col_w},}", end="") + row_total += c + elif c == 0: + print(f" {'—':>{col_w}}", end="") + else: + print(f" {'ERR':>{col_w}}", end="") + print(f" {row_total:>{col_w},}") + + # Totals row + print(f" {'-'*(22 + (col_w+1)*len(active_dates) + col_w + 1)}") + print(f" {'TOTAL':<22}", end="") + grand = 0 + for d in active_dates: + dt = day_totals.get(d, 0) + grand += dt + print(f" {dt:>{col_w},}", end="") + print(f" {grand:>{col_w},}") + + # Day-over-day changes for top tools + if len(active_dates) >= 2: + print(f"\n Day-over-day change (top tools):") + for tool in tools_sorted[:5]: + vals = [data[tool].get(d, 0) for d in active_dates] + changes = [] + for i in range(1, len(vals)): + if vals[i-1] > 0 and vals[i] >= 0: + pct = 100 * (vals[i] - vals[i-1]) / vals[i-1] + changes.append(f"{'+' if pct >= 0 else ''}{pct:.0f}%") + else: + changes.append("—") + print(f" {tool:<22} {' -> '.join(changes)}") + +# --------------------------------------------------------------------------- +# Main +# --------------------------------------------------------------------------- +def main(): + days = ARGS["days"] + views = ARGS["views"] + output = ARGS["output"] + + # Build date list + if ARGS["start_date"] and ARGS["end_date"]: + # Explicit date range + start = datetime.strptime(ARGS["start_date"], "%Y-%m-%d").date() + end = datetime.strptime(ARGS["end_date"], "%Y-%m-%d").date() + dates = [] + d = start + while d <= end: + dates.append(d.isoformat()) + d += timedelta(days=1) + elif ARGS["date"]: + dates = [ARGS["date"]] + else: + today = datetime.now().date() + dates = [] + for i in range(days): + d = today - timedelta(days=i + 1) # skip today (incomplete) + dates.append(d.isoformat()) + dates.reverse() + + # Generate run ID: timestamp-based + run_id = datetime.now(tz=timezone.utc).strftime("%Y%m%dT%H%M%SZ") + + # Load existing data + existing = load_existing_csv(output) + + print(f"AI Coding Agent Daily Tracker") + print(f"Run ID: {run_id}") + print(f"Views: {', '.join(views)}") + print(f"Dates: {dates[0]} to {dates[-1]} ({len(dates)} days)") + print(f"Output: {output}") + + # Run each view — CSV is flushed per-day inside run_view + total_rows = 0 + for view in views: + total_rows += run_view(view, dates, output, existing, run_id) + + if total_rows: + print(f"\nWrote {total_rows} total rows to {output}") + + # Print summaries + for view in views: + print_summary(output, dates, view) + + print(f"\nData: {output}") + print(f"Re-running skips (date, tool, view) combos already fetched.") + + +if __name__ == "__main__": + main() diff --git a/intervention_breaks.py b/intervention_breaks.py new file mode 100644 index 0000000..f833e13 --- /dev/null +++ b/intervention_breaks.py @@ -0,0 +1,443 @@ +"""Endogenous structural-break detection for pair log-share series. + +Per the econometric review (2026-04-21): imposing Oct 20, 2025 as the break +date is weaker than letting the data pick it. We run three independent +estimators and report agreement: + + 1. BEAST (Zhao et al. 2019, Rbeast) — primary Bayesian. Returns a + per-timestep posterior probability of a changepoint; we report the + MAP break date and P(break within ±window of anchor). + 2. PyMC continuous-relaxation sigmoid break — Bayesian robustness. + Prior: Uniform on break index; likelihood: two-mean Gaussian with + a sigmoid transition. NUTS gives a posterior on the break location + independent of BEAST. + 3. PELT (Killick et al. 2012, ruptures) — descriptive cross-check. + Fast point estimate of the dominant break; no CI (the bootstrap CI + on trended series was too wide to be useful — see docstring below). + +Headline: for each pair, report P(break within ±window of anchor_date) +under each method. If BEAST and PyMC agree and the mass is concentrated +around Oct 20, the regime-shift claim is supported without imposing the +date. +""" +from __future__ import annotations +from pathlib import Path +from typing import Optional +import warnings + +import numpy as np +import pandas as pd + +import ruptures as rpt + + +# ───────────────────────────────────────────────────────────────────────── +# PELT (descriptive cross-check) +# ───────────────────────────────────────────────────────────────────────── + +def detect_break_pelt( + y: pd.Series, + penalty: float = 5.0, + min_size: int = 30, + model: str = "l2", +) -> Optional[int]: + """Detect the single most significant break via PELT. + + Returns integer index of the dominant break, or None. `model="l2"` + detects mean shifts (appropriate for log-share level jumps); `"linear"` + detects slope changes; `"rbf"` is nonparametric. + """ + y = y.dropna() + if len(y) < 2 * min_size: + return None + x = y.values.astype(float).reshape(-1, 1) + algo = rpt.Pelt(model=model, min_size=min_size).fit(x) + bkps = [b for b in algo.predict(pen=penalty) if b < len(y)] + if not bkps: + return None + if len(bkps) == 1: + return int(bkps[0]) + best_b, best_shift = None, -1.0 + for b in bkps: + shift = abs(float(np.mean(y.values[b:])) - float(np.mean(y.values[:b]))) + if shift > best_shift: + best_shift, best_b = shift, b + return int(best_b) if best_b is not None else None + + +def level_shift_at_break(y: pd.Series, break_idx: int, + window: int = 30) -> dict: + """Post-minus-pre mean in symmetric windows around a break index.""" + y = y.dropna() + lo = max(0, break_idx - window) + hi = min(len(y), break_idx + window) + pre = y.values[lo:break_idx] + post = y.values[break_idx:hi] + return { + "pre_mean": float(np.mean(pre)) if len(pre) else float("nan"), + "post_mean": float(np.mean(post)) if len(post) else float("nan"), + "shift": float(np.mean(post) - np.mean(pre)) + if len(pre) and len(post) else float("nan"), + } + + +# ───────────────────────────────────────────────────────────────────────── +# BEAST (primary Bayesian) +# ───────────────────────────────────────────────────────────────────────── + +def fit_beast( + y: pd.Series, + anchor_date: pd.Timestamp, + window_days: int = 5, + tcp_max: int = 3, + quiet: bool = True, +) -> dict: + """BEAST Bayesian changepoint fit. Returns posterior break-date summary. + + Fits a trend-only model (no seasonality) with up to `tcp_max` + changepoints in the trend component. Reports the MAP break location + (argmax of cpOccPr), posterior mass within ±`window_days` of + `anchor_date`, and the full per-timestep changepoint posterior. + """ + import Rbeast as rb # local import — heavy + + y = y.dropna() + n = len(y) + if n < 60: + return {"method": "BEAST", "map_idx": None, "map_date": None, + "p_anchor_window": float("nan"), "cp_prob": None, + "n_obs": int(n)} + vals = y.values.astype(float) + with warnings.catch_warnings(): + warnings.simplefilter("ignore") + out = rb.beast(vals, season="none", + tcp_minmax=[0, int(tcp_max)], + quiet=quiet, print_options=False) + cp_prob = np.asarray(out.trend.cpOccPr, dtype=float) + map_idx = int(np.argmax(cp_prob)) + anchor_idx = int(y.index.get_indexer([anchor_date], method="nearest")[0]) + lo, hi = max(0, anchor_idx - window_days), min(n, anchor_idx + window_days + 1) + p_window = float(cp_prob[lo:hi].sum()) + return { + "method": "BEAST", + "map_idx": map_idx, + "map_date": y.index[map_idx], + "p_anchor_window": p_window, + "cp_prob": cp_prob, + "n_obs": int(n), + "anchor_idx": anchor_idx, + "window_days": int(window_days), + } + + +# ───────────────────────────────────────────────────────────────────────── +# PyMC (Bayesian robustness) +# ───────────────────────────────────────────────────────────────────────── + +def fit_pymc( + y: pd.Series, + anchor_date: pd.Timestamp, + window_days: int = 5, + draws: int = 1000, + tune: int = 1000, + chains: int = 2, + rng_seed: int = 0, + min_size: int = 30, + steepness: float = 1.0, +) -> dict: + """Bayesian single-break model via PyMC with a continuous sigmoid + transition. Returns posterior on break location. + + Model: + y_t | mu_pre, mu_post, tau, sigma + ~ Normal(mu_pre + (mu_post - mu_pre) * sigmoid((t - tau) / steepness), sigma) + tau ~ Uniform(min_size, N - min_size) + mu_pre, mu_post ~ Normal(ybar, 10 * ysd) + sigma ~ HalfNormal(ysd) + + Fixed small `steepness` approximates a hard break; larger values + smooth the transition. Returns posterior mean/HDI on tau plus + P(tau within ±window of anchor). + """ + import pymc as pm # local import — heavy + + y = y.dropna() + n = len(y) + if n < 2 * min_size: + return {"method": "PyMC", "mean_idx": None, "mean_date": None, + "p_anchor_window": float("nan"), "hdi_lo_date": None, + "hdi_hi_date": None, "n_obs": int(n)} + vals = y.values.astype(float) + ybar, ysd = float(vals.mean()), float(vals.std() + 1e-6) + t = np.arange(n, dtype=float) + with pm.Model(): + sigma = pm.HalfNormal("sigma", ysd) + mu_pre = pm.Normal("mu_pre", ybar, 10 * ysd) + mu_post = pm.Normal("mu_post", ybar, 10 * ysd) + tau = pm.Uniform("tau", lower=min_size, upper=n - min_size) + mu = mu_pre + (mu_post - mu_pre) * pm.math.sigmoid((t - tau) / steepness) + pm.Normal("y", mu=mu, sigma=sigma, observed=vals) + with warnings.catch_warnings(): + warnings.simplefilter("ignore") + trace = pm.sample(draws=draws, tune=tune, chains=chains, + random_seed=rng_seed, progressbar=False, + compute_convergence_checks=False) + tau_draws = trace.posterior["tau"].values.flatten() + mean_idx = int(round(float(np.mean(tau_draws)))) + mean_idx = max(0, min(n - 1, mean_idx)) + hdi_lo, hdi_hi = float(np.quantile(tau_draws, 0.025)), float(np.quantile(tau_draws, 0.975)) + anchor_idx = int(y.index.get_indexer([anchor_date], method="nearest")[0]) + lo_w, hi_w = anchor_idx - window_days, anchor_idx + window_days + p_window = float(np.mean((tau_draws >= lo_w) & (tau_draws <= hi_w))) + return { + "method": "PyMC", + "mean_idx": mean_idx, + "mean_date": y.index[mean_idx], + "p_anchor_window": p_window, + "hdi_lo_date": y.index[int(max(0, min(n - 1, round(hdi_lo))))], + "hdi_hi_date": y.index[int(max(0, min(n - 1, round(hdi_hi))))], + "n_obs": int(n), + "anchor_idx": anchor_idx, + "window_days": int(window_days), + "tau_draws": tau_draws, + } + + +# ───────────────────────────────────────────────────────────────────────── +# Null test for BEAST (block-bootstrap under a no-break trend model) +# ───────────────────────────────────────────────────────────────────────── + +def beast_null_test( + y: pd.Series, + anchor_date: pd.Timestamp, + window_days: int = 5, + n_bootstrap: int = 100, + block_len: int = 14, + rng_seed: int = 0, + tcp_max: int = 3, +) -> dict: + """Block-bootstrap null test for the BEAST P(break at anchor) statistic. + + Under the null "no true structural break anywhere," we need to know + what BEAST's P(break within ±window_days of anchor_date) looks like + by chance. Procedure: + + 1. Fit a smooth trend (cubic-spline / polynomial) to y as the + null model — no break. + 2. Compute residuals. + 3. Circular-block-resample residuals, add back the fitted trend. + 4. Run BEAST on each bootstrap sample. + 5. Record P(break ∈ [anchor ± window_days]) for each bootstrap. + + Returns the observed BEAST P, the distribution of null P, and a + bootstrap p-value (fraction of null draws with P ≥ observed). + """ + import Rbeast as rb + y = y.dropna() + n = len(y) + t = np.arange(n, dtype=float) + + # Fit a smooth null trend — cubic polynomial is a reasonable + # trend-only model that won't bake in a break + deg = 3 + coefs = np.polyfit(t, y.values, deg) + trend = np.polyval(coefs, t) + resid = y.values - trend + + # Observed BEAST + obs = fit_beast(y, anchor_date, window_days=window_days, tcp_max=tcp_max) + p_obs = float(obs["p_anchor_window"]) + + # Bootstrap under null + rng = np.random.default_rng(rng_seed) + n_blocks = int(np.ceil(n / block_len)) + null_p: list[float] = [] + for _ in range(n_bootstrap): + starts = rng.integers(0, n, size=n_blocks) + boot_resid = np.concatenate([ + np.take(resid, range(s, s + block_len), mode="wrap") + for s in starts + ])[:n] + boot_y = pd.Series(trend + boot_resid, index=y.index) + r = fit_beast(boot_y, anchor_date, window_days=window_days, + tcp_max=tcp_max) + null_p.append(float(r["p_anchor_window"])) + null_arr = np.asarray(null_p, dtype=float) + # One-sided bootstrap p: fraction of null draws with P ≥ observed + boot_p = float(np.mean(null_arr >= p_obs)) + return { + "p_obs": p_obs, + "null_p_mean": float(np.mean(null_arr)), + "null_p_q95": float(np.quantile(null_arr, 0.95)), + "null_p_q99": float(np.quantile(null_arr, 0.99)), + "boot_p": boot_p, + "n_bootstrap": int(n_bootstrap), + } + + +# ───────────────────────────────────────────────────────────────────────── +# Pair-level orchestrator +# ───────────────────────────────────────────────────────────────────────── + +def fit_pair_break( + y: pd.Series, + anchor_date: pd.Timestamp, + window_days: int = 5, + run_pymc: bool = True, + pymc_kwargs: Optional[dict] = None, +) -> dict: + """Run BEAST + PELT (always) and PyMC (optional) on a pair series. + + Returns a flat dict suitable for a results-table row, containing one + column group per method. + """ + y = y.dropna() + row: dict = {"n_obs": int(len(y))} + + # BEAST (primary) + b = fit_beast(y, anchor_date, window_days=window_days) + row["beast_map_date"] = b["map_date"] + row["beast_p_window"] = b["p_anchor_window"] + if b["map_date"] is not None: + row["beast_days_from_anchor"] = int((b["map_date"] - anchor_date).days) + else: + row["beast_days_from_anchor"] = None + + # PELT (descriptive cross-check) + pelt_idx = detect_break_pelt(y) + if pelt_idx is not None: + shift_info = level_shift_at_break(y, pelt_idx) + row["pelt_date"] = y.index[pelt_idx] + row["pelt_shift"] = shift_info["shift"] + row["pelt_days_from_anchor"] = int((y.index[pelt_idx] - anchor_date).days) + else: + row["pelt_date"] = None + row["pelt_shift"] = float("nan") + row["pelt_days_from_anchor"] = None + + # PyMC (robustness, optional — slow) + if run_pymc: + kw = dict(pymc_kwargs or {}) + p = fit_pymc(y, anchor_date, window_days=window_days, **kw) + row["pymc_mean_date"] = p["mean_date"] + row["pymc_p_window"] = p["p_anchor_window"] + row["pymc_hdi_lo_date"] = p["hdi_lo_date"] + row["pymc_hdi_hi_date"] = p["hdi_hi_date"] + if p["mean_date"] is not None: + row["pymc_days_from_anchor"] = int((p["mean_date"] - anchor_date).days) + else: + row["pymc_days_from_anchor"] = None + return row + + +def run_all_pairs( + df: pd.DataFrame, + pairs: list[tuple[str, str]], + anchor_date: pd.Timestamp, + window_days: int = 5, + run_pymc: bool = True, + pymc_kwargs: Optional[dict] = None, +) -> tuple[pd.DataFrame, dict[str, np.ndarray], dict[str, pd.Series]]: + """Orchestrate break detection across all pairs. + + Returns: + (results_df, beast_cp_probs_by_pair, log_ratio_series_by_pair) + """ + from intervention_pairs import log_ratio + + rows = [] + cp_probs: dict[str, np.ndarray] = {} + series: dict[str, pd.Series] = {} + for a, b in pairs: + y = log_ratio(a, b, df).dropna() + pair_label = f"{a} vs {b}" + series[pair_label] = y + # BEAST first (we need cp_prob separately) + b_res = fit_beast(y, anchor_date, window_days=window_days) + if b_res["cp_prob"] is not None: + cp_probs[pair_label] = b_res["cp_prob"] + # Full pair row (re-uses BEAST internally; small extra cost is fine) + r = fit_pair_break(y, anchor_date, window_days=window_days, + run_pymc=run_pymc, pymc_kwargs=pymc_kwargs) + r["pair"] = pair_label + r["tool_a"] = a + r["tool_b"] = b + rows.append(r) + return pd.DataFrame(rows), cp_probs, series + + +# ───────────────────────────────────────────────────────────────────────── +# Plotting +# ───────────────────────────────────────────────────────────────────────── + +def plot_breaks( + series_by_pair: dict[str, pd.Series], + results: pd.DataFrame, + anchor_date: pd.Timestamp, + out_path: Path, + beast_cp_probs: Optional[dict[str, np.ndarray]] = None, +) -> None: + """Grid plot: each pair's log-share with BEAST posterior as a heat + strip below, overlaid vertical lines for each method's point estimate, + and a black dashed line at anchor_date. + """ + import matplotlib + matplotlib.use("Agg") + import matplotlib.pyplot as plt + + n = len(series_by_pair) + cols = 2 + rows = int(np.ceil(n / cols)) + fig, axes = plt.subplots(rows, cols, figsize=(7 * cols, 3 * rows), + squeeze=False) + for i, (pair, y) in enumerate(series_by_pair.items()): + ax = axes[i // cols][i % cols] + ax.plot(y.index, y.values, lw=0.8, alpha=0.7, color="steelblue") + row_match = results[results["pair"] == pair] + row = row_match.iloc[0] if not row_match.empty else None + + # BEAST posterior as colored rug along bottom of panel + if beast_cp_probs and pair in beast_cp_probs: + prob = beast_cp_probs[pair] + ymin = y.values.min() + yrange = y.values.max() - ymin + rug_y = ymin - 0.05 * yrange + rug_h = 0.08 * yrange + for j, p in enumerate(prob): + if p > 0.005 and j < len(y): + ax.axvspan(y.index[j] - pd.Timedelta(hours=12), + y.index[j] + pd.Timedelta(hours=12), + ymin=0, ymax=min(1.0, p), + color="darkred", alpha=min(0.8, float(p))) + if row is not None: + if row.get("beast_map_date") is not None and pd.notna(row["beast_map_date"]): + ax.axvline(row["beast_map_date"], color="darkred", lw=1.8, + label=f"BEAST MAP ({pd.Timestamp(row['beast_map_date']).date()})") + if row.get("pymc_mean_date") is not None and pd.notna(row.get("pymc_mean_date")): + ax.axvline(row["pymc_mean_date"], color="purple", lw=1.4, + linestyle=":", + label=f"PyMC mean ({pd.Timestamp(row['pymc_mean_date']).date()})") + if pd.notna(row.get("pymc_hdi_lo_date")) and pd.notna(row.get("pymc_hdi_hi_date")): + ax.axvspan(row["pymc_hdi_lo_date"], row["pymc_hdi_hi_date"], + color="purple", alpha=0.1, + label="PyMC 95% HDI") + if row.get("pelt_date") is not None and pd.notna(row.get("pelt_date")): + ax.axvline(row["pelt_date"], color="orange", lw=1.2, + linestyle="--", + label=f"PELT ({pd.Timestamp(row['pelt_date']).date()})") + ax.axvline(anchor_date, color="black", lw=1, linestyle="--", + alpha=0.5, label="Oct 20 anchor") + ax.set_title(pair, fontsize=10) + ax.grid(alpha=0.25) + ax.tick_params(axis="x", labelrotation=30, labelsize=8) + ax.tick_params(axis="y", labelsize=8) + if i == 0: + ax.legend(fontsize=6, loc="lower right") + for j in range(n, rows * cols): + axes[j // cols][j % cols].set_visible(False) + fig.suptitle("Endogenously-detected structural breaks — BEAST (primary), " + "PyMC (robustness), PELT (descriptive)", + fontsize=11) + fig.tight_layout() + fig.savefig(out_path, dpi=150, bbox_inches="tight") + plt.close(fig) diff --git a/intervention_bsts.py b/intervention_bsts.py new file mode 100644 index 0000000..cac6961 --- /dev/null +++ b/intervention_bsts.py @@ -0,0 +1,201 @@ +"""BSTS-style fit via statsmodels UnobservedComponents — used in place of +tfcausalimpact (which does not support Python 3.14).""" +from __future__ import annotations +from pathlib import Path +from typing import Optional + +import numpy as np +import pandas as pd +from scipy.stats import norm +from statsmodels.tsa.statespace.structural import UnobservedComponents + + +def _fit_pre_period(y_pre: pd.Series, X_pre: pd.DataFrame): + """Fit a local-linear-trend UC model on the pre-period with regressors.""" + exog = X_pre.values if X_pre.shape[1] > 0 else None + model = UnobservedComponents( + y_pre.values, + level="local linear trend", + exog=exog, + ) + return model.fit(disp=False, maxiter=200) + + +def _counterfactual_forecast(res, X_post: pd.DataFrame, + post_index: pd.DatetimeIndex, + alpha: float = 0.05): + """Return (predicted_mean, lower, upper, sigma) as aligned pd.Series.""" + steps = len(post_index) + exog = X_post.values if X_post.shape[1] > 0 else None + fc = res.get_forecast(steps=steps, exog=exog) + mean = pd.Series(np.asarray(fc.predicted_mean), index=post_index, + name="point_pred") + ci = fc.conf_int(alpha=alpha) + ci_arr = np.asarray(ci) + lower = pd.Series(ci_arr[:, 0], index=post_index, name="point_pred_lower") + upper = pd.Series(ci_arr[:, 1], index=post_index, name="point_pred_upper") + z = norm.ppf(1 - alpha / 2) + sigma = (upper - lower) / (2.0 * z) + return mean, lower, upper, sigma + + +def fit_bsts( + y: pd.Series, + X: pd.DataFrame, + intervention_date: pd.Timestamp, + pre_start: Optional[pd.Timestamp] = None, + post_end: Optional[pd.Timestamp] = None, + alpha: float = 0.05, +) -> dict: + """Fit a local-linear-trend state-space model on the pre-period and + generate a counterfactual for the post-period. + + Returns dict with: + summary: str (statsmodels results summary) + point_effect: pd.Series actual - predicted on the post-period + cumulative_effect: pd.Series cumsum of point_effect + posterior_draws: pd.DataFrame columns point_pred, point_pred_lower, + point_pred_upper, point_effects, post_cum_effects, + post_cum_effects_lower, post_cum_effects_upper (indexed over the full + y.index so callers can slice by date) + p_cumulative_positive: float probability cumulative effect > 0 + ci: fitted statsmodels results object + """ + y = y.astype(float).copy() + if pre_start is None: + pre_start = y.index.min() + if post_end is None: + post_end = y.index.max() + + pre_mask = (y.index >= pre_start) & (y.index < intervention_date) + post_mask = (y.index >= intervention_date) & (y.index <= post_end) + y_pre = y[pre_mask].dropna() + X_pre = X.loc[y_pre.index] + post_index = y.index[post_mask] + X_post = X.loc[post_index] + y_post = y.loc[post_index] + + res = _fit_pre_period(y_pre, X_pre) + + # In-sample predictions over the pre-period (for posterior-predictive check) + pred_pre = res.get_prediction(start=0, end=len(y_pre) - 1) + pre_mean = pd.Series(np.asarray(pred_pre.predicted_mean), + index=y_pre.index, name="point_pred") + pre_ci = np.asarray(pred_pre.conf_int(alpha=alpha)) + pre_lower = pd.Series(pre_ci[:, 0], index=y_pre.index, + name="point_pred_lower") + pre_upper = pd.Series(pre_ci[:, 1], index=y_pre.index, + name="point_pred_upper") + + # Post-period forecast + post_mean, post_lower, post_upper, post_sigma = _counterfactual_forecast( + res, X_post, post_index, alpha=alpha + ) + + # Effects + point_effects_post = (y_post - post_mean).rename("point_effect") + cum_effect = point_effects_post.cumsum().rename("cumulative_effect") + + # Approximate 95% bands for cumulative: assume independent forecast errors + # (mild approximation — BSTS errors are approximately uncorrelated after + # the state-space decomposition). + cum_sigma = np.sqrt(np.cumsum(post_sigma.values ** 2)) + z = norm.ppf(1 - alpha / 2) + cum_lower = pd.Series(cum_effect.values - z * cum_sigma, index=post_index, + name="post_cum_effects_lower") + cum_upper = pd.Series(cum_effect.values + z * cum_sigma, index=post_index, + name="post_cum_effects_upper") + + # P(cumulative > 0) at the final step + final_mean = float(cum_effect.iloc[-1]) + final_sigma = float(cum_sigma[-1]) if cum_sigma[-1] > 0 else 1e-9 + p_pos = float(1 - norm.cdf(0.0, loc=final_mean, scale=final_sigma)) + + # Assemble posterior_draws-style DataFrame indexed over y.index + draws = pd.DataFrame(index=y.index) + draws["point_pred"] = pd.concat([pre_mean, post_mean]) + draws["point_pred_lower"] = pd.concat([pre_lower, post_lower]) + draws["point_pred_upper"] = pd.concat([pre_upper, post_upper]) + draws["point_effects"] = np.nan + draws.loc[post_index, "point_effects"] = point_effects_post.values + draws["post_cum_effects"] = np.nan + draws.loc[post_index, "post_cum_effects"] = cum_effect.values + draws["post_cum_effects_lower"] = np.nan + draws.loc[post_index, "post_cum_effects_lower"] = cum_lower.values + draws["post_cum_effects_upper"] = np.nan + draws.loc[post_index, "post_cum_effects_upper"] = cum_upper.values + + return { + "summary": str(res.summary()), + "point_effect": point_effects_post, + "cumulative_effect": cum_effect, + "posterior_draws": draws, + "p_cumulative_positive": p_pos, + "ci": res, + } + + +def posterior_predictive_check(result: dict, + y: pd.Series, + intervention_date: pd.Timestamp) -> dict: + """Pre-period PPC: fraction of observed y that fall inside the in-sample + 95% prediction interval during the pre-period.""" + draws = result["posterior_draws"] + pre = draws.loc[draws.index < intervention_date] + pre = pre.dropna(subset=["point_pred_lower", "point_pred_upper"]) + if len(pre) == 0: + return {"pre_period_coverage": 0.0, "pre_period_days": 0} + y_pre = y.loc[pre.index] + inside = ((y_pre >= pre["point_pred_lower"]) & + (y_pre <= pre["point_pred_upper"])).mean() + return { + "pre_period_coverage": float(inside), + "pre_period_days": int(len(pre)), + } + + +def plot_bsts(result: dict, + y: pd.Series, + intervention_date: pd.Timestamp, + out_path: Path) -> None: + """Three-panel plot: actual vs counterfactual, pointwise effect, cumulative effect.""" + import matplotlib + matplotlib.use("Agg") + import matplotlib.pyplot as plt + + draws = result["posterior_draws"] + fig, axes = plt.subplots(3, 1, figsize=(11, 9), sharex=True) + + ax = axes[0] + ax.plot(y.index, y.values, label="actual", lw=1.2) + ax.plot(draws.index, draws["point_pred"], label="counterfactual", + lw=1.2, linestyle="--") + ax.fill_between(draws.index, draws["point_pred_lower"], + draws["point_pred_upper"], alpha=0.2, label="95% band") + ax.axvline(intervention_date, color="red", alpha=0.5) + ax.set_title("Actual vs counterfactual") + ax.legend() + ax.grid(alpha=0.2) + + ax = axes[1] + pe = result["point_effect"] + ax.plot(pe.index, pe.values, label="actual - predicted", lw=1.2) + ax.axhline(0, color="gray", alpha=0.4) + ax.axvline(intervention_date, color="red", alpha=0.5) + ax.set_title("Pointwise effect") + ax.grid(alpha=0.2) + + ax = axes[2] + ce = result["cumulative_effect"] + ax.plot(ce.index, ce.values, label="cumulative effect", lw=1.5) + ax.fill_between(draws.dropna(subset=["post_cum_effects_lower"]).index, + draws["post_cum_effects_lower"].dropna(), + draws["post_cum_effects_upper"].dropna(), alpha=0.2) + ax.axhline(0, color="gray", alpha=0.4) + ax.axvline(intervention_date, color="red", alpha=0.5) + ax.set_title("Cumulative effect") + ax.grid(alpha=0.2) + + fig.tight_layout() + fig.savefig(out_path, dpi=150, bbox_inches="tight") + plt.close(fig) diff --git a/intervention_car.py b/intervention_car.py new file mode 100644 index 0000000..22551eb --- /dev/null +++ b/intervention_car.py @@ -0,0 +1,291 @@ +"""Event-window Cumulative Abnormal Commits (CAR) analysis. + +Per the econometric review: the cleanest causal statement we can make on +daily commit data is a short event-window CAR. We fit a pre-treatment +time-series model (trend + DoW) on a 90-day pre-period, predict a tight +±5-day window around the intervention, and report the cumulative +abnormal volume with Newey-West SEs. + +The window ±5 days around Oct 20 excludes Sonnet 4.5 (Sep 29, −21d), +Haiku 4.5 (Oct 15, −5d — edge), Cursor 2.0 (Oct 29, +9d), and all +subsequent frontier-model launches. It is the minimum-contamination +window available in the data. +""" +from __future__ import annotations +from pathlib import Path +from typing import Optional + +import numpy as np +import pandas as pd +import statsmodels.api as sm + + +def build_market_aggregate( + df: pd.DataFrame, + tools: Optional[list[str]] = None, + exclude_tools: tuple[str, ...] = ("Copilot SWE Agent", "Warp (Oz Agent)"), +) -> pd.Series: + """Daily total commits across AI agents (default: all tools in df minus + superseded signatures). Returns a Series indexed by date.""" + d = df[~df["tool"].isin(exclude_tools)] + if tools is not None: + d = d[d["tool"].isin(tools)] + agg = d.groupby("date")["commits"].sum() + return agg.sort_index() + + +def fit_pre_model( + y: pd.Series, + pre_start: pd.Timestamp, + pre_end: pd.Timestamp, + use_log: bool = True, + nw_lags: int = 7, +) -> dict: + """Fit a pre-treatment time-series model: + log(y_t + 1) = alpha + beta * t + gamma_dow * DoW + eps_t + + with Newey-West HAC SEs. Returns the fitted statsmodels result plus + the design-matrix builder so we can predict an out-of-sample window. + + `use_log` applies a log(y + 1) transform (appropriate for commit + counts, which are heteroscedastic in levels). Set False for a + levels-model sanity check. + """ + y = y.dropna() + mask = (y.index >= pre_start) & (y.index <= pre_end) + y_pre = y.loc[mask].astype(float) + if len(y_pre) < 20: + raise ValueError(f"pre-period too short: {len(y_pre)} days") + t0 = y_pre.index.min() + t = (y_pre.index - t0).days.astype(float).to_numpy() + dow = pd.get_dummies(y_pre.index.dayofweek, prefix="dow", + drop_first=True).astype(float).to_numpy() + X = np.column_stack([np.ones_like(t), t, dow]) + y_target = np.log(y_pre.values + 1.0) if use_log else y_pre.values + fit = sm.OLS(y_target, X).fit(cov_type="HAC", + cov_kwds={"maxlags": nw_lags}) + return { + "fit": fit, "t0": t0, "use_log": use_log, + "n_pre": int(len(y_pre)), + "pre_start": pre_start, "pre_end": pre_end, + "y_pre": y_pre, + } + + +def predict_window( + pre_model: dict, + dates: pd.DatetimeIndex, +) -> tuple[np.ndarray, np.ndarray]: + """Out-of-sample prediction + point-level SE for the given dates. + + Returns (y_hat, se_hat) in the original (un-logged) scale, using the + delta method to propagate SE through the exp(·) back-transform when + `pre_model["use_log"]` is True. + """ + fit = pre_model["fit"] + t0 = pre_model["t0"] + use_log = pre_model["use_log"] + t = (dates - t0).days.astype(float).to_numpy() + dow = pd.get_dummies(dates.dayofweek, prefix="dow", + drop_first=True).astype(float) + # Align DoW columns with the pre-period design (some levels may be + # absent in a short window — fill with 0) + pre_dow = pd.get_dummies(pre_model["y_pre"].index.dayofweek, + prefix="dow", drop_first=True).astype(float) + for c in pre_dow.columns: + if c not in dow.columns: + dow[c] = 0.0 + dow = dow[pre_dow.columns].to_numpy() + X = np.column_stack([np.ones_like(t), t, dow]) + y_hat_link = fit.predict(X) + # Point-level SE on the linear predictor + cov = np.asarray(fit.cov_params()) + se_link = np.sqrt(np.einsum("ij,jk,ik->i", X, cov, X)) + if use_log: + y_hat = np.exp(y_hat_link) - 1.0 + # delta method: Var(exp(mu)) ≈ exp(2*mu) * Var(mu) + se = np.exp(y_hat_link) * se_link + else: + y_hat = y_hat_link + se = se_link + return y_hat, se + + +def compute_car( + y: pd.Series, + intervention_date: pd.Timestamp, + pre_days: int = 90, + window_pre: int = 5, + window_post: int = 5, + use_log: bool = True, + nw_lags: int = 7, +) -> dict: + """Event-study CAR: + 1. Fit a pre-model on `pre_days` ending `window_pre + 1` days + before `intervention_date` (so the window itself is out-of-sample). + 2. Predict the window [intervention_date - window_pre, + intervention_date + window_post]. + 3. Compute abnormal_t = observed_t - y_hat_t. + 4. CAR = sum(abnormal_t). + 5. SE(CAR) under NW residual covariance assumption. + + Returns a dict with observed, predicted, abnormal series and scalar + CAR + SE + z + p. + """ + y = y.dropna() + pre_end = intervention_date - pd.Timedelta(days=window_pre + 1) + pre_start = pre_end - pd.Timedelta(days=pre_days - 1) + pm_ = fit_pre_model(y, pre_start, pre_end, use_log=use_log, + nw_lags=nw_lags) + win_start = intervention_date - pd.Timedelta(days=window_pre) + win_end = intervention_date + pd.Timedelta(days=window_post) + win_dates = y.loc[(y.index >= win_start) & (y.index <= win_end)].index + if len(win_dates) == 0: + raise ValueError("empty event window — check dates") + y_obs = y.loc[win_dates].values.astype(float) + y_hat, se_point = predict_window(pm_, win_dates) + abnormal = y_obs - y_hat + car = float(abnormal.sum()) + # SE(CAR) has two components: + # (a) parameter uncertainty in the forecast — captured by se_point above + # (b) idiosyncratic shock per window day — residual variance from pre-fit + # We assume independence across window days (length ≤ 11 here). + resid = np.asarray(pm_["fit"].resid) + resid_var_link = float(np.var(resid, ddof=1)) + if use_log: + # delta method for exp(link) - 1 back-transform: Var ≈ (exp link)^2 * Var(link) + resid_var_per_day = (y_hat + 1.0) ** 2 * resid_var_link + else: + resid_var_per_day = np.full_like(y_hat, resid_var_link) + se_car = float(np.sqrt(np.sum(se_point ** 2) + np.sum(resid_var_per_day))) + z = car / se_car if se_car > 0 else float("nan") + # two-sided normal p + from scipy.stats import norm + p = float(2 * (1 - norm.cdf(abs(z)))) if np.isfinite(z) else float("nan") + return { + "intervention_date": intervention_date, + "window_start": win_start, + "window_end": win_end, + "pre_start": pre_start, + "pre_end": pre_end, + "n_pre": pm_["n_pre"], + "n_window": int(len(win_dates)), + "observed": pd.Series(y_obs, index=win_dates), + "predicted": pd.Series(y_hat, index=win_dates), + "abnormal": pd.Series(abnormal, index=win_dates), + "car": car, + "se_car": se_car, + "z": float(z), + "p": p, + "use_log": use_log, + } + + +def run_window_grid( + y: pd.Series, + intervention_date: pd.Timestamp, + windows: list[tuple[int, int]], + pre_days: int = 90, + use_log: bool = True, + contaminating_events: Optional[dict[pd.Timestamp, str]] = None, +) -> pd.DataFrame: + """Run CAR across multiple (pre, post) window pairs and tabulate + results with annotations of which known events fall inside each + window. + + `windows` is a list of (window_pre, window_post) tuples. If + `contaminating_events` is provided (date → label), each row includes + a semicolon-joined list of labels for events falling inside the + window. + """ + rows = [] + for wp, wq in windows: + r = compute_car(y, intervention_date, pre_days=pre_days, + window_pre=wp, window_post=wq, use_log=use_log) + inside: list[str] = [] + if contaminating_events: + for d, lbl in contaminating_events.items(): + if r["window_start"] <= pd.Timestamp(d) <= r["window_end"]: + if pd.Timestamp(d) != intervention_date: + inside.append(f"{pd.Timestamp(d).strftime('%b %d')}: {lbl}") + rows.append({ + "window": f"[-{wp}, +{wq}]", + "n_days": r["n_window"], + "car": r["car"], + "se": r["se_car"], + "z": r["z"], + "p": r["p"], + "events_inside": "; ".join(inside) if inside else "-", + }) + return pd.DataFrame(rows) + + +def run_placebo_car( + y: pd.Series, + placebo_dates: list[pd.Timestamp], + pre_days: int = 90, + window_pre: int = 5, + window_post: int = 5, + use_log: bool = True, +) -> pd.DataFrame: + """Run CAR on a list of placebo dates (e.g., quiet pre-Oct 20 dates). + + Used for falsification: if placebo CARs at quiet dates are small and + non-significant while the real intervention CAR is large, the method + is not just finding abnormal volume everywhere. + """ + rows = [] + for d in placebo_dates: + try: + r = compute_car(y, d, pre_days=pre_days, + window_pre=window_pre, window_post=window_post, + use_log=use_log) + rows.append({ + "date": d, "car": r["car"], "se": r["se_car"], + "z": r["z"], "p": r["p"], "n_window": r["n_window"], + }) + except Exception as exc: + rows.append({"date": d, "car": float("nan"), "se": float("nan"), + "z": float("nan"), "p": float("nan"), + "error": str(exc)}) + return pd.DataFrame(rows) + + +def plot_car(result: dict, out_path: Path, + title_suffix: str = "") -> None: + """Plot observed, predicted, and cumulative abnormal over the window.""" + import matplotlib + matplotlib.use("Agg") + import matplotlib.pyplot as plt + + fig, (ax1, ax2) = plt.subplots(2, 1, figsize=(9, 6), sharex=True, + gridspec_kw={"height_ratios": [2, 1]}) + obs, pred, abn = result["observed"], result["predicted"], result["abnormal"] + ax1.plot(obs.index, obs.values, "o-", color="steelblue", + label="observed", lw=1.5, ms=5) + ax1.plot(pred.index, pred.values, "s--", color="darkorange", + label="predicted (pre-trained)", lw=1.5, ms=4, alpha=0.8) + ax1.axvline(result["intervention_date"], color="red", alpha=0.5, + label=f"intervention ({result['intervention_date'].date()})") + ax1.set_title(f"Event-window CAR: observed vs counterfactual {title_suffix}") + ax1.set_ylabel("Commits/day") + ax1.legend(loc="best", fontsize=9) + ax1.grid(alpha=0.3) + + ax2.axhline(0, color="black", lw=0.8, alpha=0.6) + car_cum = abn.cumsum() + ax2.plot(abn.index, car_cum.values, "o-", color="navy", lw=1.5, ms=4, + label=f"CAR = {result['car']:+,.0f} " + f"(z={result['z']:.2f}, p={result['p']:.3f})") + ax2.axvline(result["intervention_date"], color="red", alpha=0.5) + ax2.fill_between(abn.index, 0, car_cum.values, + where=(car_cum.values > 0), + color="navy", alpha=0.2) + ax2.set_ylabel("Cumulative abnormal") + ax2.set_xlabel("Date") + ax2.legend(loc="best", fontsize=9) + ax2.grid(alpha=0.3) + + fig.tight_layout() + fig.savefig(out_path, dpi=150, bbox_inches="tight") + plt.close(fig) diff --git a/intervention_data.py b/intervention_data.py new file mode 100644 index 0000000..7f582cb --- /dev/null +++ b/intervention_data.py @@ -0,0 +1,70 @@ +"""Aggregate series and regressor matrix builders for intervention analysis.""" +from __future__ import annotations +from pathlib import Path +from typing import Optional + +import pandas as pd + +AIDER_SIGNATURE_CHANGE = pd.Timestamp("2025-05-09") +SUPERSEDED_TOOLS = ("Copilot SWE Agent", "Warp (Oz Agent)") + + +def load_commits(path: Path | str) -> pd.DataFrame: + return pd.read_csv(path, parse_dates=["date"]) + + +def build_other_agents_total( + df: pd.DataFrame, + exclude_tool: str = "Claude Code", + exclude_aider_after: Optional[pd.Timestamp] = AIDER_SIGNATURE_CHANGE, + superseded_tools: tuple[str, ...] = SUPERSEDED_TOOLS, +) -> pd.DataFrame: + """Pivot + aggregate to daily 'other_agents_total'. + + `superseded_tools` names the old signatures whose counts are fully + covered by a newer (retroactive) signature already in the panel. They + are dropped entirely to avoid double-counting (e.g., "Copilot SWE + Agent" old vs "Copilot SWE Agent (new)", which share 334 overlap days). + + Returns a DataFrame indexed by date with per-tool columns plus + an 'other_agents_total' column that sums across all retained tools. + """ + piv = df.pivot_table(index="date", columns="tool", + values="commits", aggfunc="sum").fillna(0) + if exclude_tool in piv.columns: + piv = piv.drop(columns=[exclude_tool]) + drop = [t for t in superseded_tools if t in piv.columns] + if drop: + piv = piv.drop(columns=drop) + if exclude_aider_after is not None and "Aider" in piv.columns: + piv.loc[piv.index >= exclude_aider_after, "Aider"] = 0 + piv["other_agents_total"] = piv.sum(axis=1) + return piv + + +def build_regressor_matrix( + index: pd.DatetimeIndex, + events_csv: Path | str, + include_day_of_week: bool = True, +) -> pd.DataFrame: + """Build regressor matrix with step dummies for each event + DoW dummies.""" + ev = pd.read_csv(events_csv, parse_dates=["date"]) + X = pd.DataFrame(index=index) + for _, row in ev.iterrows(): + col = row["event"] + X[col] = (index >= row["date"]).astype(int) + if include_day_of_week: + dow = pd.get_dummies(index.dayofweek, prefix="dow", drop_first=True) + dow.index = index + X = pd.concat([X, dow.astype(int)], axis=1) + return X + + +def null_gharchive_outage(s: pd.Series, + start: str = "2025-10-08", + end: str = "2025-10-14") -> pd.Series: + """Set the outage window to NaN (BSTS handles missing).""" + s = s.copy() + mask = (s.index >= pd.Timestamp(start)) & (s.index <= pd.Timestamp(end)) + s.loc[mask] = float("nan") + return s diff --git a/intervention_pairs.py b/intervention_pairs.py new file mode 100644 index 0000000..762971c --- /dev/null +++ b/intervention_pairs.py @@ -0,0 +1,217 @@ +"""Substitution-pair interrupted time series via segmented regression. + +Primary spec (levels): + log((a + 1)/(b + 1)) = alpha + beta*t + gamma*1{t>=tau} + delta*(t-tau)*1{t>=tau} + eps +with Newey-West / HAC standard errors (lag=14). + +Per the econometric review, log-ratios of non-stationary commit series +can themselves be near-I(1), in which case HAC SEs are still not enough. +We also report: + - ADF + KPSS unit-root tests on each log-ratio + - First-differenced spec: Δlog_ratio_t = ... + gamma_d * D_tau + eps + The first-difference coefficient on D_tau captures the level shift at + the break as a single-day pulse; a positive significant coefficient + on D_tau is robust to stationarity assumptions. + +Positive gamma (levels) means tool_a's share rose relative to tool_b at +tau; the diff spec gives an ADF/KPSS-robust cross-check. +""" +from __future__ import annotations +from typing import Iterable + +import warnings +import numpy as np +import pandas as pd +import statsmodels.api as sm + + +def log_ratio(tool_a: str, tool_b: str, df: pd.DataFrame) -> pd.Series: + """log((tool_a_t + 1) / (tool_b_t + 1)) — +1 offset handles zero days.""" + a = df[df["tool"] == tool_a].groupby("date")["commits"].sum() + b = df[df["tool"] == tool_b].groupby("date")["commits"].sum() + idx = a.index.union(b.index) + a = a.reindex(idx, fill_value=0) + b = b.reindex(idx, fill_value=0) + return np.log((a + 1) / (b + 1)).rename(f"log({tool_a}/{tool_b})") + + +def fit_segmented_regression( + y: pd.Series, + tau: pd.Timestamp, + nw_lags: int = 14, +) -> dict: + """Fit y_t = alpha + beta*t + gamma*1{t>=tau} + delta*(t-tau)*1{t>=tau} + with Newey-West HAC SEs. Returns a dict with point estimates, SEs, and + 95% confidence bounds for each coefficient, plus r2 and n_obs. + + y must be a pd.Series indexed by datetime with no NaNs; tau must be a + timestamp present in (or expressible against) the index. + """ + y = y.dropna() + if tau not in y.index: + raise ValueError(f"tau {tau} not found in series index") + t = np.arange(len(y), dtype=float) + tau_idx = y.index.get_loc(tau) + post = (t >= tau_idx).astype(float) + t_after = np.where(post == 1, t - tau_idx, 0.0) + X = pd.DataFrame( + {"const": 1.0, "t": t, "post": post, "t_after": t_after}, + index=y.index, + ) + fit = sm.OLS(y.values, X.values).fit( + cov_type="HAC", cov_kwds={"maxlags": nw_lags} + ) + coef_names = ["alpha", "beta", "gamma", "delta"] + ci = np.asarray(fit.conf_int()) + res: dict = {} + for i, name in enumerate(coef_names): + res[name] = float(fit.params[i]) + res[f"{name}_se"] = float(fit.bse[i]) + res[f"{name}_ci_lo"] = float(ci[i, 0]) + res[f"{name}_ci_hi"] = float(ci[i, 1]) + res["n_obs"] = int(len(y)) + res["r2"] = float(fit.rsquared) + return res + + +def unit_root_tests(y: pd.Series) -> dict: + """ADF (H0: unit root) + KPSS (H0: stationarity) on a series. + + Returns both p-values. Interpret: if ADF p > 0.05 AND KPSS p < 0.05, + series is I(1) and HAC levels-ITS SEs under-cover. Prefer first-diff + spec in that case. ADF p < 0.05 + KPSS p > 0.05 confirms stationarity. + """ + from statsmodels.tsa.stattools import adfuller, kpss + y = y.dropna() + with warnings.catch_warnings(): + warnings.simplefilter("ignore") + try: + adf_stat, adf_p, *_ = adfuller(y.values, autolag="AIC") + except Exception: + adf_stat, adf_p = float("nan"), float("nan") + try: + kpss_stat, kpss_p, *_ = kpss(y.values, regression="ct", nlags="auto") + except Exception: + kpss_stat, kpss_p = float("nan"), float("nan") + return {"adf_stat": float(adf_stat), "adf_p": float(adf_p), + "kpss_stat": float(kpss_stat), "kpss_p": float(kpss_p)} + + +def fit_first_differenced_its( + y: pd.Series, + tau: pd.Timestamp, + nw_lags: int = 14, +) -> dict: + """First-differenced ITS that properly recovers the levels parameters. + + Starting from the levels spec + y_t = α + β·t + γ·1{t≥τ} + δ·(t-τ)·1{t≥τ} + ε_t + first-differencing yields + Δy_t = β + (γ-δ)·P_t + δ·D_t + v_t + where P_t = 1{t=τ} (pulse), D_t = 1{t≥τ} (step), v_t = ε_t - ε_{t-1}. + + Regressing Δy on const + pulse + step with HAC SEs gives: + - pi = γ - δ (coefficient on pulse) + - sigma = δ (coefficient on step) + - γ_levels recovered = π + σ + - δ_levels recovered = σ + + This spec is robust to the raw series being I(1): first-differencing + makes the residuals stationary, so HAC is well-behaved on v_t. The + earlier pulse-only spec (removed 2026-04-21) was a one-day innovation + test, not a level-shift recovery — it systematically under-captured γ + when δ was non-zero. + + Returns pi, sigma, and the derived gamma_levels with SE via the + covariance matrix: Var(π+σ) = Var(π) + Var(σ) + 2·Cov(π,σ). + """ + y = y.dropna() + if tau not in y.index: + raise ValueError(f"tau {tau} not in index") + dy = y.diff().dropna() + tau_idx = dy.index.get_loc(tau) if tau in dy.index else None + if tau_idx is None: + return {"pi": float("nan"), "sigma": float("nan"), + "gamma_levels": float("nan"), "gamma_levels_se": float("nan"), + "gamma_levels_p": float("nan"), + "delta_levels": float("nan"), "delta_levels_p": float("nan"), + "n_obs": int(len(dy))} + pulse = np.zeros(len(dy)) + pulse[tau_idx] = 1.0 + step = np.zeros(len(dy)) + step[tau_idx:] = 1.0 + X = np.column_stack([np.ones(len(dy)), pulse, step]) + fit = sm.OLS(dy.values, X).fit(cov_type="HAC", + cov_kwds={"maxlags": nw_lags}) + from scipy.stats import norm + pi = float(fit.params[1]) + sigma = float(fit.params[2]) + cov = np.asarray(fit.cov_params()) + var_gamma = float(cov[1, 1] + cov[2, 2] + 2 * cov[1, 2]) + se_gamma = float(np.sqrt(max(var_gamma, 0.0))) + gamma_levels = pi + sigma + z_gamma = gamma_levels / se_gamma if se_gamma > 0 else float("nan") + p_gamma = (float(2 * (1 - norm.cdf(abs(z_gamma)))) + if np.isfinite(z_gamma) else float("nan")) + se_sigma = float(fit.bse[2]) + z_sigma = sigma / se_sigma if se_sigma > 0 else float("nan") + p_sigma = (float(2 * (1 - norm.cdf(abs(z_sigma)))) + if np.isfinite(z_sigma) else float("nan")) + return { + "pi": pi, "sigma": sigma, + "gamma_levels": gamma_levels, + "gamma_levels_se": se_gamma, + "gamma_levels_z": float(z_gamma), + "gamma_levels_p": p_gamma, + "delta_levels": sigma, + "delta_levels_p": p_sigma, + "n_obs": int(len(dy)), + } + + +def run_all_pairs( + df: pd.DataFrame, + pairs: Iterable[tuple[str, str]], + tau: pd.Timestamp, + nw_lags: int = 14, +) -> pd.DataFrame: + """For each (a, b) pair: run segmented-regression (levels), unit-root + tests, and first-differenced ITS. Return all results in one table.""" + rows = [] + for a, b in pairs: + y = log_ratio(a, b, df) + lev = fit_segmented_regression(y, tau, nw_lags=nw_lags) + ur = unit_root_tests(y) + diff = fit_first_differenced_its(y, tau, nw_lags=nw_lags) + rows.append({ + "pair": f"{a} vs {b}", + "partner": b, + # levels spec + "gamma": lev["gamma"], + "gamma_ci_lo": lev["gamma_ci_lo"], + "gamma_ci_hi": lev["gamma_ci_hi"], + "delta": lev["delta"], + "delta_ci_lo": lev["delta_ci_lo"], + "delta_ci_hi": lev["delta_ci_hi"], + "r2": lev["r2"], + # unit root + "adf_p": ur["adf_p"], + "kpss_p": ur["kpss_p"], + "i1_suspect": bool(ur["adf_p"] > 0.05 and ur["kpss_p"] < 0.05), + # first-diff spec (pulse + step parameterization; recovers levels γ, δ) + "gamma_levels_fd": diff["gamma_levels"], + "gamma_levels_fd_p": diff["gamma_levels_p"], + "delta_levels_fd": diff["delta_levels"], + "delta_levels_fd_p": diff["delta_levels_p"], + }) + return pd.DataFrame(rows) + + +PAIRS_TO_RUN: list[tuple[str, str]] = [ + ("Claude Code", "OpenAI Codex"), + ("Claude Code", "Cursor"), + ("Claude Code", "Copilot SWE Agent (new)"), + ("Claude Code", "Devin"), + ("Claude Code", "Jules (Google)"), + ("Claude Code", "Replit Agent"), +] diff --git a/intervention_robustness.py b/intervention_robustness.py new file mode 100644 index 0000000..54cdf2c --- /dev/null +++ b/intervention_robustness.py @@ -0,0 +1,114 @@ +"""Robustness checks for the BSTS headline intervention fit. + +Provides: +- build_excluded_series(): aggregate "other agents" with additional + tools excluded, for sensitivity analysis (e.g., excluding Cursor to + test whether the Oct 20 effect is driven by Cursor 2.0 on Oct 29). +- fit_cursor_excluded(): convenience wrapper — re-runs the BSTS fit + with Cursor removed from the outcome. +- fit_placebo(): fits BSTS with a fake intervention date and a + truncated pre-period ending the day before the placebo. Used to + check if a known confounder (Cursor 2.0 on Oct 29) would produce a + spurious "effect" without Claude Code's web launch in the picture. +""" +from __future__ import annotations +from typing import Optional, Sequence + +import pandas as pd + +import intervention_data as idat +from intervention_bsts import fit_bsts + + +def build_excluded_series( + df: pd.DataFrame, + exclude_tools: Sequence[str], +) -> pd.Series: + """Same as build_other_agents_total, with additional tools removed. + + Drops the named tools from the raw commits DataFrame *before* the + pivot/aggregate so that downstream cutoffs (Aider, Copilot SWE old) + still apply to the remaining tools. Raises ValueError if any name in + `exclude_tools` is not present in `df["tool"]` so typos fail loudly + instead of silently disabling the exclusion. + """ + available = set(df["tool"].unique()) + missing = set(exclude_tools) - available + if missing: + raise ValueError( + f"exclude_tools contains names not in df: {sorted(missing)}" + ) + mask = ~df["tool"].isin(exclude_tools) + piv = idat.build_other_agents_total(df[mask]) + return piv["other_agents_total"] + + +def fit_cursor_excluded( + df: pd.DataFrame, + X: pd.DataFrame, + intervention_date: pd.Timestamp, + pre_start: Optional[pd.Timestamp] = None, + post_end: Optional[pd.Timestamp] = None, +) -> dict: + """BSTS fit for 'other agents ex-Claude-Code ex-Cursor'. Raises + ValueError if X does not cover y's date range so silent KeyErrors + from `.loc` become a clean, readable error message.""" + y = build_excluded_series(df, exclude_tools=["Cursor"]).astype(float) + missing = y.index.difference(X.index) + if len(missing) > 0: + raise ValueError( + f"X is missing {len(missing)} dates present in the excluded " + f"series (e.g. {missing[0].date()}); align X and y before calling." + ) + X_aligned = X.loc[y.index] + return fit_bsts( + y, X_aligned, intervention_date, + pre_start=pre_start, post_end=post_end, + ) + + +def fit_placebo( + y: pd.Series, + X: pd.DataFrame, + placebo_date: pd.Timestamp, + post_horizon_days: int = 60, + pre_start: Optional[pd.Timestamp] = None, +) -> dict: + """BSTS fit with a fake intervention at `placebo_date` and a short + post-period (default 60 days) immediately following. + + Intended for falsification: if a known confounder (e.g., Cursor 2.0 + on Oct 29) produces a large "effect" here, the main Oct 20 result is + partly confounded. A null placebo supports the main interpretation. + + The caller must construct X such that it does NOT include a regressor + dummy for the real intervention date (otherwise the model will fit + the true effect into the covariate rather than attribute it to the + placebo). For most callers this means dropping the Claude-Code-web + step-dummy column from X before passing it in. + + Raises ValueError if `placebo_date` is outside the y index or if + `pre_start >= placebo_date` (would yield an empty pre-period). + """ + y = y.astype(float) + if placebo_date < y.index.min() or placebo_date > y.index.max(): + raise ValueError( + f"placebo_date={placebo_date.date()} is outside y range " + f"[{y.index.min().date()}, {y.index.max().date()}]" + ) + if pre_start is None: + pre_start = y.index.min() + if pre_start >= placebo_date: + raise ValueError( + f"pre_start={pre_start.date()} must be strictly before " + f"placebo_date={placebo_date.date()}" + ) + post_end = placebo_date + pd.Timedelta(days=post_horizon_days) + post_end = min(post_end, y.index.max()) + mask = (y.index >= pre_start) & (y.index <= post_end) + y_win = y.loc[mask] + X_win = X.loc[y_win.index] + return fit_bsts( + y_win, X_win, placebo_date, + pre_start=pre_start, post_end=post_end, + ) diff --git a/intervention_sdid.py b/intervention_sdid.py new file mode 100644 index 0000000..790662e --- /dev/null +++ b/intervention_sdid.py @@ -0,0 +1,337 @@ +"""Synthetic Difference-in-Differences (Arkhangelsky et al. 2021) primary +intervention estimator. + +Uses the vendored synthdid library at vendor/synthdid/. Applies a pandas +3.x compat shim before import because synthdid predates pandas 3.0. +""" +from __future__ import annotations +from pathlib import Path +from typing import Optional, Sequence + +import sys +import warnings +import numpy as np +import pandas as pd + +# pandas 3.x shim — must precede the synthdid import +if not hasattr(pd.DataFrame, "applymap"): + pd.DataFrame.applymap = pd.DataFrame.map + +# Make the vendored library importable +_VENDOR = str(Path(__file__).resolve().parent / "vendor") +if _VENDOR not in sys.path: + sys.path.insert(0, _VENDOR) + +from synthdid.sdid import sdid # noqa: E402 + + +DEFAULT_INTERVENTION = pd.Timestamp("2025-10-20") +DEFAULT_BOT_DONORS = [ + "Dependabot", "Renovate", "pre-commit-ci", + "semantic-release-bot", "allcontributors", "github-actions", +] + + +def load_bot_donors(path: Path | str) -> pd.DataFrame: + """Load bot-donor commit data from a CSV file. + + Args: + path: Path to a CSV with at least columns ``date`` (parseable as + datetime), ``donor`` (str), and ``commits`` (numeric). + + Returns: + DataFrame with columns ``date``, ``donor``, ``commits`` (float/int). + Non-numeric ``commits`` values are coerced to 0; a warning is emitted + when any coercion occurs. + + Common failure modes: + - Missing ``date``, ``donor``, or ``commits`` columns → KeyError. + - All-NaN commits column (wrong file) → silent zeros; check the warning. + """ + df = pd.read_csv(path, parse_dates=["date"]) + numeric = pd.to_numeric(df["commits"], errors="coerce") + n_coerced = int(numeric.isna().sum() - df["commits"].isna().sum()) + if n_coerced > 0: + warnings.warn( + f"load_bot_donors coerced {n_coerced} non-numeric commits values to 0" + ) + df["commits"] = numeric.fillna(0) + return df + + +def _dates_to_int(dates: pd.Series) -> pd.Series: + """Convert datetime64 dates to a 0-based integer day counter.""" + unique = pd.Series(sorted(dates.unique())) + mapping = {d: i for i, d in enumerate(unique)} + return dates.map(mapping).astype(int) + + +def build_long_panel( + agents_df: pd.DataFrame, + bots_df: pd.DataFrame, + intervention_date: pd.Timestamp, + treated_tools: Sequence[str], + bot_donors: Sequence[str] = tuple(DEFAULT_BOT_DONORS), +) -> pd.DataFrame: + """Build the long-format panel synthdid expects. + + Columns: unit (str), time (int day counter), Y (commits), treated (0/1). + + intervention_date is the first day of the post-intervention period + (inclusive). All dates in the panel with date >= intervention_date are + treated as post-period; treatment indicator = 1 for (unit in treated_tools) + AND (date >= intervention_date). This convention matches + intervention_bsts.py so both estimators assign the same rows to pre vs + post. + + Args: + agents_df: Long-format daily commits with columns ``date``, ``tool``, + ``commits``. + bots_df: Long-format donor commits with columns ``date``, ``donor``, + ``commits`` (typically from :func:`load_bot_donors`). + intervention_date: First post-period date (inclusive). + treated_tools: Tool names (``tool`` column values) to assign treatment. + bot_donors: Donor names to include as control units. + + Returns: + DataFrame with columns ``unit``, ``time``, ``Y``, ``treated``. + ``time`` is a 0-based integer day counter over the common date range + of agents and bots. + + Common failure modes: + - No common dates between agents and bots → empty panel. + - intervention_date before all panel dates → all rows treated (time + column starts at 0 >= intervention_time=0). + - intervention_date after all panel dates → intervention_time is None, + treated column is all zeros. + """ + a = agents_df[agents_df["tool"].isin(treated_tools)][ + ["date", "tool", "commits"] + ].rename(columns={"tool": "unit", "commits": "Y"}) + b = bots_df[bots_df["donor"].isin(bot_donors)][ + ["date", "donor", "commits"] + ].rename(columns={"donor": "unit", "commits": "Y"}) + long = pd.concat([a, b], ignore_index=True) + agent_dates = set(a["date"].unique()) + bot_dates = set(b["date"].unique()) + common = sorted(agent_dates & bot_dates) + long = long[long["date"].isin(common)].copy() + long["time"] = _dates_to_int(long["date"]) + # Find the integer time index for the first panel date >= intervention_date + iv_dates_at_or_after = [d for d in common if pd.Timestamp(d) >= intervention_date] + if iv_dates_at_or_after: + iv_date = min(iv_dates_at_or_after) + intervention_time = long.loc[long["date"] == iv_date, "time"].iloc[0] + else: + intervention_time = None + treated_units = set(treated_tools) + if intervention_time is None: + long["treated"] = 0 + else: + long["treated"] = ( + long["unit"].isin(treated_units) + & (long["time"] >= intervention_time) + ).astype(int) + return long[["unit", "time", "Y", "treated"]].reset_index(drop=True) + + +def fit_sdid(panel: pd.DataFrame, + outcome: str = "Y", + unit: str = "unit", + time: str = "time", + treatment: str = "treated") -> dict: + """Fit a Synthetic Difference-in-Differences model on a long panel. + + Wraps ``synthdid.sdid.sdid`` and returns a simplified result dict. + + Args: + panel: Long-format DataFrame with at least columns for ``unit`` + (str), ``time`` (int), ``outcome`` (numeric), and ``treatment`` + (0/1 int). Typically produced by :func:`build_long_panel`. + outcome: Name of the outcome column (default ``"Y"``). + unit: Name of the unit column (default ``"unit"``). + time: Name of the time column (default ``"time"``). + treatment: Name of the treatment indicator column (default + ``"treated"``). + + Returns: + Dict with keys: + - ``att`` (float): Average treatment effect on the treated. + - ``unit_weights`` (pd.Series): Donor-unit omega weights. + - ``time_weights`` (pd.Series): Pre-period lambda weights. + - ``n_treated_units`` (int): Number of treated units. + - ``n_control_units`` (int): Number of control units. + - ``raw`` (dict): Full synthdid output. + + Common failure modes: + - ``ValueError("empty panel")`` if ``panel`` is empty. + - synthdid raises if there are NaN values in Y or if the panel is + not balanced (each unit must appear at every time step). + - Mismatched unit/time column names → KeyError from synthdid. + """ + if panel.empty: + raise ValueError("empty panel") + treated_units = panel.loc[panel[treatment] == 1, unit].unique() + all_units = panel[unit].unique() + control_units = [u for u in all_units if u not in set(treated_units)] + + raw = sdid(panel, unit=unit, time=time, + treatment=treatment, outcome=outcome) + + att = float(raw["att"]) + # Use Y_units from the synthdid output to get the correct control unit order + n0 = int(raw["att_info"]["N0"].iloc[0]) + control_unit_labels = list(raw["Y_units"][0][:n0]) + omega = np.asarray(raw["weights"]["omega"][0]).flatten() + lam = np.asarray(raw["weights"]["lambda"][0]).flatten() + + unit_weights = pd.Series(omega, index=control_unit_labels, name="omega") + time_weights = pd.Series(lam, name="lambda") + + return { + "att": att, + "unit_weights": unit_weights, + "time_weights": time_weights, + "n_treated_units": len(treated_units), + "n_control_units": len(control_units), + "raw": raw, + } + + +def placebo_se(panel: pd.DataFrame, + n_placebos: int = 100, + rng_seed: int = 0, + outcome: str = "Y", + unit: str = "unit", + time: str = "time", + treatment: str = "treated") -> float: + """Estimate a placebo-based standard error for the SDID ATT. + + Randomly reassigns the treated set within the control-unit pool + ``n_placebos`` times, fitting SDID on each pseudo-treatment assignment, + then returns the standard deviation of the resulting placebo ATTs. + + Placebo units are assigned treatment at the same ``intervention_time`` as + the real treated units, preserving the treatment-date boundary. + Pseudo-treated units are drawn without replacement from the control pool + (real treated units are excluded). + + Args: + panel: Long-format panel from :func:`build_long_panel`. Must have + at least one treated unit and strictly more control units than + treated units. + n_placebos: Number of placebo iterations. Expensive for large panels; + 25–100 is practical. + rng_seed: Seed for reproducibility. + outcome, unit, time, treatment: Column name overrides (defaults match + :func:`build_long_panel` output). + + Returns: + Standard deviation of placebo ATTs (float). Returns ``nan`` if every + placebo iteration raises an exception (e.g. rank-deficient panel). + + Common failure modes: + - ``ValueError("not enough controls for placebo")`` when the control + pool is smaller than the treated set. + - ``nan`` return when the panel is near-degenerate (all-zero columns, + collinear donors). + """ + rng = np.random.default_rng(rng_seed) + treated_units = panel.loc[panel[treatment] == 1, unit].unique() + control_units = [u for u in panel[unit].unique() + if u not in set(treated_units)] + if len(control_units) < len(treated_units): + raise ValueError("not enough controls for placebo") + intervention_time = panel.loc[panel[treatment] == 1, time].min() + placebo_atts: list[float] = [] + for _ in range(n_placebos): + pseudo = rng.choice(control_units, size=len(treated_units), replace=False) + p = panel.copy() + p[treatment] = 0 + p.loc[p[unit].isin(pseudo) & (p[time] >= intervention_time), + treatment] = 1 + try: + r = sdid(p, unit=unit, time=time, + treatment=treatment, outcome=outcome) + placebo_atts.append(float(r["att"])) + except Exception: + continue + if not placebo_atts: + return float("nan") + return float(np.std(placebo_atts, ddof=1)) + + +def plot_sdid(result: dict, + panel: pd.DataFrame, + out_path: Path, + intervention_time: Optional[int] = None, + date_map: Optional[dict] = None) -> None: + """Plot treated mean vs synthetic counterfactual and save to file. + + Args: + result: Dict returned by :func:`fit_sdid`, must contain + ``unit_weights``, ``att``, ``n_treated_units``, + ``n_control_units``. + panel: Long-format panel from :func:`build_long_panel` (must contain + at least one treated unit). + out_path: Destination path for the PNG/SVG output (passed to + ``fig.savefig``). + intervention_time: Integer time index of the first post-period step. + If ``None``, inferred from the minimum treated time in ``panel``. + date_map: Optional ``{int_time: pd.Timestamp}`` mapping for x-axis + labels. Must cover **every** integer time value present in + ``panel``; a :exc:`ValueError` is raised if any keys are missing. + Pass ``None`` to use the integer time index directly. + + Returns: + None. Side-effect: writes a figure to ``out_path``. + + Common failure modes: + - ``ValueError("panel has no treated units")`` if no rows have + ``treated == 1``. + - ``ValueError("date_map missing entries …")`` if ``date_map`` does + not cover all time steps in the panel. + - ``KeyError`` from ``result["unit_weights"]`` if ``fit_sdid`` result + comes from a different panel than the one passed here. + """ + import matplotlib + matplotlib.use("Agg") + import matplotlib.pyplot as plt + + treated_units = panel.loc[panel["treated"] == 1, "unit"].unique() + if len(treated_units) == 0: + raise ValueError("panel has no treated units") + control_units = [u for u in panel["unit"].unique() + if u not in set(treated_units)] + wide = panel.pivot_table(index="time", columns="unit", values="Y", + aggfunc="sum") + treated_mean = wide[list(treated_units)].mean(axis=1) + omega = result["unit_weights"].reindex(control_units).fillna(0).values + synth = wide[control_units].values @ omega + synth = pd.Series(synth, index=wide.index) + + if intervention_time is None: + intervention_time = panel.loc[panel["treated"] == 1, "time"].min() + + fig, ax = plt.subplots(figsize=(11, 5)) + if date_map is not None: + missing = set(wide.index) - set(date_map.keys()) + if missing: + raise ValueError( + f"date_map missing entries for {len(missing)} times " + f"(e.g. {sorted(missing)[:3]}); provide a complete map or pass None" + ) + x = [date_map[t] for t in wide.index] if date_map else wide.index + ax.plot(x, treated_mean.values, label="treated mean", lw=1.5) + ax.plot(x, synth.values, label="synthetic counterfactual", + lw=1.5, linestyle="--") + ivx = date_map[intervention_time] if date_map else intervention_time + ax.axvline(ivx, color="red", alpha=0.5, label="intervention") + ax.set_title(f"SDID: ATT = {result['att']:.2f} " + f"(N_treated={result['n_treated_units']}, " + f"N_control={result['n_control_units']})") + ax.legend() + ax.grid(alpha=0.3) + fig.tight_layout() + fig.savefig(out_path, dpi=150, bbox_inches="tight") + plt.close(fig) diff --git a/intervention_sigmoids.py b/intervention_sigmoids.py new file mode 100644 index 0000000..f4a83e0 --- /dev/null +++ b/intervention_sigmoids.py @@ -0,0 +1,94 @@ +"""Descriptive 3-parameter logistic fits for per-tool cumulative-adoption +charts. Visual-only — no inferential claims are made from the fitted +parameters. (Per the earlier econometric review, sigmoid breaks in this +data are curve-fitting, not causal inference.)""" +from __future__ import annotations +from pathlib import Path + +import math + +import numpy as np +import pandas as pd +from scipy.optimize import curve_fit + + +def logistic(t: np.ndarray, K: float, r: float, t0: float) -> np.ndarray: + return K / (1.0 + np.exp(-r * (t - t0))) + + +def fit_sigmoid(t: np.ndarray, cum_y: np.ndarray) -> tuple[float, float, float]: + """Fit K, r, t0 to cumulative series. Returns the point estimate only; + no standard errors, no inference. + + Raises: + ValueError: if `t` or `cum_y` is empty, or if they have mismatched length. + RuntimeError: if scipy.optimize.curve_fit fails to converge. + """ + if len(t) == 0 or len(cum_y) == 0: + raise ValueError("fit_sigmoid requires non-empty input arrays") + if len(t) != len(cum_y): + raise ValueError( + f"length mismatch: len(t)={len(t)} != len(cum_y)={len(cum_y)}" + ) + K0 = max(float(cum_y.max()) * 1.1, 1.0) + r0 = 0.05 + t0_0 = float(t[len(t) // 2]) + t_max = float(t[-1]) + # Enforce strict bound ordering even when t_max==0 (single point at t=0). + t0_upper = max(t_max * 2.0, t_max + 1.0) + bounds = ([0, 1e-4, 0], [max(K0 * 10, 10), 2.0, t0_upper]) + popt, _ = curve_fit( + logistic, t, cum_y, p0=[K0, r0, t0_0], bounds=bounds, maxfev=20000 + ) + return float(popt[0]), float(popt[1]), float(popt[2]) + + +def plot_sigmoid_grid( + df: pd.DataFrame, + tools: list[str], + out_path: Path, + annotation_dates: list[pd.Timestamp] | None = None, +) -> None: + """Grid chart: cumulative commits per tool, with overlaid sigmoid fit. + Vertical lines mark the given annotation dates (e.g., Feb 24, Oct 20). + Visual only — no inference, no CIs.""" + import matplotlib + matplotlib.use("Agg") + import matplotlib.pyplot as plt + + n = len(tools) + cols = 3 + rows = max(1, math.ceil(n / cols)) + fig, axes = plt.subplots(rows, cols, figsize=(5 * cols, 3 * rows), + squeeze=False) + for i, tool in enumerate(tools): + ax = axes[i // cols][i % cols] + sub = df[df["tool"] == tool].sort_values("date") + sub = sub[sub["commits"].notna()] + if sub.empty: + ax.set_visible(False) + continue + cum = sub["commits"].cumsum().values + t = np.arange(len(cum), dtype=float) + ax.scatter(sub["date"], cum, s=3, alpha=0.5, label="actual") + try: + K, r, t0 = fit_sigmoid(t, cum) + ax.plot(sub["date"], logistic(t, K, r, t0), + color="red", lw=1.5, label="sigmoid fit") + except Exception as exc: + ax.text(0.5, 0.5, f"fit failed\n{exc}", + transform=ax.transAxes, ha="center", fontsize=7) + if annotation_dates: + for ad in annotation_dates: + ax.axvline(ad, color="gray", alpha=0.3, linestyle="--") + ax.set_title(tool, fontsize=9) + ax.grid(alpha=0.2) + ax.tick_params(axis="x", labelrotation=30, labelsize=7) + ax.tick_params(axis="y", labelsize=7) + for j in range(n, rows * cols): + axes[j // cols][j % cols].set_visible(False) + fig.suptitle("Cumulative commits with 3-parameter logistic fit " + "(descriptive only)") + fig.tight_layout() + fig.savefig(out_path, dpi=150, bbox_inches="tight") + plt.close(fig) diff --git a/intervention_var.py b/intervention_var.py new file mode 100644 index 0000000..316aeff --- /dev/null +++ b/intervention_var.py @@ -0,0 +1,118 @@ +"""Compositional VAR on ALR-transformed agent shares. + +Appendix analysis for the intervention memo: fits a low-order VAR on the +additive-log-ratio transform of tool shares, then extracts impulse-response +functions to visualize cross-substitution patterns (e.g., a shock to +Claude Code's share pulls weight from Cursor, not from Devin). + +The ALR transform `log(s_i / s_ref)` for all i != ref renders the +compositional constraint (shares sum to 1) into unconstrained real +vectors that VARs can consume. The inverse softmax maps back. +""" +from __future__ import annotations +from pathlib import Path + +import numpy as np +import pandas as pd +from statsmodels.tsa.api import VAR + + +_EPS = 1e-6 + + +def compute_shares(df: pd.DataFrame, tools: list[str]) -> pd.DataFrame: + """Daily share of each named tool in the subset total. + + Returns a wide DataFrame indexed by date, columns = tools, rows summing + to 1. Floors negative/zero totals into a uniform distribution to avoid + NaN rows on all-zero days. Clips to [_EPS, 1] so log-ratio transforms + never see a zero. + """ + piv = df[df["tool"].isin(tools)].pivot_table( + index="date", columns="tool", values="commits", aggfunc="sum" + ).fillna(0).reindex(columns=tools, fill_value=0) + totals = piv.sum(axis=1) + # Uniform fallback for zero-total days + zero_days = totals <= 0 + shares = piv.div(totals.where(~zero_days), axis=0) + shares.loc[zero_days] = 1.0 / len(tools) + # Floor to avoid log(0) and renormalize + shares = shares.clip(lower=_EPS) + shares = shares.div(shares.sum(axis=1), axis=0) + return shares + + +def alr_transform(shares: pd.DataFrame, reference: str) -> pd.DataFrame: + """Additive log-ratio: log(s_i / s_ref) for all i != reference.""" + if reference not in shares.columns: + raise ValueError(f"reference {reference!r} not in shares columns") + ref = shares[reference] + cols = [c for c in shares.columns if c != reference] + return pd.DataFrame( + np.log(shares[cols].div(ref, axis=0)), + index=shares.index, + columns=cols, + ) + + +def alr_inverse(alr: pd.DataFrame, reference: str) -> pd.DataFrame: + """Invert ALR back to compositional shares. The reference column is + added back with value 1 prior to softmax renormalization.""" + exp = np.exp(alr) + exp = exp.copy() + exp[reference] = 1.0 + denom = exp.sum(axis=1) + return exp.div(denom, axis=0) + + +def fit_var(alr_data: pd.DataFrame, lag_order: int | None = None): + """Fit a VAR on ALR-transformed shares. If `lag_order` is None, uses + AIC-selected order (max 14). Returns the fitted statsmodels results + object.""" + model = VAR(alr_data.values) + if lag_order is None: + try: + lag_order = model.select_order(maxlags=14).aic + except Exception: + lag_order = 2 + lag_order = max(1, int(lag_order or 1)) + return model.fit(lag_order) + + +def impulse_response(var_result, n_steps: int = 30) -> np.ndarray: + """Return the cumulative-IRF array of shape (n_steps+1, n_vars, n_vars). + `irfs[t, i, j]` is the response of variable j to a shock in variable i, + t periods out.""" + irf = var_result.irf(n_steps) + return irf.irfs + + +def plot_irf_grid(irf: np.ndarray, + var_names: list[str], + out_path: Path, + title: str | None = None) -> None: + """k x k grid of IRF panels. Row i = shock source; column j = responder.""" + import matplotlib + matplotlib.use("Agg") + import matplotlib.pyplot as plt + + k = irf.shape[1] + fig, axes = plt.subplots(k, k, figsize=(2.5 * k, 1.8 * k), sharex=True) + if k == 1: + axes = np.array([[axes]]) + for i in range(k): + for j in range(k): + ax = axes[i, j] + ax.plot(irf[:, i, j], lw=1.2) + ax.axhline(0, color="gray", alpha=0.3, lw=0.8) + if i == 0: + ax.set_title(f"-> {var_names[j]}", fontsize=8) + if j == 0: + ax.set_ylabel(f"{var_names[i]} shock", fontsize=8) + ax.tick_params(axis="both", labelsize=7) + ax.grid(alpha=0.2) + fig.suptitle(title or "Compositional VAR impulse responses " + "(ALR-transformed shares)") + fig.tight_layout() + fig.savefig(out_path, dpi=150, bbox_inches="tight") + plt.close(fig) diff --git a/push_events_daily.csv b/push_events_daily.csv new file mode 100644 index 0000000..0a9b297 --- /dev/null +++ b/push_events_daily.csv @@ -0,0 +1,406 @@ +date,weekday,push_events,fetched_at +2026-01-01,Thu,2343004,2026-03-31T17:02:03.769096+00:00 +2026-03-01,Sun,2449506,2026-03-31T17:02:08.433029+00:00 +2026-03-02,Mon,2494025,2026-03-31T17:02:08.433086+00:00 +2026-03-03,Tue,2533190,2026-03-31T17:02:08.433109+00:00 +2026-03-04,Wed,2542742,2026-03-31T17:02:08.433127+00:00 +2026-03-05,Thu,2589428,2026-03-31T17:02:08.433155+00:00 +2026-03-06,Fri,2615996,2026-03-31T17:02:08.433175+00:00 +2026-03-07,Sat,2581738,2026-03-31T17:02:08.433191+00:00 +2026-03-08,Sun,2644366,2026-03-31T17:02:08.433206+00:00 +2026-03-09,Mon,2692940,2026-03-31T17:02:08.433220+00:00 +2026-03-10,Tue,2738461,2026-03-31T17:02:08.433234+00:00 +2026-03-11,Wed,2719888,2026-03-31T17:02:08.433249+00:00 +2026-03-12,Thu,2649471,2026-03-31T17:02:08.433263+00:00 +2026-03-13,Fri,2720327,2026-03-31T17:02:08.433277+00:00 +2026-03-14,Sat,2607790,2026-03-31T17:02:08.433291+00:00 +2026-03-15,Sun,2693337,2026-03-31T17:02:08.433305+00:00 +2026-03-16,Mon,2768369,2026-03-31T17:02:08.433320+00:00 +2026-03-17,Tue,2737067,2026-03-31T17:02:08.433333+00:00 +2026-03-18,Wed,2771850,2026-03-31T17:02:08.433347+00:00 +2026-03-19,Thu,2790317,2026-03-31T17:02:08.433360+00:00 +2026-03-20,Fri,2728999,2026-03-31T17:02:08.433374+00:00 +2026-03-21,Sat,2726882,2026-03-31T17:02:08.433387+00:00 +2026-03-22,Sun,2730624,2026-03-31T17:02:08.433400+00:00 +2026-03-23,Mon,2830132,2026-03-31T17:02:08.433413+00:00 +2026-03-24,Tue,2885404,2026-03-31T17:02:08.433426+00:00 +2026-03-25,Wed,2894545,2026-03-31T17:02:08.433440+00:00 +2026-03-26,Thu,2887649,2026-03-31T17:02:08.433453+00:00 +2026-03-27,Fri,2816145,2026-03-31T17:02:08.433468+00:00 +2026-03-28,Sat,2675174,2026-03-31T17:02:08.433481+00:00 +2026-03-29,Sun,2737694,2026-03-31T17:02:08.433494+00:00 +2026-03-30,Mon,2850221,2026-03-31T17:02:08.433507+00:00 +2026-03-31,Tue,1905802,2026-03-31T17:02:08.433521+00:00 +2025-04-01,Tue,3576967,2026-04-10T04:58:49.276664+00:00 +2025-04-02,Wed,3602651,2026-04-10T04:58:49.276707+00:00 +2025-04-03,Thu,3641102,2026-04-10T04:58:49.276725+00:00 +2025-04-04,Fri,3480220,2026-04-10T04:58:49.276738+00:00 +2025-04-05,Sat,3340629,2026-04-10T04:58:49.276750+00:00 +2025-04-06,Sun,3368808,2026-04-10T04:58:49.276762+00:00 +2025-04-07,Mon,3507166,2026-04-10T04:58:49.276773+00:00 +2025-04-08,Tue,3657629,2026-04-10T04:58:49.276784+00:00 +2025-04-09,Wed,3621081,2026-04-10T04:58:49.276795+00:00 +2025-04-10,Thu,4369090,2026-04-10T04:58:49.276808+00:00 +2025-04-11,Fri,3485614,2026-04-10T04:58:49.276822+00:00 +2025-04-12,Sat,3136744,2026-04-10T04:58:49.276835+00:00 +2025-04-13,Sun,3134499,2026-04-10T04:58:49.276846+00:00 +2025-04-14,Mon,3413366,2026-04-10T04:58:49.276857+00:00 +2025-04-15,Tue,3507316,2026-04-10T04:58:49.276868+00:00 +2025-04-16,Wed,3382416,2026-04-10T04:58:49.276879+00:00 +2025-04-17,Thu,3422147,2026-04-10T04:58:49.276890+00:00 +2025-04-18,Fri,3442091,2026-04-10T04:58:49.276900+00:00 +2025-04-19,Sat,3266342,2026-04-10T04:58:49.276911+00:00 +2025-04-20,Sun,3253296,2026-04-10T04:58:49.276922+00:00 +2025-04-21,Mon,3469377,2026-04-10T04:58:49.276933+00:00 +2025-04-22,Tue,3609222,2026-04-10T04:58:49.276952+00:00 +2025-04-23,Wed,3585899,2026-04-10T04:58:49.276963+00:00 +2025-04-24,Thu,3572855,2026-04-10T04:58:49.276979+00:00 +2025-04-25,Fri,3505501,2026-04-10T04:58:49.276989+00:00 +2025-04-26,Sat,3245008,2026-04-10T04:58:49.276999+00:00 +2025-04-27,Sun,3294587,2026-04-10T04:58:49.277009+00:00 +2025-04-28,Mon,3420092,2026-04-10T04:58:49.277019+00:00 +2025-04-29,Tue,3550050,2026-04-10T04:58:49.277029+00:00 +2025-04-30,Wed,3521965,2026-04-10T04:58:49.277038+00:00 +2025-05-01,Thu,3406330,2026-04-10T04:58:49.277048+00:00 +2025-05-02,Fri,3329927,2026-04-10T04:58:49.277058+00:00 +2025-05-03,Sat,3155592,2026-04-10T04:58:49.277067+00:00 +2025-05-04,Sun,3176143,2026-04-10T04:58:49.277077+00:00 +2025-05-05,Mon,3476917,2026-04-10T04:58:49.277087+00:00 +2025-05-06,Tue,3553266,2026-04-10T04:58:49.277097+00:00 +2025-05-07,Wed,3518919,2026-04-10T04:58:49.277107+00:00 +2025-05-08,Thu,3504049,2026-04-10T04:58:49.277117+00:00 +2025-05-09,Fri,3494904,2026-04-10T04:58:49.277127+00:00 +2025-05-10,Sat,3254798,2026-04-10T04:58:49.277138+00:00 +2025-05-11,Sun,3257119,2026-04-10T04:58:49.277148+00:00 +2025-05-12,Mon,3485931,2026-04-10T04:58:49.277159+00:00 +2025-05-13,Tue,3520942,2026-04-10T04:58:49.277169+00:00 +2025-05-14,Wed,3542557,2026-04-10T04:58:49.277178+00:00 +2025-05-15,Thu,3424983,2026-04-10T04:58:49.277187+00:00 +2025-05-16,Fri,3380319,2026-04-10T04:58:49.277197+00:00 +2025-05-17,Sat,3167911,2026-04-10T04:58:49.277206+00:00 +2025-05-18,Sun,3261994,2026-04-10T04:58:49.277215+00:00 +2025-05-19,Mon,3509051,2026-04-10T04:58:49.277225+00:00 +2025-05-20,Tue,3531790,2026-04-10T04:58:49.277235+00:00 +2025-05-21,Wed,3560796,2026-04-10T04:58:49.277244+00:00 +2025-05-22,Thu,3432426,2026-04-10T04:58:49.277254+00:00 +2025-05-23,Fri,3146147,2026-04-10T04:58:49.277264+00:00 +2025-05-24,Sat,2330918,2026-04-10T04:58:49.277274+00:00 +2025-05-25,Sun,2342183,2026-04-10T04:58:49.277285+00:00 +2025-05-26,Mon,2133560,2026-04-10T04:58:49.277296+00:00 +2025-05-27,Tue,2234099,2026-04-10T04:58:49.277307+00:00 +2025-05-28,Wed,2097345,2026-04-10T04:58:49.277317+00:00 +2025-05-29,Thu,2185736,2026-04-10T04:58:49.277327+00:00 +2025-05-30,Fri,2281891,2026-04-10T04:58:49.277337+00:00 +2025-05-31,Sat,2295437,2026-04-10T04:58:49.277352+00:00 +2025-06-01,Sun,2289507,2026-04-10T04:58:49.277363+00:00 +2025-06-02,Mon,2186417,2026-04-10T04:58:49.277374+00:00 +2025-06-03,Tue,2134547,2026-04-10T04:58:49.277390+00:00 +2025-06-04,Wed,2145709,2026-04-10T04:58:49.277403+00:00 +2025-06-05,Thu,2111590,2026-04-10T04:58:49.277414+00:00 +2025-06-06,Fri,2147762,2026-04-10T04:58:49.277434+00:00 +2025-06-07,Sat,2215401,2026-04-10T04:58:49.277444+00:00 +2025-06-08,Sun,2260768,2026-04-10T04:58:49.277454+00:00 +2025-06-09,Mon,2193408,2026-04-10T04:58:49.277464+00:00 +2025-06-10,Tue,2214354,2026-04-10T04:58:49.277475+00:00 +2025-06-11,Wed,2262573,2026-04-10T04:58:49.277485+00:00 +2025-06-12,Thu,1992059,2026-04-10T04:58:49.277495+00:00 +2025-06-13,Fri,2286908,2026-04-10T04:58:49.277516+00:00 +2025-06-14,Sat,2315848,2026-04-10T04:58:49.277527+00:00 +2025-06-15,Sun,2346165,2026-04-10T04:58:49.277536+00:00 +2025-06-16,Mon,2199351,2026-04-10T04:58:49.277547+00:00 +2025-06-17,Tue,2250459,2026-04-10T04:58:49.277560+00:00 +2025-06-18,Wed,2245249,2026-04-10T04:58:49.277570+00:00 +2025-06-19,Thu,2294266,2026-04-10T04:58:49.277581+00:00 +2025-06-20,Fri,2291842,2026-04-10T04:58:49.277591+00:00 +2025-06-21,Sat,2280648,2026-04-10T04:58:49.277602+00:00 +2025-06-22,Sun,2321799,2026-04-10T04:58:49.277612+00:00 +2025-06-23,Mon,2223541,2026-04-10T04:58:49.277622+00:00 +2025-06-24,Tue,2137439,2026-04-10T04:58:49.277632+00:00 +2025-06-25,Wed,2239032,2026-04-10T04:58:49.277643+00:00 +2025-06-26,Thu,2275842,2026-04-10T04:58:49.277653+00:00 +2025-06-27,Fri,2271763,2026-04-10T04:58:49.277664+00:00 +2025-06-28,Sat,2284470,2026-04-10T04:58:49.277674+00:00 +2025-06-29,Sun,2316691,2026-04-10T04:58:49.277683+00:00 +2025-06-30,Mon,2184692,2026-04-10T04:58:49.277694+00:00 +2025-07-01,Tue,2199295,2026-04-10T04:58:49.277705+00:00 +2025-07-02,Wed,2274743,2026-04-10T04:58:49.277716+00:00 +2025-07-03,Thu,2294306,2026-04-10T04:58:49.277727+00:00 +2025-07-04,Fri,2316418,2026-04-10T04:58:49.277738+00:00 +2025-07-05,Sat,2328546,2026-04-10T04:58:49.277749+00:00 +2025-07-06,Sun,2376524,2026-04-10T04:58:49.277759+00:00 +2025-07-07,Mon,2273402,2026-04-10T04:58:49.277770+00:00 +2025-07-08,Tue,2305888,2026-04-10T04:58:49.277779+00:00 +2025-07-09,Wed,2324934,2026-04-10T04:58:49.277789+00:00 +2025-07-10,Thu,2300961,2026-04-10T04:58:49.277799+00:00 +2025-07-11,Fri,2327066,2026-04-10T04:58:49.277809+00:00 +2025-07-12,Sat,2368678,2026-04-10T04:58:49.277819+00:00 +2025-07-13,Sun,2413422,2026-04-10T04:58:49.277829+00:00 +2025-07-14,Mon,2269401,2026-04-10T04:58:49.277838+00:00 +2025-07-15,Tue,2301065,2026-04-10T04:58:49.277849+00:00 +2025-07-16,Wed,2316532,2026-04-10T04:58:49.277859+00:00 +2025-07-17,Thu,2258268,2026-04-10T04:58:49.277869+00:00 +2025-07-18,Fri,2274510,2026-04-10T04:58:49.277878+00:00 +2025-07-19,Sat,2378178,2026-04-10T04:58:49.277889+00:00 +2025-07-20,Sun,2277234,2026-04-10T04:58:49.277899+00:00 +2025-07-21,Mon,2218074,2026-04-10T04:58:49.277908+00:00 +2025-07-22,Tue,2266276,2026-04-10T04:58:49.277918+00:00 +2025-07-23,Wed,2334174,2026-04-10T04:58:49.277927+00:00 +2025-07-24,Thu,2301141,2026-04-10T04:58:49.277937+00:00 +2025-07-25,Fri,2344937,2026-04-10T04:58:49.277947+00:00 +2025-07-26,Sat,2384848,2026-04-10T04:58:49.277957+00:00 +2025-07-27,Sun,2442086,2026-04-10T04:58:49.277966+00:00 +2025-07-28,Mon,2309744,2026-04-10T04:58:49.277977+00:00 +2025-07-29,Tue,2268977,2026-04-10T04:58:49.277989+00:00 +2025-07-30,Wed,2316174,2026-04-10T04:58:49.277998+00:00 +2025-07-31,Thu,2289959,2026-04-10T04:58:49.278014+00:00 +2025-08-01,Fri,2234699,2026-04-10T04:58:49.278023+00:00 +2025-08-02,Sat,2339973,2026-04-10T04:58:49.278033+00:00 +2025-08-03,Sun,2336249,2026-04-10T04:58:49.278049+00:00 +2025-08-04,Mon,2030332,2026-04-10T04:58:49.278069+00:00 +2025-08-05,Tue,2227994,2026-04-10T04:58:49.278087+00:00 +2025-08-06,Wed,2241328,2026-04-10T04:58:49.278111+00:00 +2025-08-07,Thu,2248253,2026-04-10T04:58:49.278129+00:00 +2025-08-08,Fri,2256464,2026-04-10T04:58:49.278149+00:00 +2025-08-09,Sat,2351650,2026-04-10T04:58:49.278167+00:00 +2025-08-10,Sun,2398817,2026-04-10T04:58:49.278184+00:00 +2025-08-11,Mon,2196107,2026-04-10T04:58:49.278204+00:00 +2025-08-12,Tue,2235714,2026-04-10T04:58:49.278222+00:00 +2025-08-13,Wed,2301746,2026-04-10T04:58:49.278241+00:00 +2025-08-14,Thu,2248588,2026-04-10T04:58:49.278259+00:00 +2025-08-15,Fri,2347114,2026-04-10T04:58:49.278277+00:00 +2025-08-16,Sat,2419621,2026-04-10T04:58:49.278294+00:00 +2025-08-17,Sun,2411038,2026-04-10T04:58:49.278313+00:00 +2025-08-18,Mon,2250460,2026-04-10T04:58:49.278330+00:00 +2025-08-19,Tue,2315838,2026-04-10T04:58:49.278349+00:00 +2025-08-20,Wed,2352713,2026-04-10T04:58:49.278368+00:00 +2025-08-21,Thu,2262102,2026-04-10T04:58:49.278387+00:00 +2025-08-22,Fri,2310068,2026-04-10T04:58:49.278406+00:00 +2025-08-23,Sat,2549355,2026-04-10T04:58:49.278430+00:00 +2025-08-24,Sun,2618280,2026-04-10T04:58:49.278453+00:00 +2025-08-25,Mon,2252409,2026-04-10T04:58:49.278471+00:00 +2025-08-26,Tue,2240352,2026-04-10T04:58:49.278490+00:00 +2025-08-27,Wed,2300436,2026-04-10T04:58:49.278508+00:00 +2025-08-28,Thu,2325577,2026-04-10T04:58:49.278526+00:00 +2025-08-29,Fri,2381187,2026-04-10T04:58:49.278544+00:00 +2025-08-30,Sat,2411382,2026-04-10T04:58:49.278562+00:00 +2025-08-31,Sun,2406206,2026-04-10T04:58:49.278580+00:00 +2025-09-01,Mon,2232120,2026-04-10T04:58:49.278598+00:00 +2025-09-02,Tue,2221260,2026-04-10T04:58:49.278616+00:00 +2025-09-03,Wed,2311533,2026-04-10T04:58:49.278635+00:00 +2025-09-04,Thu,2410907,2026-04-10T04:58:49.278653+00:00 +2025-09-05,Fri,2548560,2026-04-10T04:58:49.278671+00:00 +2025-09-06,Sat,2441248,2026-04-10T04:58:49.278690+00:00 +2025-09-07,Sun,2339435,2026-04-10T04:58:49.278708+00:00 +2025-09-08,Mon,1505234,2026-04-10T04:58:49.278726+00:00 +2025-09-09,Tue,2335775,2026-04-10T04:58:49.278745+00:00 +2025-09-10,Wed,2274514,2026-04-10T04:58:49.278769+00:00 +2025-09-11,Thu,2285694,2026-04-10T04:58:49.278788+00:00 +2025-09-12,Fri,2379756,2026-04-10T04:58:49.278806+00:00 +2025-09-13,Sat,2465761,2026-04-10T04:58:49.278826+00:00 +2025-09-14,Sun,2513190,2026-04-10T04:58:49.278845+00:00 +2025-09-15,Mon,2528857,2026-04-10T04:58:49.278864+00:00 +2025-09-16,Tue,2405683,2026-04-10T04:58:49.278883+00:00 +2025-09-17,Wed,2174526,2026-04-10T04:58:49.278901+00:00 +2025-09-18,Thu,2349292,2026-04-10T04:58:49.278919+00:00 +2025-09-19,Fri,2418946,2026-04-10T04:58:49.278937+00:00 +2025-09-20,Sat,2494483,2026-04-10T04:58:49.278956+00:00 +2025-09-21,Sun,2539155,2026-04-10T04:58:49.278975+00:00 +2025-09-22,Mon,2304381,2026-04-10T04:58:49.278994+00:00 +2025-09-23,Tue,2422334,2026-04-10T04:58:49.279013+00:00 +2025-09-24,Wed,2392363,2026-04-10T04:58:49.279032+00:00 +2025-09-25,Thu,2344896,2026-04-10T04:58:49.279050+00:00 +2025-09-26,Fri,2460488,2026-04-10T04:58:49.279068+00:00 +2025-09-27,Sat,2509376,2026-04-10T04:58:49.279086+00:00 +2025-09-28,Sun,2719464,2026-04-10T04:58:49.279105+00:00 +2025-09-29,Mon,2590229,2026-04-10T04:58:49.279123+00:00 +2025-09-30,Tue,2558661,2026-04-10T04:58:49.279142+00:00 +2025-10-01,Wed,2530360,2026-04-10T04:58:49.279161+00:00 +2025-10-02,Thu,2514997,2026-04-10T04:58:49.279180+00:00 +2025-10-03,Fri,2443352,2026-04-10T04:58:49.279198+00:00 +2025-10-04,Sat,2547201,2026-04-10T04:58:49.279216+00:00 +2025-10-05,Sun,2580683,2026-04-10T04:58:49.279235+00:00 +2025-10-06,Mon,2344871,2026-04-10T04:58:49.279253+00:00 +2025-10-07,Tue,2419545,2026-04-10T04:58:49.279271+00:00 +2025-10-08,Wed,,2026-04-10T04:58:49.279288+00:00 +2025-10-09,Thu,,2026-04-10T04:58:49.279306+00:00 +2025-10-10,Fri,,2026-04-10T04:58:49.279325+00:00 +2025-10-11,Sat,,2026-04-10T04:58:49.279342+00:00 +2025-10-12,Sun,,2026-04-10T04:58:49.279368+00:00 +2025-10-13,Mon,,2026-04-10T04:58:49.279388+00:00 +2025-10-14,Tue,,2026-04-10T04:58:49.279406+00:00 +2025-10-15,Wed,2356011,2026-04-10T04:58:49.279425+00:00 +2025-10-16,Thu,2392680,2026-04-10T04:58:49.279445+00:00 +2025-10-17,Fri,2394134,2026-04-10T04:58:49.279464+00:00 +2025-10-18,Sat,2598041,2026-04-10T04:58:49.279482+00:00 +2025-10-19,Sun,2649911,2026-04-10T04:58:49.279500+00:00 +2025-10-20,Mon,2139432,2026-04-10T04:58:49.279518+00:00 +2025-10-21,Tue,2347783,2026-04-10T04:58:49.279537+00:00 +2025-10-22,Wed,2307019,2026-04-10T04:58:49.279555+00:00 +2025-10-23,Thu,2373734,2026-04-10T04:58:49.279574+00:00 +2025-10-24,Fri,2424017,2026-04-10T04:58:49.279594+00:00 +2025-10-25,Sat,2556898,2026-04-10T04:58:49.279612+00:00 +2025-10-26,Sun,2575423,2026-04-10T04:58:49.279641+00:00 +2025-10-27,Mon,2728676,2026-04-10T04:58:49.279661+00:00 +2025-10-28,Tue,2730372,2026-04-10T04:58:49.279679+00:00 +2025-10-29,Wed,2428299,2026-04-10T04:58:49.279696+00:00 +2025-10-30,Thu,2397215,2026-04-10T04:58:49.279714+00:00 +2025-10-31,Fri,2367833,2026-04-10T04:58:49.279731+00:00 +2025-11-01,Sat,2451497,2026-04-10T04:58:49.279750+00:00 +2025-11-02,Sun,2575547,2026-04-10T04:58:49.279774+00:00 +2025-11-03,Mon,2320545,2026-04-10T04:58:49.279792+00:00 +2025-11-04,Tue,2406766,2026-04-10T04:58:49.279811+00:00 +2025-11-05,Wed,2379970,2026-04-10T04:58:49.279829+00:00 +2025-11-06,Thu,2370473,2026-04-10T04:58:49.279846+00:00 +2025-11-07,Fri,2415068,2026-04-10T04:58:49.279865+00:00 +2025-11-08,Sat,2583106,2026-04-10T04:58:49.279883+00:00 +2025-11-09,Sun,2607343,2026-04-10T04:58:49.279901+00:00 +2025-11-10,Mon,2429708,2026-04-10T04:58:49.279919+00:00 +2025-11-11,Tue,2786842,2026-04-10T04:58:49.279938+00:00 +2025-11-12,Wed,2440240,2026-04-10T04:58:49.279956+00:00 +2025-11-13,Thu,2378824,2026-04-10T04:58:49.279976+00:00 +2025-11-14,Fri,2370502,2026-04-10T04:58:49.279995+00:00 +2025-11-15,Sat,2516887,2026-04-10T04:58:49.280013+00:00 +2025-11-16,Sun,2505359,2026-04-10T04:58:49.280032+00:00 +2025-11-17,Mon,2363143,2026-04-10T04:58:49.280052+00:00 +2025-11-18,Tue,2350666,2026-04-10T04:58:49.280071+00:00 +2025-11-19,Wed,2881649,2026-04-10T04:58:49.280089+00:00 +2025-11-20,Thu,2552562,2026-04-10T04:58:49.280108+00:00 +2025-11-21,Fri,2407160,2026-04-10T04:58:49.280126+00:00 +2025-11-22,Sat,2590142,2026-04-10T04:58:49.280145+00:00 +2025-11-23,Sun,2628205,2026-04-10T04:58:49.280163+00:00 +2025-11-24,Mon,2413205,2026-04-10T04:58:49.280181+00:00 +2025-11-25,Tue,2500394,2026-04-10T04:58:49.280200+00:00 +2025-11-26,Wed,2532282,2026-04-10T04:58:49.280220+00:00 +2025-11-27,Thu,2451695,2026-04-10T04:58:49.280237+00:00 +2025-11-28,Fri,2540660,2026-04-10T04:58:49.280254+00:00 +2025-11-29,Sat,2644368,2026-04-10T04:58:49.280272+00:00 +2025-11-30,Sun,2674616,2026-04-10T04:58:49.280291+00:00 +2025-12-01,Mon,2289171,2026-04-10T04:58:49.280310+00:00 +2025-12-02,Tue,2430687,2026-04-10T04:58:49.280330+00:00 +2025-12-03,Wed,2447228,2026-04-10T04:58:49.280356+00:00 +2025-12-04,Thu,2364075,2026-04-10T04:58:49.280376+00:00 +2025-12-05,Fri,2416896,2026-04-10T04:58:49.280395+00:00 +2025-12-06,Sat,2521490,2026-04-10T04:58:49.280413+00:00 +2025-12-07,Sun,2544488,2026-04-10T04:58:49.280430+00:00 +2025-12-08,Mon,2375044,2026-04-10T04:58:49.280447+00:00 +2025-12-09,Tue,2424468,2026-04-10T04:58:49.280464+00:00 +2025-12-10,Wed,2392973,2026-04-10T04:58:49.280482+00:00 +2025-12-11,Thu,2357391,2026-04-10T04:58:49.280510+00:00 +2025-12-12,Fri,2348482,2026-04-10T04:58:49.280528+00:00 +2025-12-13,Sat,2552935,2026-04-10T04:58:49.280545+00:00 +2025-12-14,Sun,2557078,2026-04-10T04:58:49.280562+00:00 +2025-12-15,Mon,2332628,2026-04-10T04:58:49.280579+00:00 +2025-12-16,Tue,2383840,2026-04-10T04:58:49.280597+00:00 +2025-12-17,Wed,2380726,2026-04-10T04:58:49.280614+00:00 +2025-12-18,Thu,2407443,2026-04-10T04:58:49.280631+00:00 +2025-12-19,Fri,2376530,2026-04-10T04:58:49.280649+00:00 +2025-12-20,Sat,2538387,2026-04-10T04:58:49.280665+00:00 +2025-12-21,Sun,2589682,2026-04-10T04:58:49.280683+00:00 +2025-12-22,Mon,2319163,2026-04-10T04:58:49.280701+00:00 +2025-12-23,Tue,2450570,2026-04-10T04:58:49.280718+00:00 +2025-12-24,Wed,2503135,2026-04-10T04:58:49.280737+00:00 +2025-12-25,Thu,2516668,2026-04-10T04:58:49.280754+00:00 +2025-12-26,Fri,2544900,2026-04-10T04:58:49.280773+00:00 +2025-12-27,Sat,2571814,2026-04-10T04:58:49.280791+00:00 +2025-12-28,Sun,2512510,2026-04-10T04:58:49.280808+00:00 +2025-12-29,Mon,2375623,2026-04-10T04:58:49.280828+00:00 +2025-12-30,Tue,2444965,2026-04-10T04:58:49.280848+00:00 +2025-12-31,Wed,2354437,2026-04-10T04:58:49.280866+00:00 +2026-01-02,Fri,2506691,2026-04-10T04:58:49.280884+00:00 +2026-01-03,Sat,2584842,2026-04-10T04:58:49.280902+00:00 +2026-01-04,Sun,2565500,2026-04-10T04:58:49.280920+00:00 +2026-01-05,Mon,2391778,2026-04-10T04:58:49.280937+00:00 +2026-01-06,Tue,2408800,2026-04-10T04:58:49.280955+00:00 +2026-01-07,Wed,2394328,2026-04-10T04:58:49.280975+00:00 +2026-01-08,Thu,2362726,2026-04-10T04:58:49.280992+00:00 +2026-01-09,Fri,2388484,2026-04-10T04:58:49.281010+00:00 +2026-01-10,Sat,2544014,2026-04-10T04:58:49.281028+00:00 +2026-01-11,Sun,2571956,2026-04-10T04:58:49.281038+00:00 +2026-01-12,Mon,2329870,2026-04-10T04:58:49.281048+00:00 +2026-01-13,Tue,2347087,2026-04-10T04:58:49.281058+00:00 +2026-01-14,Wed,2359510,2026-04-10T04:58:49.281067+00:00 +2026-01-15,Thu,2262494,2026-04-10T04:58:49.281076+00:00 +2026-01-16,Fri,2437843,2026-04-10T04:58:49.281094+00:00 +2026-01-17,Sat,2459337,2026-04-10T04:58:49.281105+00:00 +2026-01-18,Sun,2567533,2026-04-10T04:58:49.281116+00:00 +2026-01-19,Mon,2393194,2026-04-10T04:58:49.281128+00:00 +2026-01-20,Tue,2360532,2026-04-10T04:58:49.281138+00:00 +2026-01-21,Wed,2306200,2026-04-10T04:58:49.281149+00:00 +2026-01-22,Thu,2307757,2026-04-10T04:58:49.281158+00:00 +2026-01-23,Fri,2346802,2026-04-10T04:58:49.281168+00:00 +2026-01-24,Sat,2344523,2026-04-10T04:58:49.281178+00:00 +2026-01-25,Sun,2465445,2026-04-10T04:58:49.281187+00:00 +2026-01-26,Mon,2301172,2026-04-10T04:58:49.281197+00:00 +2026-01-27,Tue,2380711,2026-04-10T04:58:49.281206+00:00 +2026-01-28,Wed,2419517,2026-04-10T04:58:49.281217+00:00 +2026-01-29,Thu,2373032,2026-04-10T04:58:49.281226+00:00 +2026-01-30,Fri,2348009,2026-04-10T04:58:49.281235+00:00 +2026-01-31,Sat,2479997,2026-04-10T04:58:49.281245+00:00 +2026-02-01,Sun,2459620,2026-04-10T04:58:49.281254+00:00 +2026-02-02,Mon,2389928,2026-04-10T04:58:49.281264+00:00 +2026-02-03,Tue,2392684,2026-04-10T04:58:49.281273+00:00 +2026-02-04,Wed,2320870,2026-04-10T04:58:49.281282+00:00 +2026-02-05,Thu,2181797,2026-04-10T04:58:49.281292+00:00 +2026-02-06,Fri,2319650,2026-04-10T04:58:49.281301+00:00 +2026-02-07,Sat,2401778,2026-04-10T04:58:49.281311+00:00 +2026-02-08,Sun,2484691,2026-04-10T04:58:49.281320+00:00 +2026-02-09,Mon,2141961,2026-04-10T04:58:49.281329+00:00 +2026-02-10,Tue,2022777,2026-04-10T04:58:49.281338+00:00 +2026-02-11,Wed,2210582,2026-04-10T04:58:49.281348+00:00 +2026-02-12,Thu,2310693,2026-04-10T04:58:49.281357+00:00 +2026-02-13,Fri,2315364,2026-04-10T04:58:49.281367+00:00 +2026-02-14,Sat,2395195,2026-04-10T04:58:49.281377+00:00 +2026-02-15,Sun,2443700,2026-04-10T04:58:49.281386+00:00 +2026-02-16,Mon,2381000,2026-04-10T04:58:49.281396+00:00 +2026-02-17,Tue,2376378,2026-04-10T04:58:49.281405+00:00 +2026-02-18,Wed,2352090,2026-04-10T04:58:49.281417+00:00 +2026-02-19,Thu,2369188,2026-04-10T04:58:49.281427+00:00 +2026-02-20,Fri,2392408,2026-04-10T04:58:49.281437+00:00 +2026-02-21,Sat,2455656,2026-04-10T04:58:49.281454+00:00 +2026-02-22,Sun,2503957,2026-04-10T04:58:49.281464+00:00 +2026-02-23,Mon,2419723,2026-04-10T04:58:49.281474+00:00 +2026-02-24,Tue,2307224,2026-04-10T04:58:49.281483+00:00 +2026-02-25,Wed,2282502,2026-04-10T04:58:49.281492+00:00 +2026-02-26,Thu,2371711,2026-04-10T04:58:49.281502+00:00 +2026-02-27,Fri,2518883,2026-04-10T04:58:49.281511+00:00 +2026-02-28,Sat,2475589,2026-04-10T04:58:49.281522+00:00 +2026-04-01,Wed,2728896,2026-04-10T04:58:49.281531+00:00 +2026-04-02,Thu,2633033,2026-04-10T04:58:49.281540+00:00 +2026-04-03,Fri,2625763,2026-04-10T04:58:49.281550+00:00 +2026-04-04,Sat,2619767,2026-04-10T04:58:49.281560+00:00 +2026-04-05,Sun,2591602,2026-04-10T04:58:49.281569+00:00 +2026-04-06,Mon,2540318,2026-04-10T04:58:49.281579+00:00 +2026-04-07,Tue,2549568,2026-04-10T04:58:49.281588+00:00 +2026-04-08,Wed,2642008,2026-04-10T04:58:49.281598+00:00 +2026-04-09,Thu,2634299,2026-04-10T16:58:39.588783+00:00 +2026-04-10,Fri,2645598,2026-04-28T03:51:11.102080+00:00 +2026-04-11,Sat,2514397,2026-04-28T03:51:11.102097+00:00 +2026-04-12,Sun,2449199,2026-04-28T03:51:11.102104+00:00 +2026-04-13,Mon,2688477,2026-04-28T03:51:11.102109+00:00 +2026-04-14,Tue,2809063,2026-04-28T03:51:11.102114+00:00 +2026-04-15,Wed,2839613,2026-04-28T03:51:11.102118+00:00 +2026-04-16,Thu,2886202,2026-04-28T03:51:11.102122+00:00 +2026-04-17,Fri,2771289,2026-04-28T03:51:11.102126+00:00 +2026-04-18,Sat,2623295,2026-04-28T03:51:11.102130+00:00 +2026-04-19,Sun,2659599,2026-04-28T03:51:11.102137+00:00 +2026-04-20,Mon,2729774,2026-04-28T03:51:11.102141+00:00 +2026-04-21,Tue,2819589,2026-04-28T03:51:11.102145+00:00 +2026-04-22,Wed,2903601,2026-04-28T03:51:11.102152+00:00 +2026-04-23,Thu,2887340,2026-04-28T03:51:11.102156+00:00 +2026-04-24,Fri,2847244,2026-04-28T03:51:11.102160+00:00 +2026-04-25,Sat,2611331,2026-04-28T03:51:11.102164+00:00 +2026-04-26,Sun,2649417,2026-04-28T03:51:11.102168+00:00 +2026-04-27,Mon,2767988,2026-05-11T21:58:42.268463+00:00 +2026-04-28,Tue,2832008,2026-05-11T21:58:42.268504+00:00 +2026-04-29,Wed,2808639,2026-05-11T21:58:42.268526+00:00 +2026-04-30,Thu,1641414,2026-05-11T21:58:42.268538+00:00 +2026-05-01,Fri,2575978,2026-05-11T21:58:42.268549+00:00 +2026-05-02,Sat,2749198,2026-05-11T21:58:42.268560+00:00 +2026-05-03,Sun,2695708,2026-05-11T21:58:42.268572+00:00 +2026-05-04,Mon,2733213,2026-05-11T21:58:42.268582+00:00 +2026-05-05,Tue,2835859,2026-05-11T21:58:42.268592+00:00 +2026-05-06,Wed,2864620,2026-05-11T21:58:42.268604+00:00 +2026-05-07,Thu,2889918,2026-05-11T21:58:42.268615+00:00 +2026-05-08,Fri,2880002,2026-05-11T21:58:42.268627+00:00 +2026-05-09,Sat,2835853,2026-05-11T21:58:42.268637+00:00 +2026-05-10,Sun,2646638,2026-05-11T21:58:42.268648+00:00 diff --git a/references/fingerprinting-ai-agents-2025.pdf b/references/fingerprinting-ai-agents-2025.pdf new file mode 100644 index 0000000..a48a7f7 Binary files /dev/null and b/references/fingerprinting-ai-agents-2025.pdf differ diff --git a/references/jegham-2025-how-hungry-is-ai.pdf b/references/jegham-2025-how-hungry-is-ai.pdf new file mode 100644 index 0000000..8fd9802 Binary files /dev/null and b/references/jegham-2025-how-hungry-is-ai.pdf differ diff --git a/references/nguyen-2025-agentic-pr-analysis.pdf b/references/nguyen-2025-agentic-pr-analysis.pdf new file mode 100644 index 0000000..a00b612 Binary files /dev/null and b/references/nguyen-2025-agentic-pr-analysis.pdf differ diff --git a/references/ogenrwot-businge-2026-msr-agentic-prs.pdf b/references/ogenrwot-businge-2026-msr-agentic-prs.pdf new file mode 100644 index 0000000..514f658 Binary files /dev/null and b/references/ogenrwot-businge-2026-msr-agentic-prs.pdf differ diff --git a/references/pham-ghaleb-2026-agentic-prs.pdf b/references/pham-ghaleb-2026-agentic-prs.pdf new file mode 100644 index 0000000..1014324 Binary files /dev/null and b/references/pham-ghaleb-2026-agentic-prs.pdf differ diff --git a/references/robbes-2026-agentic-much.pdf b/references/robbes-2026-agentic-much.pdf new file mode 100644 index 0000000..935c584 Binary files /dev/null and b/references/robbes-2026-agentic-much.pdf differ diff --git a/references/robbes-2026-promises-perils-heuristics.pdf b/references/robbes-2026-promises-perils-heuristics.pdf new file mode 100644 index 0000000..30164a0 Binary files /dev/null and b/references/robbes-2026-promises-perils-heuristics.pdf differ diff --git a/references/swe-effi-2025.pdf b/references/swe-effi-2025.pdf new file mode 100644 index 0000000..85cc549 Binary files /dev/null and b/references/swe-effi-2025.pdf differ diff --git a/references/where-ai-agents-fail-2025.pdf b/references/where-ai-agents-fail-2025.pdf new file mode 100644 index 0000000..ae6fe7d Binary files /dev/null and b/references/where-ai-agents-fail-2025.pdf differ diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..e2d497b --- /dev/null +++ b/requirements.txt @@ -0,0 +1,18 @@ +# Pinned pipeline dependencies for the AI coding agent adoption tracker. +plotly~=6.7 +google-cloud-bigquery~=3.41 +openpyxl~=3.1 +python-dotenv~=1.2 +pytest~=9.0 + +# Scientific stack (intervention analysis) +numpy>=1.26 +pandas>=2.2 +scipy>=1.12 +statsmodels>=0.14 +matplotlib>=3.8 + +# Structural-break / changepoint detection +ruptures>=1.1 +Rbeast>=0.1 +pymc>=5.10 diff --git a/run_intervention_analysis.py b/run_intervention_analysis.py new file mode 100644 index 0000000..197db47 --- /dev/null +++ b/run_intervention_analysis.py @@ -0,0 +1,327 @@ +#!/usr/bin/env python3 +"""Run the full Claude Code intervention analysis end-to-end. + +Phases (per the spec): + - Phase 3a: Headline BSTS on aggregate other-agents series, Oct 20 intervention + - Phase 3b: Cursor-excluded aggregate robustness + - Phase 3c: Oct 29 placebo (Cursor 2.0 as fake intervention) + - Phase 3d-SDID: SDID primary estimator on agents + bot donors panel + - Phase 4: Substitution-pair ITS (6 pairs) + - Phase 4 appendix: Compositional VAR IRF grid + - Phase 5: Descriptive sigmoid grid + +Outputs land in outputs/intervention/: + bsts_headline.png counterfactual, pointwise effect, cumulative + bsts_cursor_excluded.png same for Cursor-excluded series + bsts_placebo_oct29.png falsification check + sdid.png treated mean vs synthetic counterfactual + sdid_weights.csv omega (unit) + lambda (time) weights + pairs_table.csv 6-pair log-ratio ITS results + var_irf_grid.png compositional VAR impulse responses + sigmoids_grid.png per-tool cumulative with sigmoid fit + summary.json all numeric effects + CIs + +Usage: + python run_intervention_analysis.py # full run + python run_intervention_analysis.py --quick # skip VAR + SDID placebo SE +""" +from __future__ import annotations +import argparse +import json +import warnings +from pathlib import Path + +import numpy as np +import pandas as pd + +import intervention_data as idat +import intervention_bsts as ibsts +import intervention_robustness as ir +import intervention_pairs as ipair +import intervention_sigmoids as isig +import intervention_var as ivar +import intervention_sdid as isdid +import intervention_breaks as ibr +import intervention_car as icar + + +INTERVENTION = pd.Timestamp("2025-10-20") +PLACEBO = pd.Timestamp("2025-10-29") +OUT = Path("outputs/intervention") +# Appendix = prior-design estimators (BSTS, SDID, compositional VAR) — +# retained for directional corroboration, demoted from headline per the +# 2026-04-21 econometric review. +APPENDIX = OUT / "appendix" + +TREATED_AGENTS = [ + "Cursor", + "OpenAI Codex", + "Copilot SWE Agent (new)", + "Devin", + "Jules (Google)", + "Replit Agent", +] +VAR_TOOLS = ["Claude Code"] + TREATED_AGENTS + +# CAR window grid — (window_pre, window_post) tuples. +# The first two windows (up through +8d) are uncontaminated by the next +# major-version frontier launch (Cursor 2.0 on Oct 29, +9d); longer windows +# include it and should be read with that caveat. +CAR_WINDOWS = [(5, 5), (5, 8), (5, 14), (5, 21), (5, 28), (5, 45)] +# Major-version / distinct frontier launches only. Point releases +# (Sonnet 4.5, Haiku 4.5, GPT-5.1, Opus 4.5) excluded by editorial call — +# they are not plausible drivers of developer-tool substitution at this +# horizon. +CAR_CONTAMINANTS = { + pd.Timestamp("2025-10-29"): "Cursor 2.0", + pd.Timestamp("2025-11-18"): "Gemini 3", +} + + +def _safe_float(x) -> float: + try: + return float(x) + except (TypeError, ValueError): + return float("nan") + + +def main(quick: bool = False) -> None: + OUT.mkdir(parents=True, exist_ok=True) + APPENDIX.mkdir(parents=True, exist_ok=True) + summary: dict = {"intervention_date": INTERVENTION.strftime("%Y-%m-%d"), + "placebo_date": PLACEBO.strftime("%Y-%m-%d"), + "quick": quick} + + # ─── Load data ────────────────────────────────────────────────────── + df = idat.load_commits("daily_ai_commits.csv") + piv = idat.build_other_agents_total(df) + y_raw = piv["other_agents_total"].astype(float) + y = idat.null_gharchive_outage(y_raw) + + # Regressor matrix: event step dummies + DoW — but drop the Claude Code + # web-launch column so the intervention effect isn't absorbed by the + # regressor. + X = idat.build_regressor_matrix(y.index, "events/model_releases.csv") + cc_web_cols = [c for c in X.columns if "Claude Code web launch" in c] + X = X.drop(columns=cc_web_cols, errors="ignore") + # For the placebo, also drop any Cursor 2.0 column so it stays unexplained + X_placebo = X.drop(columns=[c for c in X.columns if "Cursor 2.0" in c], + errors="ignore") + + # ─── Phase 3a: headline BSTS ──────────────────────────────────────── + print("[phase 3a] headline BSTS...") + with warnings.catch_warnings(): + warnings.simplefilter("ignore") + res = ibsts.fit_bsts(y, X, INTERVENTION) + ibsts.plot_bsts(res, y, INTERVENTION, APPENDIX / "bsts_headline.png") + ppc = ibsts.posterior_predictive_check(res, y, INTERVENTION) + summary["bsts_headline"] = { + "cumulative_effect_final": _safe_float(res["cumulative_effect"].iloc[-1]), + "p_cumulative_positive": _safe_float(res["p_cumulative_positive"]), + "pre_period_coverage": _safe_float(ppc["pre_period_coverage"]), + "pre_period_days": int(ppc["pre_period_days"]), + } + + # ─── Phase 3b: Cursor-excluded ────────────────────────────────────── + print("[phase 3b] Cursor-excluded BSTS...") + with warnings.catch_warnings(): + warnings.simplefilter("ignore") + res_ex = ir.fit_cursor_excluded(df, X, INTERVENTION) + y_ex = ir.build_excluded_series(df, exclude_tools=["Cursor"]).astype(float) + ibsts.plot_bsts(res_ex, y_ex, INTERVENTION, APPENDIX / "bsts_cursor_excluded.png") + summary["cursor_excluded"] = { + "cumulative_effect_final": _safe_float(res_ex["cumulative_effect"].iloc[-1]), + "p_cumulative_positive": _safe_float(res_ex["p_cumulative_positive"]), + } + + # ─── Phase 3c: Oct 29 placebo ─────────────────────────────────────── + print("[phase 3c] Oct 29 placebo BSTS...") + with warnings.catch_warnings(): + warnings.simplefilter("ignore") + res_pl = ir.fit_placebo(y, X_placebo, PLACEBO, post_horizon_days=60) + ibsts.plot_bsts(res_pl, y, PLACEBO, APPENDIX / "bsts_placebo_oct29.png") + summary["placebo_oct29"] = { + "cumulative_effect_final": _safe_float(res_pl["cumulative_effect"].iloc[-1]), + "p_cumulative_positive": _safe_float(res_pl["p_cumulative_positive"]), + } + + # ─── Phase 3d: SDID primary ───────────────────────────────────────── + print("[phase 3d] SDID on agents + bot donors...") + bots_df = isdid.load_bot_donors("bot_donors_daily.csv") + panel = isdid.build_long_panel( + df, bots_df, + intervention_date=INTERVENTION, + treated_tools=TREATED_AGENTS, + ) + sdid_res = isdid.fit_sdid(panel) + # Placebo SE is expensive (many SDID refits); skip in --quick mode + if not quick: + print("[phase 3d] SDID placebo SE (n_placebos=25)...") + try: + sdid_se = isdid.placebo_se(panel, n_placebos=25, rng_seed=0) + except Exception as exc: + print(f" placebo_se failed: {exc}; recording NaN") + sdid_se = float("nan") + else: + sdid_se = float("nan") + # Build date_map for SDID plot + bots_mask = bots_df["donor"].isin(isdid.DEFAULT_BOT_DONORS) + agents_mask = df["tool"].isin(TREATED_AGENTS) + common_dates = sorted(set(df.loc[agents_mask, "date"].unique()) & + set(bots_df.loc[bots_mask, "date"].unique())) + date_map = {i: pd.Timestamp(d) for i, d in enumerate(common_dates)} + isdid.plot_sdid(sdid_res, panel, APPENDIX / "sdid.png", date_map=date_map) + # Weights CSV + weights_df = pd.concat([ + sdid_res["unit_weights"].rename("omega"), + sdid_res["time_weights"].rename("lambda").head(50), + ], axis=0) + weights_df.to_csv(APPENDIX / "sdid_weights.csv") + summary["sdid"] = { + "att": _safe_float(sdid_res["att"]), + "n_treated_units": int(sdid_res["n_treated_units"]), + "n_control_units": int(sdid_res["n_control_units"]), + "placebo_se": _safe_float(sdid_se), + } + + # ─── Phase 4: substitution pairs ─────────────────────────────────── + print("[phase 4] substitution-pair ITS...") + pairs_df = ipair.run_all_pairs(df, ipair.PAIRS_TO_RUN, INTERVENTION) + pairs_df.to_csv(OUT / "pairs_table.csv", index=False) + summary["pairs"] = pairs_df.to_dict(orient="records") + + # ─── Phase 4 appendix: compositional VAR ──────────────────────────── + if not quick: + print("[phase 4-appendix] compositional VAR IRFs...") + try: + shares = ivar.compute_shares(df, VAR_TOOLS) + alr = ivar.alr_transform(shares, reference="Claude Code") + var_res = ivar.fit_var(alr, lag_order=2) + irf = ivar.impulse_response(var_res, n_steps=30) + ivar.plot_irf_grid(irf, list(alr.columns), + APPENDIX / "var_irf_grid.png", + title="Compositional VAR -- shocks to each agent's share") + summary["var"] = {"lag_order": int(var_res.k_ar), + "n_vars": int(alr.shape[1])} + except Exception as exc: + print(f" VAR failed: {exc}; skipping") + summary["var"] = {"error": str(exc)} + else: + summary["var"] = {"skipped": True} + + # ─── Phase 5: descriptive sigmoid grid ────────────────────────────── + print("[phase 5] descriptive sigmoid grid...") + df_grid = df[~df["tool"].isin(idat.SUPERSEDED_TOOLS)] + totals = df_grid.groupby("tool")["commits"].sum().sort_values(ascending=False) + grid_tools = list(totals.index[:12]) + isig.plot_sigmoid_grid( + df_grid, grid_tools, OUT / "sigmoids_grid.png", + annotation_dates=[pd.Timestamp("2025-02-24"), INTERVENTION], + ) + summary["sigmoid_tools"] = grid_tools + + # ─── Phase 6: PRIMARY — endogenous break detection (BEAST + PyMC + PELT) ── + print("[phase 6] endogenous break detection (BEAST + PyMC + PELT)...") + pymc_kwargs = None if quick else {"draws": 500, "tune": 500, "chains": 2} + breaks_df, cp_probs, pair_series = ibr.run_all_pairs( + df, ipair.PAIRS_TO_RUN, INTERVENTION, + window_days=5, run_pymc=(not quick), pymc_kwargs=pymc_kwargs, + ) + breaks_df.to_csv(OUT / "breaks_table.csv", index=False) + ibr.plot_breaks(pair_series, breaks_df, INTERVENTION, + OUT / "breaks_grid.png", beast_cp_probs=cp_probs) + + # Phase 6b: BEAST null test — is Oct 20 concentration explainable by + # autocorrelation under a no-break null? Run 200 block-bootstraps per + # pair; report bootstrap p-value (fraction of null draws with P ≥ obs). + print("[phase 6b] BEAST block-bootstrap null test...") + null_rows = [] + n_boot = 50 if quick else 200 + for a, b in ipair.PAIRS_TO_RUN: + y_ab = ipair.log_ratio(a, b, df) + r = ibr.beast_null_test(y_ab, INTERVENTION, window_days=5, + n_bootstrap=n_boot, rng_seed=0) + null_rows.append({"pair": f"{a} vs {b}", + "p_obs": r["p_obs"], + "null_p_mean": r["null_p_mean"], + "null_p_q95": r["null_p_q95"], + "null_p_q99": r["null_p_q99"], + "boot_p": r["boot_p"], + "n_bootstrap": r["n_bootstrap"]}) + null_df = pd.DataFrame(null_rows) + null_df.to_csv(OUT / "beast_null_test.csv", index=False) + + summary["breaks"] = { + "method": "BEAST (primary) + PyMC (robustness) + PELT (descriptive)", + "window_days": 5, + "beast_p_window_gt_0_5": int((breaks_df["beast_p_window"] > 0.5).sum()), + "beast_p_window_gt_0_8": int((breaks_df["beast_p_window"] > 0.8).sum()), + "pymc_p_window_gt_0_5": int((breaks_df["pymc_p_window"] > 0.5).sum()) + if "pymc_p_window" in breaks_df.columns else None, + "pelt_within_5d": int((breaks_df["pelt_days_from_anchor"].abs() <= 5).sum()), + "n_pairs": int(len(breaks_df)), + "pairs": breaks_df.drop(columns=[c for c in breaks_df.columns + if c in ("tool_a", "tool_b")], + errors="ignore").to_dict(orient="records"), + "null_test": null_df.to_dict(orient="records"), + "null_test_boot_p_below_0_05": int((null_df["boot_p"] < 0.05).sum()), + } + + # ─── Phase 7: PRIMARY — event-window CAR ──────────────────────────── + print("[phase 7] event-window CAR on market aggregates...") + y_other = icar.build_market_aggregate( + df, exclude_tools=("Claude Code",) + idat.SUPERSEDED_TOOLS) + y_total = icar.build_market_aggregate( + df, exclude_tools=idat.SUPERSEDED_TOOLS) + car_other = icar.run_window_grid( + y_other, INTERVENTION, CAR_WINDOWS, + contaminating_events=CAR_CONTAMINANTS, + ) + car_total = icar.run_window_grid( + y_total, INTERVENTION, CAR_WINDOWS, + contaminating_events=CAR_CONTAMINANTS, + ) + car_other.to_csv(OUT / "car_other_agents.csv", index=False) + car_total.to_csv(OUT / "car_total_market.csv", index=False) + # Plot the cleanest window ([-5, +8], before Cursor 2.0) for both + for label, y, series_out in [ + ("other_agents", y_other, "car_other_clean.png"), + ("total_market", y_total, "car_total_clean.png"), + ]: + r = icar.compute_car(y, INTERVENTION, pre_days=90, + window_pre=5, window_post=8, use_log=True) + icar.plot_car(r, OUT / series_out, + title_suffix=f"({label} — ±5d pre / +8d post, pre-Cursor-2.0)") + # Placebo on quiet pre-Oct-20 dates, spillover outcome only + placebos = [pd.Timestamp(d) for d in + ["2025-07-15", "2025-08-05", "2025-09-01", "2025-07-01"]] + placebo_df = icar.run_placebo_car(y_other, placebos, + window_pre=5, window_post=8) + placebo_df.to_csv(OUT / "car_placebo.csv", index=False) + summary["car"] = { + "windows": CAR_WINDOWS, + "contaminants": {str(k.date()): v for k, v in CAR_CONTAMINANTS.items()}, + "other_agents": car_other.to_dict(orient="records"), + "total_market": car_total.to_dict(orient="records"), + "placebos_other_agents": placebo_df.to_dict(orient="records"), + } + + # ─── Demote BSTS / SDID / VAR to appendix ────────────────────────── + # Rename the legacy keys so the summary's top level surfaces the + # primary findings (breaks + CAR + pairs) first. + for k in ("bsts_headline", "cursor_excluded", "placebo_oct29", + "sdid", "var"): + if k in summary: + summary[f"appendix_{k}"] = summary.pop(k) + + # ─── Write summary ────────────────────────────────────────────────── + (OUT / "summary.json").write_text(json.dumps(summary, indent=2, default=str)) + print(f"\nDONE -- artifacts in {OUT.resolve()}") + + +if __name__ == "__main__": + ap = argparse.ArgumentParser() + ap.add_argument("--quick", action="store_true", + help="skip VAR and SDID placebo SE") + args = ap.parse_args() + main(quick=args.quick) diff --git a/run_pipeline.py b/run_pipeline.py new file mode 100644 index 0000000..0ec659c --- /dev/null +++ b/run_pipeline.py @@ -0,0 +1,397 @@ +#!/usr/bin/env python3 +"""Pipeline orchestrator. + +Runs the AI coding agent pipeline: fetch commit data, (weekly) refresh +BigQuery signals, regenerate carbon estimates, rebuild the dashboard, scan +for anomalies, post a Slack summary if needed, and commit changed files. + +Usage: + python run_pipeline.py --mode daily + python run_pipeline.py --mode weekly + python run_pipeline.py --mode daily --dry-run + python run_pipeline.py --mode daily --end-date 2026-04-12 +""" +from __future__ import annotations + +import argparse +import csv +import enum +import json +import os +import subprocess +import sys +import urllib.error +import urllib.request +from dataclasses import dataclass, field +from datetime import date, datetime, timedelta +from pathlib import Path + +from anomaly_analysis import Anomaly, scan_anomalies + +REPO_ROOT = Path(__file__).parent +COMMITS_CSV = REPO_ROOT / "daily_ai_commits.csv" + +DATA_PATHS = [ + "daily_ai_commits.csv", + "branch_activity_daily.csv", + "push_events_daily.csv", + "branch_creates_daily.csv", + "daily_carbon_estimates.csv", +] + + +class Severity(enum.Enum): + CLEAN = "clean" + ANOMALY = "anomaly" + PARTIAL = "partial" + FATAL = "fatal" + + +@dataclass +class StepResult: + name: str + ok: bool + stderr: str = "" + stdout: str = "" + + +@dataclass +class PipelineResult: + mode: str # "daily" | "weekly" + end_date: str # YYYY-MM-DD + steps: list[StepResult] = field(default_factory=list) + anomalies: list[Anomaly] = field(default_factory=list) + empty_dates: list[str] = field(default_factory=list) + + +def classify(result: PipelineResult) -> Severity: + if not result.steps: + return Severity.FATAL + any_ok = any(s.ok for s in result.steps) + any_fail = any(not s.ok for s in result.steps) + + if not any_ok: + return Severity.FATAL + if any_fail or result.empty_dates: + return Severity.PARTIAL + if result.anomalies: + return Severity.ANOMALY + return Severity.CLEAN + + +def run_step(name: str, cmd: list[str], cwd: str | None = None, + env: dict | None = None, timeout: int = 1800) -> StepResult: + """Run `cmd` as a subprocess, capturing output. + + `timeout` defaults to 30 minutes — long enough for the slowest step + (BigQuery) but short enough to prevent runaway workflows. + """ + try: + proc = subprocess.run( + cmd, cwd=cwd, env=env, capture_output=True, text=True, timeout=timeout, + ) + return StepResult( + name=name, ok=(proc.returncode == 0), + stdout=proc.stdout, stderr=proc.stderr, + ) + except FileNotFoundError as exc: + return StepResult(name=name, ok=False, stderr=f"command not found: {exc}") + except subprocess.TimeoutExpired as exc: + return StepResult(name=name, ok=False, + stderr=f"timeout after {timeout}s: {exc}") + except Exception as exc: # defensive; surfaces as PARTIAL + return StepResult(name=name, ok=False, stderr=f"{type(exc).__name__}: {exc}") + + +def _start_date(end_date: str, days: int) -> str: + end = datetime.strptime(end_date, "%Y-%m-%d").date() + return (end - timedelta(days=days)).isoformat() + + +def _iter_dates(start: str, end: str): + s = datetime.strptime(start, "%Y-%m-%d").date() + e = datetime.strptime(end, "%Y-%m-%d").date() + d = s + while d <= e: + yield d.isoformat() + d += timedelta(days=1) + + +def _check_empty_dates(csv_path: Path, start: str, end: str) -> list[str]: + """Return any date in [start, end] where every tool reports 0 commits.""" + if not csv_path.exists(): + return [] + totals: dict[str, int] = {} + with open(csv_path) as f: + for row in csv.DictReader(f): + if row.get("view", "all") != "all": + continue + d = row["date"] + if not (start <= d <= end): + continue + try: + totals[d] = totals.get(d, 0) + int(row.get("commits") or 0) + except ValueError: + continue + empties = [d for d in _iter_dates(start, end) if totals.get(d, 0) == 0] + return empties + + +def run_daily(end_date: str) -> PipelineResult: + result = PipelineResult(mode="daily", end_date=end_date) + start = _start_date(end_date, days=7) + + result.steps.append(run_step( + "commits", + [sys.executable, "github_ai_daily.py", + "--start-date", start, "--end-date", end_date], + cwd=str(REPO_ROOT), + )) + result.steps.append(run_step( + "carbon", [sys.executable, "estimate_carbon.py"], + cwd=str(REPO_ROOT), + )) + result.steps.append(run_step( + "dashboard", [sys.executable, "dashboard.py"], + cwd=str(REPO_ROOT), + )) + + result.anomalies = scan_anomalies(COMMITS_CSV) + result.empty_dates = _check_empty_dates(COMMITS_CSV, start, end_date) + return result + + +def run_weekly(end_date: str) -> PipelineResult: + result = PipelineResult(mode="weekly", end_date=end_date) + start = _start_date(end_date, days=14) + + result.steps.append(run_step( + "branch_activity", + [sys.executable, "fetch_branch_activity.py", + "--start-date", start, "--end-date", end_date], + cwd=str(REPO_ROOT), + )) + result.steps.append(run_step( + "daily_totals", + [sys.executable, "fetch_daily_totals.py", + "--start-date", start, "--end-date", end_date], + cwd=str(REPO_ROOT), + )) + # Now run daily steps (commits + carbon + dashboard) with a 7-day window + daily_start = _start_date(end_date, days=7) + result.steps.append(run_step( + "commits", + [sys.executable, "github_ai_daily.py", + "--start-date", daily_start, "--end-date", end_date], + cwd=str(REPO_ROOT), + )) + result.steps.append(run_step( + "carbon", [sys.executable, "estimate_carbon.py"], + cwd=str(REPO_ROOT), + )) + result.steps.append(run_step( + "dashboard", [sys.executable, "dashboard.py"], + cwd=str(REPO_ROOT), + )) + + result.anomalies = scan_anomalies(COMMITS_CSV) + result.empty_dates = _check_empty_dates(COMMITS_CSV, daily_start, end_date) + return result + + +def _truncate(s: str, n: int = 400) -> str: + s = (s or "").strip() + return s if len(s) <= n else s[:n] + "..." + + +def format_slack_message(result: PipelineResult) -> str | None: + """Build a Slack message for the given result, or None if no message needed.""" + severity = classify(result) + if severity == Severity.CLEAN: + return None + + lines: list[str] = [] + header_map = { + Severity.FATAL: "❌ Pipeline failed", + Severity.PARTIAL: "⚠️ Pipeline partial", + Severity.ANOMALY: "🔍 Pipeline anomalies", + } + lines.append(f"{header_map[severity]} ({result.end_date} {result.mode})") + + # Step table + if result.steps: + for s in result.steps: + mark = "✅" if s.ok else "❌" + detail = f": {_truncate(s.stderr, 200)}" if (not s.ok and s.stderr) else "" + lines.append(f" {mark} {s.name}{detail}") + + # Empty-date backfill warnings + for d in result.empty_dates: + lines.append(f" 🔧 backfill: {d} returned empty for all tools, recheck") + + # Anomaly section + if result.anomalies: + lines.append("") + lines.append(f"🔍 Anomalies ({len(result.anomalies)})") + for a in result.anomalies: + if a.type == "QUIET": + lines.append( + f" • {a.tool:<20} QUIET peak={a.prev_avg:.0f}/day near " + f"{a.date}, recent={a.curr_avg:.1f}/day" + ) + elif a.type == "SPIKE": + lines.append( + f" • {a.tool:<20} SPIKE {a.date} " + f"7d avg: {a.prev_avg:.0f} → {a.curr_avg:.0f} ({a.ratio:.1f}x)" + ) + else: # DROP + pct = int((1 - a.ratio) * 100) + lines.append( + f" • {a.tool:<20} DROP {a.date} " + f"7d avg: {a.prev_avg:.0f} → {a.curr_avg:.0f} ({pct}% drop)" + ) + return "\n".join(lines) + + +def _http_post_real(url: str, payload: dict) -> None: + """POST *payload* as JSON to *url* using the stdlib only. + + A failed Slack webhook POST must not crash a successful pipeline run. + HTTP and network errors are caught, logged to stderr, and swallowed. + """ + data = json.dumps(payload).encode() + req = urllib.request.Request( + url, data=data, headers={"Content-Type": "application/json"}, method="POST", + ) + try: + with urllib.request.urlopen(req, timeout=15) as resp: + resp.read() + except (urllib.error.URLError, OSError) as exc: + # A failed Slack post must not crash a successful pipeline run. + print(f"[pipeline] WARNING: Slack webhook POST failed: {exc}", + file=sys.stderr) + + +def post_slack( + webhook_url: str, + message: str, + dry_run: bool = False, + _http_post=None, +) -> None: + """Post *message* to a Slack incoming-webhook URL. + + No-op when: + - ``dry_run`` is True + - ``webhook_url`` is empty / falsy + - ``message`` is empty / falsy + """ + if dry_run or not webhook_url or not message: + return + poster = _http_post if _http_post is not None else _http_post_real + poster(webhook_url, {"text": message}) + + +def commit_back(message: str, dry_run: bool = False) -> bool: + """Stage data output files, commit, and push if anything changed. + + Returns True if a commit was made, False otherwise. + """ + if dry_run: + return False + + existing = [p for p in DATA_PATHS if Path(p).exists()] + if not existing: + return False + + # Check for unstaged changes + diff_result = subprocess.run( + ["git", "diff", "--quiet", "--"] + existing, + cwd=str(REPO_ROOT), + capture_output=True, + ) + # Check for staged changes + diff_cached_result = subprocess.run( + ["git", "diff", "--cached", "--quiet", "--"] + existing, + cwd=str(REPO_ROOT), + capture_output=True, + ) + + if diff_result.returncode == 0 and diff_cached_result.returncode == 0: + # Nothing to commit + return False + + subprocess.run( + ["git", "add", "--"] + existing, + cwd=str(REPO_ROOT), + check=True, + capture_output=True, + ) + subprocess.run( + ["git", "commit", "-m", message], + cwd=str(REPO_ROOT), + check=True, + capture_output=True, + ) + subprocess.run( + ["git", "push"], + cwd=str(REPO_ROOT), + check=True, + capture_output=True, + ) + return True + + +def _default_end_date() -> str: + """Yesterday in UTC, YYYY-MM-DD.""" + return (datetime.utcnow().date() - timedelta(days=1)).isoformat() + + +def parse_args(argv: list[str] | None = None) -> argparse.Namespace: + p = argparse.ArgumentParser(description="AI coding agent pipeline orchestrator") + p.add_argument("--mode", choices=["daily", "weekly"], required=True) + p.add_argument("--end-date", default=None, + help="Target end date (YYYY-MM-DD). Default: yesterday UTC.") + p.add_argument("--dry-run", action="store_true", + help="Run pipeline but skip Slack post and git commit.") + p.add_argument("--no-commit", action="store_true", + help="Run pipeline and post Slack but skip git commit.") + return p.parse_args(argv) + + +def main(argv: list[str] | None = None) -> int: + args = parse_args(argv) + end_date = args.end_date or _default_end_date() + + if args.mode == "daily": + result = run_daily(end_date) + else: + result = run_weekly(end_date) + + severity = classify(result) + print(f"[pipeline] {args.mode} mode, end_date={end_date}, severity={severity.value}") + for s in result.steps: + print(f" {'OK' if s.ok else 'FAIL'} {s.name}") + if result.anomalies: + print(f" {len(result.anomalies)} anomalies detected") + if result.empty_dates: + print(f" empty dates: {', '.join(result.empty_dates)}") + + # Build and post Slack message + run_url = os.environ.get("GITHUB_RUN_URL", "") + message = format_slack_message(result) + if message and run_url: + message = f"{message}\nRun: {run_url}" + webhook = os.environ.get("SLACK_WEBHOOK_URL", "") + post_slack(webhook, message or "", dry_run=args.dry_run) + + if not args.dry_run and not args.no_commit: + commit_msg = f"chore(data): {args.mode} pipeline {end_date} [skip ci]" + committed = commit_back(commit_msg, dry_run=False) + if committed: + print(f"[pipeline] committed data updates") + + return 0 if severity != Severity.FATAL else 1 + + +if __name__ == "__main__": + sys.exit(main()) diff --git a/scripts/make_bot_donors_fixture.py b/scripts/make_bot_donors_fixture.py new file mode 100644 index 0000000..faaf3a7 --- /dev/null +++ b/scripts/make_bot_donors_fixture.py @@ -0,0 +1,29 @@ +"""Generate a deterministic bot-donor fixture that pairs with intervention_small.csv.""" +import csv +import random +from datetime import date, timedelta + +random.seed(43) # different seed from agent fixture to avoid correlation +start = date(2025, 2, 1) +n_days = 180 +donors = ["Dependabot", "Renovate", "pre-commit-ci", + "semantic-release-bot", "allcontributors", "github-actions"] + +rows = [] +for i in range(n_days): + d = (start + timedelta(days=i)).isoformat() + for donor in donors: + base = {"Dependabot": 25000, "Renovate": 80000, + "pre-commit-ci": 900, "semantic-release-bot": 700, + "allcontributors": 50, "github-actions": 82000}[donor] + noise_frac = 0.05 + noise = random.gauss(0, base * noise_frac) + trend = i * (base * 0.002) + commits = max(0, int(base + trend + noise)) + rows.append({"date": d, "donor": donor, "commits": commits, + "incomplete": "False", "fetched_at": "fixture"}) + +with open("tests/fixtures/bot_donors_small.csv", "w", newline="") as f: + w = csv.DictWriter(f, fieldnames=rows[0].keys()) + w.writeheader() + w.writerows(rows) diff --git a/scripts/make_intervention_fixture.py b/scripts/make_intervention_fixture.py new file mode 100644 index 0000000..d354f1c --- /dev/null +++ b/scripts/make_intervention_fixture.py @@ -0,0 +1,26 @@ +"""Generate deterministic 180-day synthetic panel for intervention tests.""" +import csv +from datetime import date, timedelta +import random +random.seed(42) + +start = date(2025, 2, 1) +tools = ["Claude Code", "Cursor", "Codex", "Aider", "Devin"] +rows = [] +for i in range(180): + d = (start + timedelta(days=i)).isoformat() + for t in tools: + base = {"Claude Code": 50, "Cursor": 30, "Codex": 20, + "Aider": 15, "Devin": 5}[t] + noise = random.gauss(0, 3) + commits = max(0, int(base + noise + i * 0.5)) + rows.append({"date": d, "tool": t, "view": "all", + "commits": commits, "incomplete": "", + "run_id": "fixture", "fetched_at": "fixture"}) + +with open("tests/fixtures/intervention_small.csv", "w", newline="") as f: + w = csv.DictWriter(f, fieldnames=rows[0].keys()) + w.writeheader() + w.writerows(rows) + +print(f"Wrote {len(rows)} rows to tests/fixtures/intervention_small.csv") diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..a9ec910 --- /dev/null +++ b/tests/__init__.py @@ -0,0 +1 @@ +# Marker for pytest test collection. diff --git a/tests/conftest.py b/tests/conftest.py new file mode 100644 index 0000000..d381e88 --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,12 @@ +"""Shared test fixtures.""" +from pathlib import Path + +import pytest + +FIXTURES = Path(__file__).parent / "fixtures" + + +@pytest.fixture +def small_commits_csv(): + """Path to a small daily_ai_commits.csv fixture.""" + return FIXTURES / "daily_ai_commits_small.csv" diff --git a/tests/fixtures/bot_donors_small.csv b/tests/fixtures/bot_donors_small.csv new file mode 100644 index 0000000..e3bd862 --- /dev/null +++ b/tests/fixtures/bot_donors_small.csv @@ -0,0 +1,1081 @@ +date,donor,commits,incomplete,fetched_at +2025-02-01,Dependabot,26873,False,fixture +2025-02-01,Renovate,81481,False,fixture +2025-02-01,pre-commit-ci,930,False,fixture +2025-02-01,semantic-release-bot,730,False,fixture +2025-02-01,allcontributors,47,False,fixture +2025-02-01,github-actions,75587,False,fixture +2025-02-02,Dependabot,23644,False,fixture +2025-02-02,Renovate,81521,False,fixture +2025-02-02,pre-commit-ci,949,False,fixture +2025-02-02,semantic-release-bot,705,False,fixture +2025-02-02,allcontributors,46,False,fixture +2025-02-02,github-actions,87926,False,fixture +2025-02-03,Dependabot,23093,False,fixture +2025-02-03,Renovate,78367,False,fixture +2025-02-03,pre-commit-ci,877,False,fixture +2025-02-03,semantic-release-bot,711,False,fixture +2025-02-03,allcontributors,52,False,fixture +2025-02-03,github-actions,76207,False,fixture +2025-02-04,Dependabot,24751,False,fixture +2025-02-04,Renovate,81742,False,fixture +2025-02-04,pre-commit-ci,852,False,fixture +2025-02-04,semantic-release-bot,701,False,fixture +2025-02-04,allcontributors,50,False,fixture +2025-02-04,github-actions,77016,False,fixture +2025-02-05,Dependabot,23565,False,fixture +2025-02-05,Renovate,80420,False,fixture +2025-02-05,pre-commit-ci,897,False,fixture +2025-02-05,semantic-release-bot,713,False,fixture +2025-02-05,allcontributors,55,False,fixture +2025-02-05,github-actions,86325,False,fixture +2025-02-06,Dependabot,25806,False,fixture +2025-02-06,Renovate,77959,False,fixture +2025-02-06,pre-commit-ci,950,False,fixture +2025-02-06,semantic-release-bot,679,False,fixture +2025-02-06,allcontributors,54,False,fixture +2025-02-06,github-actions,87685,False,fixture +2025-02-07,Dependabot,22794,False,fixture +2025-02-07,Renovate,76259,False,fixture +2025-02-07,pre-commit-ci,902,False,fixture +2025-02-07,semantic-release-bot,694,False,fixture +2025-02-07,allcontributors,47,False,fixture +2025-02-07,github-actions,77958,False,fixture +2025-02-08,Dependabot,26252,False,fixture +2025-02-08,Renovate,78991,False,fixture +2025-02-08,pre-commit-ci,843,False,fixture +2025-02-08,semantic-release-bot,699,False,fixture +2025-02-08,allcontributors,53,False,fixture +2025-02-08,github-actions,90048,False,fixture +2025-02-09,Dependabot,25477,False,fixture +2025-02-09,Renovate,80021,False,fixture +2025-02-09,pre-commit-ci,878,False,fixture +2025-02-09,semantic-release-bot,692,False,fixture +2025-02-09,allcontributors,52,False,fixture +2025-02-09,github-actions,88450,False,fixture +2025-02-10,Dependabot,27004,False,fixture +2025-02-10,Renovate,80464,False,fixture +2025-02-10,pre-commit-ci,956,False,fixture +2025-02-10,semantic-release-bot,739,False,fixture +2025-02-10,allcontributors,52,False,fixture +2025-02-10,github-actions,73427,False,fixture +2025-02-11,Dependabot,25421,False,fixture +2025-02-11,Renovate,80465,False,fixture +2025-02-11,pre-commit-ci,977,False,fixture +2025-02-11,semantic-release-bot,704,False,fixture +2025-02-11,allcontributors,52,False,fixture +2025-02-11,github-actions,84712,False,fixture +2025-02-12,Dependabot,27133,False,fixture +2025-02-12,Renovate,84809,False,fixture +2025-02-12,pre-commit-ci,966,False,fixture +2025-02-12,semantic-release-bot,767,False,fixture +2025-02-12,allcontributors,53,False,fixture +2025-02-12,github-actions,87012,False,fixture +2025-02-13,Dependabot,25274,False,fixture +2025-02-13,Renovate,82309,False,fixture +2025-02-13,pre-commit-ci,1018,False,fixture +2025-02-13,semantic-release-bot,717,False,fixture +2025-02-13,allcontributors,52,False,fixture +2025-02-13,github-actions,83658,False,fixture +2025-02-14,Dependabot,25286,False,fixture +2025-02-14,Renovate,70100,False,fixture +2025-02-14,pre-commit-ci,1000,False,fixture +2025-02-14,semantic-release-bot,676,False,fixture +2025-02-14,allcontributors,49,False,fixture +2025-02-14,github-actions,89685,False,fixture +2025-02-15,Dependabot,22758,False,fixture +2025-02-15,Renovate,82351,False,fixture +2025-02-15,pre-commit-ci,899,False,fixture +2025-02-15,semantic-release-bot,655,False,fixture +2025-02-15,allcontributors,52,False,fixture +2025-02-15,github-actions,81133,False,fixture +2025-02-16,Dependabot,25620,False,fixture +2025-02-16,Renovate,80682,False,fixture +2025-02-16,pre-commit-ci,955,False,fixture +2025-02-16,semantic-release-bot,800,False,fixture +2025-02-16,allcontributors,48,False,fixture +2025-02-16,github-actions,87974,False,fixture +2025-02-17,Dependabot,24936,False,fixture +2025-02-17,Renovate,81138,False,fixture +2025-02-17,pre-commit-ci,843,False,fixture +2025-02-17,semantic-release-bot,682,False,fixture +2025-02-17,allcontributors,50,False,fixture +2025-02-17,github-actions,87970,False,fixture +2025-02-18,Dependabot,26157,False,fixture +2025-02-18,Renovate,85022,False,fixture +2025-02-18,pre-commit-ci,963,False,fixture +2025-02-18,semantic-release-bot,675,False,fixture +2025-02-18,allcontributors,55,False,fixture +2025-02-18,github-actions,83456,False,fixture +2025-02-19,Dependabot,26756,False,fixture +2025-02-19,Renovate,82154,False,fixture +2025-02-19,pre-commit-ci,944,False,fixture +2025-02-19,semantic-release-bot,747,False,fixture +2025-02-19,allcontributors,46,False,fixture +2025-02-19,github-actions,93215,False,fixture +2025-02-20,Dependabot,26167,False,fixture +2025-02-20,Renovate,87414,False,fixture +2025-02-20,pre-commit-ci,943,False,fixture +2025-02-20,semantic-release-bot,729,False,fixture +2025-02-20,allcontributors,48,False,fixture +2025-02-20,github-actions,83511,False,fixture +2025-02-21,Dependabot,23233,False,fixture +2025-02-21,Renovate,82596,False,fixture +2025-02-21,pre-commit-ci,1007,False,fixture +2025-02-21,semantic-release-bot,662,False,fixture +2025-02-21,allcontributors,50,False,fixture +2025-02-21,github-actions,83753,False,fixture +2025-02-22,Dependabot,27505,False,fixture +2025-02-22,Renovate,88315,False,fixture +2025-02-22,pre-commit-ci,940,False,fixture +2025-02-22,semantic-release-bot,732,False,fixture +2025-02-22,allcontributors,51,False,fixture +2025-02-22,github-actions,83436,False,fixture +2025-02-23,Dependabot,25498,False,fixture +2025-02-23,Renovate,81655,False,fixture +2025-02-23,pre-commit-ci,932,False,fixture +2025-02-23,semantic-release-bot,733,False,fixture +2025-02-23,allcontributors,50,False,fixture +2025-02-23,github-actions,88176,False,fixture +2025-02-24,Dependabot,26103,False,fixture +2025-02-24,Renovate,85819,False,fixture +2025-02-24,pre-commit-ci,879,False,fixture +2025-02-24,semantic-release-bot,707,False,fixture +2025-02-24,allcontributors,52,False,fixture +2025-02-24,github-actions,86938,False,fixture +2025-02-25,Dependabot,25978,False,fixture +2025-02-25,Renovate,90000,False,fixture +2025-02-25,pre-commit-ci,933,False,fixture +2025-02-25,semantic-release-bot,783,False,fixture +2025-02-25,allcontributors,55,False,fixture +2025-02-25,github-actions,88785,False,fixture +2025-02-26,Dependabot,26806,False,fixture +2025-02-26,Renovate,86216,False,fixture +2025-02-26,pre-commit-ci,938,False,fixture +2025-02-26,semantic-release-bot,695,False,fixture +2025-02-26,allcontributors,51,False,fixture +2025-02-26,github-actions,83501,False,fixture +2025-02-27,Dependabot,25783,False,fixture +2025-02-27,Renovate,81221,False,fixture +2025-02-27,pre-commit-ci,898,False,fixture +2025-02-27,semantic-release-bot,740,False,fixture +2025-02-27,allcontributors,56,False,fixture +2025-02-27,github-actions,82675,False,fixture +2025-02-28,Dependabot,24046,False,fixture +2025-02-28,Renovate,82000,False,fixture +2025-02-28,pre-commit-ci,892,False,fixture +2025-02-28,semantic-release-bot,701,False,fixture +2025-02-28,allcontributors,49,False,fixture +2025-02-28,github-actions,85821,False,fixture +2025-03-01,Dependabot,27053,False,fixture +2025-03-01,Renovate,93483,False,fixture +2025-03-01,pre-commit-ci,897,False,fixture +2025-03-01,semantic-release-bot,689,False,fixture +2025-03-01,allcontributors,52,False,fixture +2025-03-01,github-actions,86022,False,fixture +2025-03-02,Dependabot,28459,False,fixture +2025-03-02,Renovate,89835,False,fixture +2025-03-02,pre-commit-ci,921,False,fixture +2025-03-02,semantic-release-bot,668,False,fixture +2025-03-02,allcontributors,54,False,fixture +2025-03-02,github-actions,84910,False,fixture +2025-03-03,Dependabot,28209,False,fixture +2025-03-03,Renovate,84288,False,fixture +2025-03-03,pre-commit-ci,947,False,fixture +2025-03-03,semantic-release-bot,700,False,fixture +2025-03-03,allcontributors,52,False,fixture +2025-03-03,github-actions,91646,False,fixture +2025-03-04,Dependabot,25529,False,fixture +2025-03-04,Renovate,85753,False,fixture +2025-03-04,pre-commit-ci,929,False,fixture +2025-03-04,semantic-release-bot,775,False,fixture +2025-03-04,allcontributors,52,False,fixture +2025-03-04,github-actions,89317,False,fixture +2025-03-05,Dependabot,26994,False,fixture +2025-03-05,Renovate,81570,False,fixture +2025-03-05,pre-commit-ci,905,False,fixture +2025-03-05,semantic-release-bot,790,False,fixture +2025-03-05,allcontributors,52,False,fixture +2025-03-05,github-actions,83015,False,fixture +2025-03-06,Dependabot,25834,False,fixture +2025-03-06,Renovate,91917,False,fixture +2025-03-06,pre-commit-ci,963,False,fixture +2025-03-06,semantic-release-bot,785,False,fixture +2025-03-06,allcontributors,47,False,fixture +2025-03-06,github-actions,96854,False,fixture +2025-03-07,Dependabot,26806,False,fixture +2025-03-07,Renovate,90795,False,fixture +2025-03-07,pre-commit-ci,947,False,fixture +2025-03-07,semantic-release-bot,745,False,fixture +2025-03-07,allcontributors,55,False,fixture +2025-03-07,github-actions,95340,False,fixture +2025-03-08,Dependabot,26958,False,fixture +2025-03-08,Renovate,82909,False,fixture +2025-03-08,pre-commit-ci,1009,False,fixture +2025-03-08,semantic-release-bot,823,False,fixture +2025-03-08,allcontributors,50,False,fixture +2025-03-08,github-actions,84298,False,fixture +2025-03-09,Dependabot,27611,False,fixture +2025-03-09,Renovate,84045,False,fixture +2025-03-09,pre-commit-ci,865,False,fixture +2025-03-09,semantic-release-bot,750,False,fixture +2025-03-09,allcontributors,54,False,fixture +2025-03-09,github-actions,90798,False,fixture +2025-03-10,Dependabot,28616,False,fixture +2025-03-10,Renovate,80722,False,fixture +2025-03-10,pre-commit-ci,942,False,fixture +2025-03-10,semantic-release-bot,749,False,fixture +2025-03-10,allcontributors,54,False,fixture +2025-03-10,github-actions,85018,False,fixture +2025-03-11,Dependabot,26944,False,fixture +2025-03-11,Renovate,83015,False,fixture +2025-03-11,pre-commit-ci,1007,False,fixture +2025-03-11,semantic-release-bot,797,False,fixture +2025-03-11,allcontributors,51,False,fixture +2025-03-11,github-actions,90709,False,fixture +2025-03-12,Dependabot,25663,False,fixture +2025-03-12,Renovate,87891,False,fixture +2025-03-12,pre-commit-ci,906,False,fixture +2025-03-12,semantic-release-bot,763,False,fixture +2025-03-12,allcontributors,56,False,fixture +2025-03-12,github-actions,92212,False,fixture +2025-03-13,Dependabot,24699,False,fixture +2025-03-13,Renovate,87018,False,fixture +2025-03-13,pre-commit-ci,956,False,fixture +2025-03-13,semantic-release-bot,806,False,fixture +2025-03-13,allcontributors,55,False,fixture +2025-03-13,github-actions,94667,False,fixture +2025-03-14,Dependabot,26390,False,fixture +2025-03-14,Renovate,82014,False,fixture +2025-03-14,pre-commit-ci,864,False,fixture +2025-03-14,semantic-release-bot,768,False,fixture +2025-03-14,allcontributors,53,False,fixture +2025-03-14,github-actions,90042,False,fixture +2025-03-15,Dependabot,26919,False,fixture +2025-03-15,Renovate,87754,False,fixture +2025-03-15,pre-commit-ci,1041,False,fixture +2025-03-15,semantic-release-bot,716,False,fixture +2025-03-15,allcontributors,55,False,fixture +2025-03-15,github-actions,94186,False,fixture +2025-03-16,Dependabot,27834,False,fixture +2025-03-16,Renovate,94429,False,fixture +2025-03-16,pre-commit-ci,963,False,fixture +2025-03-16,semantic-release-bot,766,False,fixture +2025-03-16,allcontributors,53,False,fixture +2025-03-16,github-actions,87770,False,fixture +2025-03-17,Dependabot,29459,False,fixture +2025-03-17,Renovate,81378,False,fixture +2025-03-17,pre-commit-ci,953,False,fixture +2025-03-17,semantic-release-bot,744,False,fixture +2025-03-17,allcontributors,54,False,fixture +2025-03-17,github-actions,88068,False,fixture +2025-03-18,Dependabot,28066,False,fixture +2025-03-18,Renovate,89386,False,fixture +2025-03-18,pre-commit-ci,1063,False,fixture +2025-03-18,semantic-release-bot,794,False,fixture +2025-03-18,allcontributors,52,False,fixture +2025-03-18,github-actions,82890,False,fixture +2025-03-19,Dependabot,26809,False,fixture +2025-03-19,Renovate,84979,False,fixture +2025-03-19,pre-commit-ci,971,False,fixture +2025-03-19,semantic-release-bot,811,False,fixture +2025-03-19,allcontributors,55,False,fixture +2025-03-19,github-actions,83992,False,fixture +2025-03-20,Dependabot,26380,False,fixture +2025-03-20,Renovate,93988,False,fixture +2025-03-20,pre-commit-ci,931,False,fixture +2025-03-20,semantic-release-bot,792,False,fixture +2025-03-20,allcontributors,56,False,fixture +2025-03-20,github-actions,84805,False,fixture +2025-03-21,Dependabot,25783,False,fixture +2025-03-21,Renovate,89025,False,fixture +2025-03-21,pre-commit-ci,1000,False,fixture +2025-03-21,semantic-release-bot,803,False,fixture +2025-03-21,allcontributors,56,False,fixture +2025-03-21,github-actions,85774,False,fixture +2025-03-22,Dependabot,29731,False,fixture +2025-03-22,Renovate,88614,False,fixture +2025-03-22,pre-commit-ci,994,False,fixture +2025-03-22,semantic-release-bot,776,False,fixture +2025-03-22,allcontributors,51,False,fixture +2025-03-22,github-actions,86714,False,fixture +2025-03-23,Dependabot,28530,False,fixture +2025-03-23,Renovate,90810,False,fixture +2025-03-23,pre-commit-ci,967,False,fixture +2025-03-23,semantic-release-bot,774,False,fixture +2025-03-23,allcontributors,53,False,fixture +2025-03-23,github-actions,87937,False,fixture +2025-03-24,Dependabot,27018,False,fixture +2025-03-24,Renovate,83748,False,fixture +2025-03-24,pre-commit-ci,959,False,fixture +2025-03-24,semantic-release-bot,767,False,fixture +2025-03-24,allcontributors,55,False,fixture +2025-03-24,github-actions,89755,False,fixture +2025-03-25,Dependabot,27375,False,fixture +2025-03-25,Renovate,90034,False,fixture +2025-03-25,pre-commit-ci,999,False,fixture +2025-03-25,semantic-release-bot,775,False,fixture +2025-03-25,allcontributors,54,False,fixture +2025-03-25,github-actions,90299,False,fixture +2025-03-26,Dependabot,28652,False,fixture +2025-03-26,Renovate,91277,False,fixture +2025-03-26,pre-commit-ci,982,False,fixture +2025-03-26,semantic-release-bot,752,False,fixture +2025-03-26,allcontributors,53,False,fixture +2025-03-26,github-actions,86323,False,fixture +2025-03-27,Dependabot,29726,False,fixture +2025-03-27,Renovate,85304,False,fixture +2025-03-27,pre-commit-ci,1039,False,fixture +2025-03-27,semantic-release-bot,773,False,fixture +2025-03-27,allcontributors,57,False,fixture +2025-03-27,github-actions,88476,False,fixture +2025-03-28,Dependabot,27479,False,fixture +2025-03-28,Renovate,92921,False,fixture +2025-03-28,pre-commit-ci,1070,False,fixture +2025-03-28,semantic-release-bot,785,False,fixture +2025-03-28,allcontributors,58,False,fixture +2025-03-28,github-actions,94000,False,fixture +2025-03-29,Dependabot,29030,False,fixture +2025-03-29,Renovate,90487,False,fixture +2025-03-29,pre-commit-ci,998,False,fixture +2025-03-29,semantic-release-bot,862,False,fixture +2025-03-29,allcontributors,54,False,fixture +2025-03-29,github-actions,94856,False,fixture +2025-03-30,Dependabot,27623,False,fixture +2025-03-30,Renovate,91055,False,fixture +2025-03-30,pre-commit-ci,979,False,fixture +2025-03-30,semantic-release-bot,756,False,fixture +2025-03-30,allcontributors,55,False,fixture +2025-03-30,github-actions,94866,False,fixture +2025-03-31,Dependabot,26560,False,fixture +2025-03-31,Renovate,94947,False,fixture +2025-03-31,pre-commit-ci,1009,False,fixture +2025-03-31,semantic-release-bot,798,False,fixture +2025-03-31,allcontributors,54,False,fixture +2025-03-31,github-actions,96169,False,fixture +2025-04-01,Dependabot,27828,False,fixture +2025-04-01,Renovate,91327,False,fixture +2025-04-01,pre-commit-ci,934,False,fixture +2025-04-01,semantic-release-bot,852,False,fixture +2025-04-01,allcontributors,58,False,fixture +2025-04-01,github-actions,88970,False,fixture +2025-04-02,Dependabot,27295,False,fixture +2025-04-02,Renovate,90609,False,fixture +2025-04-02,pre-commit-ci,973,False,fixture +2025-04-02,semantic-release-bot,734,False,fixture +2025-04-02,allcontributors,55,False,fixture +2025-04-02,github-actions,97580,False,fixture +2025-04-03,Dependabot,28921,False,fixture +2025-04-03,Renovate,91840,False,fixture +2025-04-03,pre-commit-ci,990,False,fixture +2025-04-03,semantic-release-bot,846,False,fixture +2025-04-03,allcontributors,53,False,fixture +2025-04-03,github-actions,88683,False,fixture +2025-04-04,Dependabot,26636,False,fixture +2025-04-04,Renovate,91856,False,fixture +2025-04-04,pre-commit-ci,977,False,fixture +2025-04-04,semantic-release-bot,789,False,fixture +2025-04-04,allcontributors,58,False,fixture +2025-04-04,github-actions,85770,False,fixture +2025-04-05,Dependabot,27189,False,fixture +2025-04-05,Renovate,92735,False,fixture +2025-04-05,pre-commit-ci,1021,False,fixture +2025-04-05,semantic-release-bot,785,False,fixture +2025-04-05,allcontributors,56,False,fixture +2025-04-05,github-actions,89849,False,fixture +2025-04-06,Dependabot,28625,False,fixture +2025-04-06,Renovate,93692,False,fixture +2025-04-06,pre-commit-ci,987,False,fixture +2025-04-06,semantic-release-bot,768,False,fixture +2025-04-06,allcontributors,53,False,fixture +2025-04-06,github-actions,91951,False,fixture +2025-04-07,Dependabot,29691,False,fixture +2025-04-07,Renovate,87866,False,fixture +2025-04-07,pre-commit-ci,1008,False,fixture +2025-04-07,semantic-release-bot,840,False,fixture +2025-04-07,allcontributors,54,False,fixture +2025-04-07,github-actions,91454,False,fixture +2025-04-08,Dependabot,28272,False,fixture +2025-04-08,Renovate,90027,False,fixture +2025-04-08,pre-commit-ci,1109,False,fixture +2025-04-08,semantic-release-bot,786,False,fixture +2025-04-08,allcontributors,60,False,fixture +2025-04-08,github-actions,95226,False,fixture +2025-04-09,Dependabot,30956,False,fixture +2025-04-09,Renovate,99645,False,fixture +2025-04-09,pre-commit-ci,949,False,fixture +2025-04-09,semantic-release-bot,810,False,fixture +2025-04-09,allcontributors,56,False,fixture +2025-04-09,github-actions,98960,False,fixture +2025-04-10,Dependabot,30602,False,fixture +2025-04-10,Renovate,92169,False,fixture +2025-04-10,pre-commit-ci,1019,False,fixture +2025-04-10,semantic-release-bot,816,False,fixture +2025-04-10,allcontributors,54,False,fixture +2025-04-10,github-actions,94899,False,fixture +2025-04-11,Dependabot,29173,False,fixture +2025-04-11,Renovate,91729,False,fixture +2025-04-11,pre-commit-ci,982,False,fixture +2025-04-11,semantic-release-bot,826,False,fixture +2025-04-11,allcontributors,56,False,fixture +2025-04-11,github-actions,91213,False,fixture +2025-04-12,Dependabot,29018,False,fixture +2025-04-12,Renovate,87808,False,fixture +2025-04-12,pre-commit-ci,1069,False,fixture +2025-04-12,semantic-release-bot,796,False,fixture +2025-04-12,allcontributors,54,False,fixture +2025-04-12,github-actions,94732,False,fixture +2025-04-13,Dependabot,31051,False,fixture +2025-04-13,Renovate,95803,False,fixture +2025-04-13,pre-commit-ci,964,False,fixture +2025-04-13,semantic-release-bot,767,False,fixture +2025-04-13,allcontributors,58,False,fixture +2025-04-13,github-actions,97538,False,fixture +2025-04-14,Dependabot,28382,False,fixture +2025-04-14,Renovate,94627,False,fixture +2025-04-14,pre-commit-ci,979,False,fixture +2025-04-14,semantic-release-bot,830,False,fixture +2025-04-14,allcontributors,53,False,fixture +2025-04-14,github-actions,95485,False,fixture +2025-04-15,Dependabot,30314,False,fixture +2025-04-15,Renovate,91294,False,fixture +2025-04-15,pre-commit-ci,1065,False,fixture +2025-04-15,semantic-release-bot,720,False,fixture +2025-04-15,allcontributors,59,False,fixture +2025-04-15,github-actions,93285,False,fixture +2025-04-16,Dependabot,29710,False,fixture +2025-04-16,Renovate,86567,False,fixture +2025-04-16,pre-commit-ci,1115,False,fixture +2025-04-16,semantic-release-bot,811,False,fixture +2025-04-16,allcontributors,61,False,fixture +2025-04-16,github-actions,88895,False,fixture +2025-04-17,Dependabot,27702,False,fixture +2025-04-17,Renovate,97496,False,fixture +2025-04-17,pre-commit-ci,1057,False,fixture +2025-04-17,semantic-release-bot,771,False,fixture +2025-04-17,allcontributors,55,False,fixture +2025-04-17,github-actions,91241,False,fixture +2025-04-18,Dependabot,30139,False,fixture +2025-04-18,Renovate,89837,False,fixture +2025-04-18,pre-commit-ci,1039,False,fixture +2025-04-18,semantic-release-bot,843,False,fixture +2025-04-18,allcontributors,55,False,fixture +2025-04-18,github-actions,92390,False,fixture +2025-04-19,Dependabot,28017,False,fixture +2025-04-19,Renovate,97286,False,fixture +2025-04-19,pre-commit-ci,1016,False,fixture +2025-04-19,semantic-release-bot,844,False,fixture +2025-04-19,allcontributors,59,False,fixture +2025-04-19,github-actions,96434,False,fixture +2025-04-20,Dependabot,29982,False,fixture +2025-04-20,Renovate,95486,False,fixture +2025-04-20,pre-commit-ci,1019,False,fixture +2025-04-20,semantic-release-bot,839,False,fixture +2025-04-20,allcontributors,65,False,fixture +2025-04-20,github-actions,97147,False,fixture +2025-04-21,Dependabot,28993,False,fixture +2025-04-21,Renovate,93194,False,fixture +2025-04-21,pre-commit-ci,1031,False,fixture +2025-04-21,semantic-release-bot,805,False,fixture +2025-04-21,allcontributors,52,False,fixture +2025-04-21,github-actions,91024,False,fixture +2025-04-22,Dependabot,30324,False,fixture +2025-04-22,Renovate,94421,False,fixture +2025-04-22,pre-commit-ci,1060,False,fixture +2025-04-22,semantic-release-bot,789,False,fixture +2025-04-22,allcontributors,58,False,fixture +2025-04-22,github-actions,96164,False,fixture +2025-04-23,Dependabot,28342,False,fixture +2025-04-23,Renovate,86559,False,fixture +2025-04-23,pre-commit-ci,1008,False,fixture +2025-04-23,semantic-release-bot,827,False,fixture +2025-04-23,allcontributors,59,False,fixture +2025-04-23,github-actions,94967,False,fixture +2025-04-24,Dependabot,29801,False,fixture +2025-04-24,Renovate,86208,False,fixture +2025-04-24,pre-commit-ci,972,False,fixture +2025-04-24,semantic-release-bot,832,False,fixture +2025-04-24,allcontributors,55,False,fixture +2025-04-24,github-actions,103284,False,fixture +2025-04-25,Dependabot,29104,False,fixture +2025-04-25,Renovate,87691,False,fixture +2025-04-25,pre-commit-ci,1085,False,fixture +2025-04-25,semantic-release-bot,771,False,fixture +2025-04-25,allcontributors,59,False,fixture +2025-04-25,github-actions,92757,False,fixture +2025-04-26,Dependabot,27072,False,fixture +2025-04-26,Renovate,100254,False,fixture +2025-04-26,pre-commit-ci,1015,False,fixture +2025-04-26,semantic-release-bot,829,False,fixture +2025-04-26,allcontributors,59,False,fixture +2025-04-26,github-actions,92203,False,fixture +2025-04-27,Dependabot,27839,False,fixture +2025-04-27,Renovate,96155,False,fixture +2025-04-27,pre-commit-ci,1126,False,fixture +2025-04-27,semantic-release-bot,854,False,fixture +2025-04-27,allcontributors,57,False,fixture +2025-04-27,github-actions,95122,False,fixture +2025-04-28,Dependabot,30165,False,fixture +2025-04-28,Renovate,95618,False,fixture +2025-04-28,pre-commit-ci,981,False,fixture +2025-04-28,semantic-release-bot,847,False,fixture +2025-04-28,allcontributors,59,False,fixture +2025-04-28,github-actions,89710,False,fixture +2025-04-29,Dependabot,29168,False,fixture +2025-04-29,Renovate,89162,False,fixture +2025-04-29,pre-commit-ci,1092,False,fixture +2025-04-29,semantic-release-bot,838,False,fixture +2025-04-29,allcontributors,58,False,fixture +2025-04-29,github-actions,95328,False,fixture +2025-04-30,Dependabot,29412,False,fixture +2025-04-30,Renovate,94811,False,fixture +2025-04-30,pre-commit-ci,1040,False,fixture +2025-04-30,semantic-release-bot,850,False,fixture +2025-04-30,allcontributors,57,False,fixture +2025-04-30,github-actions,96767,False,fixture +2025-05-01,Dependabot,28851,False,fixture +2025-05-01,Renovate,93667,False,fixture +2025-05-01,pre-commit-ci,1080,False,fixture +2025-05-01,semantic-release-bot,760,False,fixture +2025-05-01,allcontributors,54,False,fixture +2025-05-01,github-actions,101021,False,fixture +2025-05-02,Dependabot,28680,False,fixture +2025-05-02,Renovate,90001,False,fixture +2025-05-02,pre-commit-ci,1030,False,fixture +2025-05-02,semantic-release-bot,797,False,fixture +2025-05-02,allcontributors,62,False,fixture +2025-05-02,github-actions,103476,False,fixture +2025-05-03,Dependabot,29917,False,fixture +2025-05-03,Renovate,102613,False,fixture +2025-05-03,pre-commit-ci,1021,False,fixture +2025-05-03,semantic-release-bot,857,False,fixture +2025-05-03,allcontributors,57,False,fixture +2025-05-03,github-actions,94321,False,fixture +2025-05-04,Dependabot,32021,False,fixture +2025-05-04,Renovate,94291,False,fixture +2025-05-04,pre-commit-ci,1035,False,fixture +2025-05-04,semantic-release-bot,849,False,fixture +2025-05-04,allcontributors,63,False,fixture +2025-05-04,github-actions,90758,False,fixture +2025-05-05,Dependabot,29231,False,fixture +2025-05-05,Renovate,96517,False,fixture +2025-05-05,pre-commit-ci,1018,False,fixture +2025-05-05,semantic-release-bot,821,False,fixture +2025-05-05,allcontributors,56,False,fixture +2025-05-05,github-actions,99231,False,fixture +2025-05-06,Dependabot,31307,False,fixture +2025-05-06,Renovate,95496,False,fixture +2025-05-06,pre-commit-ci,1045,False,fixture +2025-05-06,semantic-release-bot,791,False,fixture +2025-05-06,allcontributors,62,False,fixture +2025-05-06,github-actions,97474,False,fixture +2025-05-07,Dependabot,31398,False,fixture +2025-05-07,Renovate,92189,False,fixture +2025-05-07,pre-commit-ci,1027,False,fixture +2025-05-07,semantic-release-bot,829,False,fixture +2025-05-07,allcontributors,60,False,fixture +2025-05-07,github-actions,101999,False,fixture +2025-05-08,Dependabot,30490,False,fixture +2025-05-08,Renovate,94773,False,fixture +2025-05-08,pre-commit-ci,1032,False,fixture +2025-05-08,semantic-release-bot,805,False,fixture +2025-05-08,allcontributors,61,False,fixture +2025-05-08,github-actions,99401,False,fixture +2025-05-09,Dependabot,29819,False,fixture +2025-05-09,Renovate,97245,False,fixture +2025-05-09,pre-commit-ci,1144,False,fixture +2025-05-09,semantic-release-bot,872,False,fixture +2025-05-09,allcontributors,58,False,fixture +2025-05-09,github-actions,103608,False,fixture +2025-05-10,Dependabot,28398,False,fixture +2025-05-10,Renovate,96031,False,fixture +2025-05-10,pre-commit-ci,1065,False,fixture +2025-05-10,semantic-release-bot,839,False,fixture +2025-05-10,allcontributors,60,False,fixture +2025-05-10,github-actions,99000,False,fixture +2025-05-11,Dependabot,30709,False,fixture +2025-05-11,Renovate,90132,False,fixture +2025-05-11,pre-commit-ci,1145,False,fixture +2025-05-11,semantic-release-bot,825,False,fixture +2025-05-11,allcontributors,60,False,fixture +2025-05-11,github-actions,103593,False,fixture +2025-05-12,Dependabot,29477,False,fixture +2025-05-12,Renovate,93230,False,fixture +2025-05-12,pre-commit-ci,1011,False,fixture +2025-05-12,semantic-release-bot,872,False,fixture +2025-05-12,allcontributors,60,False,fixture +2025-05-12,github-actions,99380,False,fixture +2025-05-13,Dependabot,30944,False,fixture +2025-05-13,Renovate,93905,False,fixture +2025-05-13,pre-commit-ci,987,False,fixture +2025-05-13,semantic-release-bot,783,False,fixture +2025-05-13,allcontributors,60,False,fixture +2025-05-13,github-actions,101588,False,fixture +2025-05-14,Dependabot,29579,False,fixture +2025-05-14,Renovate,99098,False,fixture +2025-05-14,pre-commit-ci,1074,False,fixture +2025-05-14,semantic-release-bot,842,False,fixture +2025-05-14,allcontributors,63,False,fixture +2025-05-14,github-actions,85072,False,fixture +2025-05-15,Dependabot,30438,False,fixture +2025-05-15,Renovate,100392,False,fixture +2025-05-15,pre-commit-ci,1035,False,fixture +2025-05-15,semantic-release-bot,882,False,fixture +2025-05-15,allcontributors,56,False,fixture +2025-05-15,github-actions,103028,False,fixture +2025-05-16,Dependabot,31125,False,fixture +2025-05-16,Renovate,95633,False,fixture +2025-05-16,pre-commit-ci,1132,False,fixture +2025-05-16,semantic-release-bot,877,False,fixture +2025-05-16,allcontributors,62,False,fixture +2025-05-16,github-actions,100669,False,fixture +2025-05-17,Dependabot,31034,False,fixture +2025-05-17,Renovate,103853,False,fixture +2025-05-17,pre-commit-ci,1018,False,fixture +2025-05-17,semantic-release-bot,884,False,fixture +2025-05-17,allcontributors,57,False,fixture +2025-05-17,github-actions,95502,False,fixture +2025-05-18,Dependabot,29195,False,fixture +2025-05-18,Renovate,90898,False,fixture +2025-05-18,pre-commit-ci,1083,False,fixture +2025-05-18,semantic-release-bot,785,False,fixture +2025-05-18,allcontributors,59,False,fixture +2025-05-18,github-actions,101012,False,fixture +2025-05-19,Dependabot,30604,False,fixture +2025-05-19,Renovate,104430,False,fixture +2025-05-19,pre-commit-ci,1149,False,fixture +2025-05-19,semantic-release-bot,889,False,fixture +2025-05-19,allcontributors,61,False,fixture +2025-05-19,github-actions,99760,False,fixture +2025-05-20,Dependabot,30197,False,fixture +2025-05-20,Renovate,90859,False,fixture +2025-05-20,pre-commit-ci,1104,False,fixture +2025-05-20,semantic-release-bot,818,False,fixture +2025-05-20,allcontributors,59,False,fixture +2025-05-20,github-actions,93578,False,fixture +2025-05-21,Dependabot,30528,False,fixture +2025-05-21,Renovate,99467,False,fixture +2025-05-21,pre-commit-ci,1131,False,fixture +2025-05-21,semantic-release-bot,863,False,fixture +2025-05-21,allcontributors,61,False,fixture +2025-05-21,github-actions,96972,False,fixture +2025-05-22,Dependabot,31415,False,fixture +2025-05-22,Renovate,92593,False,fixture +2025-05-22,pre-commit-ci,1132,False,fixture +2025-05-22,semantic-release-bot,845,False,fixture +2025-05-22,allcontributors,65,False,fixture +2025-05-22,github-actions,98780,False,fixture +2025-05-23,Dependabot,31506,False,fixture +2025-05-23,Renovate,98685,False,fixture +2025-05-23,pre-commit-ci,1130,False,fixture +2025-05-23,semantic-release-bot,876,False,fixture +2025-05-23,allcontributors,55,False,fixture +2025-05-23,github-actions,94745,False,fixture +2025-05-24,Dependabot,31283,False,fixture +2025-05-24,Renovate,95212,False,fixture +2025-05-24,pre-commit-ci,1055,False,fixture +2025-05-24,semantic-release-bot,836,False,fixture +2025-05-24,allcontributors,63,False,fixture +2025-05-24,github-actions,100762,False,fixture +2025-05-25,Dependabot,29160,False,fixture +2025-05-25,Renovate,97994,False,fixture +2025-05-25,pre-commit-ci,1095,False,fixture +2025-05-25,semantic-release-bot,829,False,fixture +2025-05-25,allcontributors,66,False,fixture +2025-05-25,github-actions,99494,False,fixture +2025-05-26,Dependabot,30502,False,fixture +2025-05-26,Renovate,100280,False,fixture +2025-05-26,pre-commit-ci,1112,False,fixture +2025-05-26,semantic-release-bot,891,False,fixture +2025-05-26,allcontributors,58,False,fixture +2025-05-26,github-actions,101235,False,fixture +2025-05-27,Dependabot,29186,False,fixture +2025-05-27,Renovate,94436,False,fixture +2025-05-27,pre-commit-ci,1130,False,fixture +2025-05-27,semantic-release-bot,862,False,fixture +2025-05-27,allcontributors,58,False,fixture +2025-05-27,github-actions,102675,False,fixture +2025-05-28,Dependabot,30745,False,fixture +2025-05-28,Renovate,91885,False,fixture +2025-05-28,pre-commit-ci,1060,False,fixture +2025-05-28,semantic-release-bot,895,False,fixture +2025-05-28,allcontributors,60,False,fixture +2025-05-28,github-actions,105733,False,fixture +2025-05-29,Dependabot,31927,False,fixture +2025-05-29,Renovate,93215,False,fixture +2025-05-29,pre-commit-ci,1182,False,fixture +2025-05-29,semantic-release-bot,870,False,fixture +2025-05-29,allcontributors,57,False,fixture +2025-05-29,github-actions,97213,False,fixture +2025-05-30,Dependabot,30944,False,fixture +2025-05-30,Renovate,98932,False,fixture +2025-05-30,pre-commit-ci,1072,False,fixture +2025-05-30,semantic-release-bot,956,False,fixture +2025-05-30,allcontributors,60,False,fixture +2025-05-30,github-actions,105656,False,fixture +2025-05-31,Dependabot,31276,False,fixture +2025-05-31,Renovate,103688,False,fixture +2025-05-31,pre-commit-ci,1117,False,fixture +2025-05-31,semantic-release-bot,836,False,fixture +2025-05-31,allcontributors,64,False,fixture +2025-05-31,github-actions,104206,False,fixture +2025-06-01,Dependabot,31282,False,fixture +2025-06-01,Renovate,99644,False,fixture +2025-06-01,pre-commit-ci,1139,False,fixture +2025-06-01,semantic-release-bot,894,False,fixture +2025-06-01,allcontributors,65,False,fixture +2025-06-01,github-actions,110722,False,fixture +2025-06-02,Dependabot,30209,False,fixture +2025-06-02,Renovate,93127,False,fixture +2025-06-02,pre-commit-ci,1101,False,fixture +2025-06-02,semantic-release-bot,841,False,fixture +2025-06-02,allcontributors,62,False,fixture +2025-06-02,github-actions,101939,False,fixture +2025-06-03,Dependabot,31847,False,fixture +2025-06-03,Renovate,102503,False,fixture +2025-06-03,pre-commit-ci,1045,False,fixture +2025-06-03,semantic-release-bot,861,False,fixture +2025-06-03,allcontributors,66,False,fixture +2025-06-03,github-actions,98678,False,fixture +2025-06-04,Dependabot,29560,False,fixture +2025-06-04,Renovate,95898,False,fixture +2025-06-04,pre-commit-ci,1224,False,fixture +2025-06-04,semantic-release-bot,850,False,fixture +2025-06-04,allcontributors,59,False,fixture +2025-06-04,github-actions,97674,False,fixture +2025-06-05,Dependabot,32516,False,fixture +2025-06-05,Renovate,93002,False,fixture +2025-06-05,pre-commit-ci,1066,False,fixture +2025-06-05,semantic-release-bot,863,False,fixture +2025-06-05,allcontributors,64,False,fixture +2025-06-05,github-actions,101587,False,fixture +2025-06-06,Dependabot,29053,False,fixture +2025-06-06,Renovate,111048,False,fixture +2025-06-06,pre-commit-ci,1064,False,fixture +2025-06-06,semantic-release-bot,871,False,fixture +2025-06-06,allcontributors,62,False,fixture +2025-06-06,github-actions,102833,False,fixture +2025-06-07,Dependabot,29328,False,fixture +2025-06-07,Renovate,96799,False,fixture +2025-06-07,pre-commit-ci,1105,False,fixture +2025-06-07,semantic-release-bot,883,False,fixture +2025-06-07,allcontributors,63,False,fixture +2025-06-07,github-actions,103322,False,fixture +2025-06-08,Dependabot,32469,False,fixture +2025-06-08,Renovate,96054,False,fixture +2025-06-08,pre-commit-ci,1154,False,fixture +2025-06-08,semantic-release-bot,815,False,fixture +2025-06-08,allcontributors,65,False,fixture +2025-06-08,github-actions,103700,False,fixture +2025-06-09,Dependabot,31947,False,fixture +2025-06-09,Renovate,103272,False,fixture +2025-06-09,pre-commit-ci,1153,False,fixture +2025-06-09,semantic-release-bot,917,False,fixture +2025-06-09,allcontributors,62,False,fixture +2025-06-09,github-actions,104540,False,fixture +2025-06-10,Dependabot,32257,False,fixture +2025-06-10,Renovate,93364,False,fixture +2025-06-10,pre-commit-ci,1042,False,fixture +2025-06-10,semantic-release-bot,859,False,fixture +2025-06-10,allcontributors,61,False,fixture +2025-06-10,github-actions,102616,False,fixture +2025-06-11,Dependabot,32056,False,fixture +2025-06-11,Renovate,96108,False,fixture +2025-06-11,pre-commit-ci,1119,False,fixture +2025-06-11,semantic-release-bot,892,False,fixture +2025-06-11,allcontributors,64,False,fixture +2025-06-11,github-actions,100497,False,fixture +2025-06-12,Dependabot,32437,False,fixture +2025-06-12,Renovate,100519,False,fixture +2025-06-12,pre-commit-ci,1125,False,fixture +2025-06-12,semantic-release-bot,932,False,fixture +2025-06-12,allcontributors,61,False,fixture +2025-06-12,github-actions,94483,False,fixture +2025-06-13,Dependabot,31422,False,fixture +2025-06-13,Renovate,102948,False,fixture +2025-06-13,pre-commit-ci,1155,False,fixture +2025-06-13,semantic-release-bot,855,False,fixture +2025-06-13,allcontributors,64,False,fixture +2025-06-13,github-actions,105851,False,fixture +2025-06-14,Dependabot,31465,False,fixture +2025-06-14,Renovate,102156,False,fixture +2025-06-14,pre-commit-ci,1225,False,fixture +2025-06-14,semantic-release-bot,881,False,fixture +2025-06-14,allcontributors,60,False,fixture +2025-06-14,github-actions,102132,False,fixture +2025-06-15,Dependabot,33231,False,fixture +2025-06-15,Renovate,102506,False,fixture +2025-06-15,pre-commit-ci,1097,False,fixture +2025-06-15,semantic-release-bot,941,False,fixture +2025-06-15,allcontributors,64,False,fixture +2025-06-15,github-actions,106791,False,fixture +2025-06-16,Dependabot,31889,False,fixture +2025-06-16,Renovate,89478,False,fixture +2025-06-16,pre-commit-ci,1103,False,fixture +2025-06-16,semantic-release-bot,882,False,fixture +2025-06-16,allcontributors,60,False,fixture +2025-06-16,github-actions,94192,False,fixture +2025-06-17,Dependabot,32616,False,fixture +2025-06-17,Renovate,102248,False,fixture +2025-06-17,pre-commit-ci,1185,False,fixture +2025-06-17,semantic-release-bot,923,False,fixture +2025-06-17,allcontributors,64,False,fixture +2025-06-17,github-actions,101166,False,fixture +2025-06-18,Dependabot,31943,False,fixture +2025-06-18,Renovate,101283,False,fixture +2025-06-18,pre-commit-ci,1173,False,fixture +2025-06-18,semantic-release-bot,904,False,fixture +2025-06-18,allcontributors,65,False,fixture +2025-06-18,github-actions,99708,False,fixture +2025-06-19,Dependabot,33700,False,fixture +2025-06-19,Renovate,104415,False,fixture +2025-06-19,pre-commit-ci,1182,False,fixture +2025-06-19,semantic-release-bot,866,False,fixture +2025-06-19,allcontributors,58,False,fixture +2025-06-19,github-actions,105477,False,fixture +2025-06-20,Dependabot,32311,False,fixture +2025-06-20,Renovate,105262,False,fixture +2025-06-20,pre-commit-ci,1167,False,fixture +2025-06-20,semantic-release-bot,871,False,fixture +2025-06-20,allcontributors,63,False,fixture +2025-06-20,github-actions,103145,False,fixture +2025-06-21,Dependabot,32385,False,fixture +2025-06-21,Renovate,106527,False,fixture +2025-06-21,pre-commit-ci,1115,False,fixture +2025-06-21,semantic-release-bot,892,False,fixture +2025-06-21,allcontributors,64,False,fixture +2025-06-21,github-actions,105805,False,fixture +2025-06-22,Dependabot,32615,False,fixture +2025-06-22,Renovate,99706,False,fixture +2025-06-22,pre-commit-ci,1110,False,fixture +2025-06-22,semantic-release-bot,946,False,fixture +2025-06-22,allcontributors,63,False,fixture +2025-06-22,github-actions,101036,False,fixture +2025-06-23,Dependabot,32094,False,fixture +2025-06-23,Renovate,107150,False,fixture +2025-06-23,pre-commit-ci,1189,False,fixture +2025-06-23,semantic-release-bot,858,False,fixture +2025-06-23,allcontributors,63,False,fixture +2025-06-23,github-actions,108946,False,fixture +2025-06-24,Dependabot,31799,False,fixture +2025-06-24,Renovate,94327,False,fixture +2025-06-24,pre-commit-ci,1139,False,fixture +2025-06-24,semantic-release-bot,934,False,fixture +2025-06-24,allcontributors,64,False,fixture +2025-06-24,github-actions,110699,False,fixture +2025-06-25,Dependabot,30139,False,fixture +2025-06-25,Renovate,101408,False,fixture +2025-06-25,pre-commit-ci,1223,False,fixture +2025-06-25,semantic-release-bot,857,False,fixture +2025-06-25,allcontributors,67,False,fixture +2025-06-25,github-actions,103420,False,fixture +2025-06-26,Dependabot,34065,False,fixture +2025-06-26,Renovate,107341,False,fixture +2025-06-26,pre-commit-ci,1181,False,fixture +2025-06-26,semantic-release-bot,908,False,fixture +2025-06-26,allcontributors,62,False,fixture +2025-06-26,github-actions,100342,False,fixture +2025-06-27,Dependabot,32610,False,fixture +2025-06-27,Renovate,100404,False,fixture +2025-06-27,pre-commit-ci,1159,False,fixture +2025-06-27,semantic-release-bot,866,False,fixture +2025-06-27,allcontributors,68,False,fixture +2025-06-27,github-actions,106714,False,fixture +2025-06-28,Dependabot,31707,False,fixture +2025-06-28,Renovate,100266,False,fixture +2025-06-28,pre-commit-ci,1143,False,fixture +2025-06-28,semantic-release-bot,915,False,fixture +2025-06-28,allcontributors,65,False,fixture +2025-06-28,github-actions,103232,False,fixture +2025-06-29,Dependabot,32871,False,fixture +2025-06-29,Renovate,110562,False,fixture +2025-06-29,pre-commit-ci,1120,False,fixture +2025-06-29,semantic-release-bot,940,False,fixture +2025-06-29,allcontributors,61,False,fixture +2025-06-29,github-actions,105622,False,fixture +2025-06-30,Dependabot,31368,False,fixture +2025-06-30,Renovate,100812,False,fixture +2025-06-30,pre-commit-ci,1215,False,fixture +2025-06-30,semantic-release-bot,927,False,fixture +2025-06-30,allcontributors,64,False,fixture +2025-06-30,github-actions,106266,False,fixture +2025-07-01,Dependabot,35915,False,fixture +2025-07-01,Renovate,104179,False,fixture +2025-07-01,pre-commit-ci,1159,False,fixture +2025-07-01,semantic-release-bot,924,False,fixture +2025-07-01,allcontributors,67,False,fixture +2025-07-01,github-actions,109149,False,fixture +2025-07-02,Dependabot,34228,False,fixture +2025-07-02,Renovate,98961,False,fixture +2025-07-02,pre-commit-ci,1097,False,fixture +2025-07-02,semantic-release-bot,913,False,fixture +2025-07-02,allcontributors,63,False,fixture +2025-07-02,github-actions,100672,False,fixture +2025-07-03,Dependabot,33519,False,fixture +2025-07-03,Renovate,101907,False,fixture +2025-07-03,pre-commit-ci,1100,False,fixture +2025-07-03,semantic-release-bot,914,False,fixture +2025-07-03,allcontributors,65,False,fixture +2025-07-03,github-actions,99247,False,fixture +2025-07-04,Dependabot,34294,False,fixture +2025-07-04,Renovate,107398,False,fixture +2025-07-04,pre-commit-ci,1183,False,fixture +2025-07-04,semantic-release-bot,865,False,fixture +2025-07-04,allcontributors,63,False,fixture +2025-07-04,github-actions,105085,False,fixture +2025-07-05,Dependabot,32145,False,fixture +2025-07-05,Renovate,106906,False,fixture +2025-07-05,pre-commit-ci,1194,False,fixture +2025-07-05,semantic-release-bot,916,False,fixture +2025-07-05,allcontributors,73,False,fixture +2025-07-05,github-actions,113311,False,fixture +2025-07-06,Dependabot,29936,False,fixture +2025-07-06,Renovate,102953,False,fixture +2025-07-06,pre-commit-ci,1113,False,fixture +2025-07-06,semantic-release-bot,928,False,fixture +2025-07-06,allcontributors,65,False,fixture +2025-07-06,github-actions,106153,False,fixture +2025-07-07,Dependabot,32368,False,fixture +2025-07-07,Renovate,103895,False,fixture +2025-07-07,pre-commit-ci,1211,False,fixture +2025-07-07,semantic-release-bot,931,False,fixture +2025-07-07,allcontributors,68,False,fixture +2025-07-07,github-actions,102914,False,fixture +2025-07-08,Dependabot,33500,False,fixture +2025-07-08,Renovate,107651,False,fixture +2025-07-08,pre-commit-ci,1161,False,fixture +2025-07-08,semantic-release-bot,938,False,fixture +2025-07-08,allcontributors,64,False,fixture +2025-07-08,github-actions,111270,False,fixture +2025-07-09,Dependabot,33489,False,fixture +2025-07-09,Renovate,95436,False,fixture +2025-07-09,pre-commit-ci,1205,False,fixture +2025-07-09,semantic-release-bot,971,False,fixture +2025-07-09,allcontributors,67,False,fixture +2025-07-09,github-actions,118363,False,fixture +2025-07-10,Dependabot,34018,False,fixture +2025-07-10,Renovate,100601,False,fixture +2025-07-10,pre-commit-ci,1184,False,fixture +2025-07-10,semantic-release-bot,891,False,fixture +2025-07-10,allcontributors,69,False,fixture +2025-07-10,github-actions,109946,False,fixture +2025-07-11,Dependabot,35704,False,fixture +2025-07-11,Renovate,106704,False,fixture +2025-07-11,pre-commit-ci,1268,False,fixture +2025-07-11,semantic-release-bot,916,False,fixture +2025-07-11,allcontributors,66,False,fixture +2025-07-11,github-actions,109951,False,fixture +2025-07-12,Dependabot,32414,False,fixture +2025-07-12,Renovate,97289,False,fixture +2025-07-12,pre-commit-ci,1173,False,fixture +2025-07-12,semantic-release-bot,887,False,fixture +2025-07-12,allcontributors,64,False,fixture +2025-07-12,github-actions,113659,False,fixture +2025-07-13,Dependabot,32671,False,fixture +2025-07-13,Renovate,107789,False,fixture +2025-07-13,pre-commit-ci,1135,False,fixture +2025-07-13,semantic-release-bot,935,False,fixture +2025-07-13,allcontributors,64,False,fixture +2025-07-13,github-actions,102852,False,fixture +2025-07-14,Dependabot,32554,False,fixture +2025-07-14,Renovate,110209,False,fixture +2025-07-14,pre-commit-ci,1192,False,fixture +2025-07-14,semantic-release-bot,849,False,fixture +2025-07-14,allcontributors,65,False,fixture +2025-07-14,github-actions,103952,False,fixture +2025-07-15,Dependabot,34566,False,fixture +2025-07-15,Renovate,106782,False,fixture +2025-07-15,pre-commit-ci,1138,False,fixture +2025-07-15,semantic-release-bot,931,False,fixture +2025-07-15,allcontributors,63,False,fixture +2025-07-15,github-actions,107652,False,fixture +2025-07-16,Dependabot,31896,False,fixture +2025-07-16,Renovate,108748,False,fixture +2025-07-16,pre-commit-ci,1163,False,fixture +2025-07-16,semantic-release-bot,987,False,fixture +2025-07-16,allcontributors,63,False,fixture +2025-07-16,github-actions,116085,False,fixture +2025-07-17,Dependabot,35199,False,fixture +2025-07-17,Renovate,104491,False,fixture +2025-07-17,pre-commit-ci,1264,False,fixture +2025-07-17,semantic-release-bot,971,False,fixture +2025-07-17,allcontributors,67,False,fixture +2025-07-17,github-actions,108270,False,fixture +2025-07-18,Dependabot,33169,False,fixture +2025-07-18,Renovate,100009,False,fixture +2025-07-18,pre-commit-ci,1178,False,fixture +2025-07-18,semantic-release-bot,955,False,fixture +2025-07-18,allcontributors,72,False,fixture +2025-07-18,github-actions,110029,False,fixture +2025-07-19,Dependabot,32028,False,fixture +2025-07-19,Renovate,112063,False,fixture +2025-07-19,pre-commit-ci,1234,False,fixture +2025-07-19,semantic-release-bot,989,False,fixture +2025-07-19,allcontributors,66,False,fixture +2025-07-19,github-actions,114730,False,fixture +2025-07-20,Dependabot,33408,False,fixture +2025-07-20,Renovate,111004,False,fixture +2025-07-20,pre-commit-ci,1186,False,fixture +2025-07-20,semantic-release-bot,920,False,fixture +2025-07-20,allcontributors,66,False,fixture +2025-07-20,github-actions,113517,False,fixture +2025-07-21,Dependabot,32547,False,fixture +2025-07-21,Renovate,109748,False,fixture +2025-07-21,pre-commit-ci,1206,False,fixture +2025-07-21,semantic-release-bot,955,False,fixture +2025-07-21,allcontributors,66,False,fixture +2025-07-21,github-actions,105063,False,fixture +2025-07-22,Dependabot,33865,False,fixture +2025-07-22,Renovate,104829,False,fixture +2025-07-22,pre-commit-ci,1226,False,fixture +2025-07-22,semantic-release-bot,938,False,fixture +2025-07-22,allcontributors,73,False,fixture +2025-07-22,github-actions,111616,False,fixture +2025-07-23,Dependabot,32822,False,fixture +2025-07-23,Renovate,111571,False,fixture +2025-07-23,pre-commit-ci,1184,False,fixture +2025-07-23,semantic-release-bot,955,False,fixture +2025-07-23,allcontributors,72,False,fixture +2025-07-23,github-actions,106445,False,fixture +2025-07-24,Dependabot,32054,False,fixture +2025-07-24,Renovate,107844,False,fixture +2025-07-24,pre-commit-ci,1153,False,fixture +2025-07-24,semantic-release-bot,979,False,fixture +2025-07-24,allcontributors,65,False,fixture +2025-07-24,github-actions,107540,False,fixture +2025-07-25,Dependabot,35857,False,fixture +2025-07-25,Renovate,111910,False,fixture +2025-07-25,pre-commit-ci,1192,False,fixture +2025-07-25,semantic-release-bot,917,False,fixture +2025-07-25,allcontributors,67,False,fixture +2025-07-25,github-actions,105162,False,fixture +2025-07-26,Dependabot,34351,False,fixture +2025-07-26,Renovate,109081,False,fixture +2025-07-26,pre-commit-ci,1276,False,fixture +2025-07-26,semantic-release-bot,965,False,fixture +2025-07-26,allcontributors,67,False,fixture +2025-07-26,github-actions,118104,False,fixture +2025-07-27,Dependabot,35216,False,fixture +2025-07-27,Renovate,106358,False,fixture +2025-07-27,pre-commit-ci,1191,False,fixture +2025-07-27,semantic-release-bot,967,False,fixture +2025-07-27,allcontributors,65,False,fixture +2025-07-27,github-actions,114673,False,fixture +2025-07-28,Dependabot,33433,False,fixture +2025-07-28,Renovate,110748,False,fixture +2025-07-28,pre-commit-ci,1191,False,fixture +2025-07-28,semantic-release-bot,956,False,fixture +2025-07-28,allcontributors,65,False,fixture +2025-07-28,github-actions,106951,False,fixture +2025-07-29,Dependabot,35543,False,fixture +2025-07-29,Renovate,111181,False,fixture +2025-07-29,pre-commit-ci,1216,False,fixture +2025-07-29,semantic-release-bot,927,False,fixture +2025-07-29,allcontributors,65,False,fixture +2025-07-29,github-actions,106828,False,fixture +2025-07-30,Dependabot,33485,False,fixture +2025-07-30,Renovate,115167,False,fixture +2025-07-30,pre-commit-ci,1251,False,fixture +2025-07-30,semantic-release-bot,957,False,fixture +2025-07-30,allcontributors,67,False,fixture +2025-07-30,github-actions,114465,False,fixture diff --git a/tests/fixtures/daily_ai_commits_small.csv b/tests/fixtures/daily_ai_commits_small.csv new file mode 100644 index 0000000..94a888a --- /dev/null +++ b/tests/fixtures/daily_ai_commits_small.csv @@ -0,0 +1,64 @@ +date,tool,commits,view +2026-03-15,tool_a,100,all +2026-03-16,tool_a,100,all +2026-03-17,tool_a,100,all +2026-03-18,tool_a,100,all +2026-03-19,tool_a,100,all +2026-03-20,tool_a,100,all +2026-03-21,tool_a,100,all +2026-03-22,tool_a,100,all +2026-03-23,tool_a,100,all +2026-03-24,tool_a,100,all +2026-03-25,tool_a,100,all +2026-03-26,tool_a,100,all +2026-03-27,tool_a,100,all +2026-03-28,tool_a,100,all +2026-03-29,tool_a,20,all +2026-03-30,tool_a,20,all +2026-03-31,tool_a,20,all +2026-04-01,tool_a,20,all +2026-04-02,tool_a,20,all +2026-04-03,tool_a,20,all +2026-04-04,tool_a,20,all +2026-03-15,tool_b,50,all +2026-03-16,tool_b,50,all +2026-03-17,tool_b,50,all +2026-03-18,tool_b,50,all +2026-03-19,tool_b,50,all +2026-03-20,tool_b,50,all +2026-03-21,tool_b,50,all +2026-03-22,tool_b,50,all +2026-03-23,tool_b,50,all +2026-03-24,tool_b,50,all +2026-03-25,tool_b,50,all +2026-03-26,tool_b,50,all +2026-03-27,tool_b,50,all +2026-03-28,tool_b,200,all +2026-03-29,tool_b,200,all +2026-03-30,tool_b,200,all +2026-03-31,tool_b,200,all +2026-04-01,tool_b,200,all +2026-04-02,tool_b,200,all +2026-04-03,tool_b,200,all +2026-04-04,tool_b,200,all +2026-03-15,tool_c,40,all +2026-03-16,tool_c,40,all +2026-03-17,tool_c,40,all +2026-03-18,tool_c,40,all +2026-03-19,tool_c,40,all +2026-03-20,tool_c,40,all +2026-03-21,tool_c,40,all +2026-03-22,tool_c,40,all +2026-03-23,tool_c,40,all +2026-03-24,tool_c,40,all +2026-03-25,tool_c,40,all +2026-03-26,tool_c,40,all +2026-03-27,tool_c,40,all +2026-03-28,tool_c,40,all +2026-03-29,tool_c,40,all +2026-03-30,tool_c,40,all +2026-03-31,tool_c,40,all +2026-04-01,tool_c,40,all +2026-04-02,tool_c,40,all +2026-04-03,tool_c,40,all +2026-04-04,tool_c,40,all diff --git a/tests/fixtures/intervention_small.csv b/tests/fixtures/intervention_small.csv new file mode 100644 index 0000000..ac258df --- /dev/null +++ b/tests/fixtures/intervention_small.csv @@ -0,0 +1,901 @@ +date,tool,view,commits,incomplete,run_id,fetched_at +2025-02-01,Claude Code,all,49,,fixture,fixture +2025-02-01,Cursor,all,29,,fixture,fixture +2025-02-01,Codex,all,19,,fixture,fixture +2025-02-01,Aider,all,17,,fixture,fixture +2025-02-01,Devin,all,4,,fixture,fixture +2025-02-02,Claude Code,all,46,,fixture,fixture +2025-02-02,Cursor,all,31,,fixture,fixture +2025-02-02,Codex,all,19,,fixture,fixture +2025-02-02,Aider,all,14,,fixture,fixture +2025-02-02,Devin,all,5,,fixture,fixture +2025-02-03,Claude Code,all,51,,fixture,fixture +2025-02-03,Cursor,all,34,,fixture,fixture +2025-02-03,Codex,all,22,,fixture,fixture +2025-02-03,Aider,all,16,,fixture,fixture +2025-02-03,Devin,all,3,,fixture,fixture +2025-02-04,Claude Code,all,48,,fixture,fixture +2025-02-04,Cursor,all,32,,fixture,fixture +2025-02-04,Codex,all,25,,fixture,fixture +2025-02-04,Aider,all,16,,fixture,fixture +2025-02-04,Devin,all,6,,fixture,fixture +2025-02-05,Claude Code,all,53,,fixture,fixture +2025-02-05,Cursor,all,27,,fixture,fixture +2025-02-05,Codex,all,21,,fixture,fixture +2025-02-05,Aider,all,18,,fixture,fixture +2025-02-05,Devin,all,9,,fixture,fixture +2025-02-06,Claude Code,all,51,,fixture,fixture +2025-02-06,Cursor,all,33,,fixture,fixture +2025-02-06,Codex,all,23,,fixture,fixture +2025-02-06,Aider,all,19,,fixture,fixture +2025-02-06,Devin,all,4,,fixture,fixture +2025-02-07,Claude Code,all,54,,fixture,fixture +2025-02-07,Cursor,all,28,,fixture,fixture +2025-02-07,Codex,all,15,,fixture,fixture +2025-02-07,Aider,all,16,,fixture,fixture +2025-02-07,Devin,all,5,,fixture,fixture +2025-02-08,Claude Code,all,56,,fixture,fixture +2025-02-08,Cursor,all,35,,fixture,fixture +2025-02-08,Codex,all,19,,fixture,fixture +2025-02-08,Aider,all,21,,fixture,fixture +2025-02-08,Devin,all,5,,fixture,fixture +2025-02-09,Claude Code,all,53,,fixture,fixture +2025-02-09,Cursor,all,33,,fixture,fixture +2025-02-09,Codex,all,24,,fixture,fixture +2025-02-09,Aider,all,21,,fixture,fixture +2025-02-09,Devin,all,10,,fixture,fixture +2025-02-10,Claude Code,all,55,,fixture,fixture +2025-02-10,Cursor,all,36,,fixture,fixture +2025-02-10,Codex,all,25,,fixture,fixture +2025-02-10,Aider,all,17,,fixture,fixture +2025-02-10,Devin,all,7,,fixture,fixture +2025-02-11,Claude Code,all,53,,fixture,fixture +2025-02-11,Cursor,all,36,,fixture,fixture +2025-02-11,Codex,all,24,,fixture,fixture +2025-02-11,Aider,all,27,,fixture,fixture +2025-02-11,Devin,all,7,,fixture,fixture +2025-02-12,Claude Code,all,52,,fixture,fixture +2025-02-12,Cursor,all,37,,fixture,fixture +2025-02-12,Codex,all,29,,fixture,fixture +2025-02-12,Aider,all,22,,fixture,fixture +2025-02-12,Devin,all,13,,fixture,fixture +2025-02-13,Claude Code,all,60,,fixture,fixture +2025-02-13,Cursor,all,35,,fixture,fixture +2025-02-13,Codex,all,21,,fixture,fixture +2025-02-13,Aider,all,19,,fixture,fixture +2025-02-13,Devin,all,13,,fixture,fixture +2025-02-14,Claude Code,all,52,,fixture,fixture +2025-02-14,Cursor,all,36,,fixture,fixture +2025-02-14,Codex,all,27,,fixture,fixture +2025-02-14,Aider,all,20,,fixture,fixture +2025-02-14,Devin,all,13,,fixture,fixture +2025-02-15,Claude Code,all,58,,fixture,fixture +2025-02-15,Cursor,all,43,,fixture,fixture +2025-02-15,Codex,all,28,,fixture,fixture +2025-02-15,Aider,all,20,,fixture,fixture +2025-02-15,Devin,all,10,,fixture,fixture +2025-02-16,Claude Code,all,55,,fixture,fixture +2025-02-16,Cursor,all,40,,fixture,fixture +2025-02-16,Codex,all,25,,fixture,fixture +2025-02-16,Aider,all,22,,fixture,fixture +2025-02-16,Devin,all,14,,fixture,fixture +2025-02-17,Claude Code,all,55,,fixture,fixture +2025-02-17,Cursor,all,37,,fixture,fixture +2025-02-17,Codex,all,22,,fixture,fixture +2025-02-17,Aider,all,19,,fixture,fixture +2025-02-17,Devin,all,11,,fixture,fixture +2025-02-18,Claude Code,all,59,,fixture,fixture +2025-02-18,Cursor,all,42,,fixture,fixture +2025-02-18,Codex,all,28,,fixture,fixture +2025-02-18,Aider,all,24,,fixture,fixture +2025-02-18,Devin,all,14,,fixture,fixture +2025-02-19,Claude Code,all,62,,fixture,fixture +2025-02-19,Cursor,all,41,,fixture,fixture +2025-02-19,Codex,all,29,,fixture,fixture +2025-02-19,Aider,all,20,,fixture,fixture +2025-02-19,Devin,all,16,,fixture,fixture +2025-02-20,Claude Code,all,60,,fixture,fixture +2025-02-20,Cursor,all,43,,fixture,fixture +2025-02-20,Codex,all,29,,fixture,fixture +2025-02-20,Aider,all,30,,fixture,fixture +2025-02-20,Devin,all,13,,fixture,fixture +2025-02-21,Claude Code,all,64,,fixture,fixture +2025-02-21,Cursor,all,40,,fixture,fixture +2025-02-21,Codex,all,28,,fixture,fixture +2025-02-21,Aider,all,21,,fixture,fixture +2025-02-21,Devin,all,14,,fixture,fixture +2025-02-22,Claude Code,all,64,,fixture,fixture +2025-02-22,Cursor,all,42,,fixture,fixture +2025-02-22,Codex,all,32,,fixture,fixture +2025-02-22,Aider,all,18,,fixture,fixture +2025-02-22,Devin,all,17,,fixture,fixture +2025-02-23,Claude Code,all,62,,fixture,fixture +2025-02-23,Cursor,all,39,,fixture,fixture +2025-02-23,Codex,all,29,,fixture,fixture +2025-02-23,Aider,all,25,,fixture,fixture +2025-02-23,Devin,all,21,,fixture,fixture +2025-02-24,Claude Code,all,58,,fixture,fixture +2025-02-24,Cursor,all,40,,fixture,fixture +2025-02-24,Codex,all,35,,fixture,fixture +2025-02-24,Aider,all,25,,fixture,fixture +2025-02-24,Devin,all,15,,fixture,fixture +2025-02-25,Claude Code,all,62,,fixture,fixture +2025-02-25,Cursor,all,38,,fixture,fixture +2025-02-25,Codex,all,32,,fixture,fixture +2025-02-25,Aider,all,23,,fixture,fixture +2025-02-25,Devin,all,19,,fixture,fixture +2025-02-26,Claude Code,all,62,,fixture,fixture +2025-02-26,Cursor,all,49,,fixture,fixture +2025-02-26,Codex,all,33,,fixture,fixture +2025-02-26,Aider,all,31,,fixture,fixture +2025-02-26,Devin,all,13,,fixture,fixture +2025-02-27,Claude Code,all,62,,fixture,fixture +2025-02-27,Cursor,all,43,,fixture,fixture +2025-02-27,Codex,all,38,,fixture,fixture +2025-02-27,Aider,all,22,,fixture,fixture +2025-02-27,Devin,all,20,,fixture,fixture +2025-02-28,Claude Code,all,65,,fixture,fixture +2025-02-28,Cursor,all,48,,fixture,fixture +2025-02-28,Codex,all,35,,fixture,fixture +2025-02-28,Aider,all,28,,fixture,fixture +2025-02-28,Devin,all,16,,fixture,fixture +2025-03-01,Claude Code,all,60,,fixture,fixture +2025-03-01,Cursor,all,44,,fixture,fixture +2025-03-01,Codex,all,33,,fixture,fixture +2025-03-01,Aider,all,35,,fixture,fixture +2025-03-01,Devin,all,17,,fixture,fixture +2025-03-02,Claude Code,all,65,,fixture,fixture +2025-03-02,Cursor,all,39,,fixture,fixture +2025-03-02,Codex,all,33,,fixture,fixture +2025-03-02,Aider,all,30,,fixture,fixture +2025-03-02,Devin,all,21,,fixture,fixture +2025-03-03,Claude Code,all,69,,fixture,fixture +2025-03-03,Cursor,all,44,,fixture,fixture +2025-03-03,Codex,all,31,,fixture,fixture +2025-03-03,Aider,all,31,,fixture,fixture +2025-03-03,Devin,all,21,,fixture,fixture +2025-03-04,Claude Code,all,66,,fixture,fixture +2025-03-04,Cursor,all,43,,fixture,fixture +2025-03-04,Codex,all,38,,fixture,fixture +2025-03-04,Aider,all,30,,fixture,fixture +2025-03-04,Devin,all,22,,fixture,fixture +2025-03-05,Claude Code,all,69,,fixture,fixture +2025-03-05,Cursor,all,47,,fixture,fixture +2025-03-05,Codex,all,36,,fixture,fixture +2025-03-05,Aider,all,37,,fixture,fixture +2025-03-05,Devin,all,21,,fixture,fixture +2025-03-06,Claude Code,all,65,,fixture,fixture +2025-03-06,Cursor,all,46,,fixture,fixture +2025-03-06,Codex,all,40,,fixture,fixture +2025-03-06,Aider,all,31,,fixture,fixture +2025-03-06,Devin,all,23,,fixture,fixture +2025-03-07,Claude Code,all,70,,fixture,fixture +2025-03-07,Cursor,all,45,,fixture,fixture +2025-03-07,Codex,all,31,,fixture,fixture +2025-03-07,Aider,all,32,,fixture,fixture +2025-03-07,Devin,all,22,,fixture,fixture +2025-03-08,Claude Code,all,65,,fixture,fixture +2025-03-08,Cursor,all,50,,fixture,fixture +2025-03-08,Codex,all,39,,fixture,fixture +2025-03-08,Aider,all,29,,fixture,fixture +2025-03-08,Devin,all,24,,fixture,fixture +2025-03-09,Claude Code,all,67,,fixture,fixture +2025-03-09,Cursor,all,43,,fixture,fixture +2025-03-09,Codex,all,39,,fixture,fixture +2025-03-09,Aider,all,32,,fixture,fixture +2025-03-09,Devin,all,20,,fixture,fixture +2025-03-10,Claude Code,all,70,,fixture,fixture +2025-03-10,Cursor,all,49,,fixture,fixture +2025-03-10,Codex,all,36,,fixture,fixture +2025-03-10,Aider,all,34,,fixture,fixture +2025-03-10,Devin,all,26,,fixture,fixture +2025-03-11,Claude Code,all,66,,fixture,fixture +2025-03-11,Cursor,all,50,,fixture,fixture +2025-03-11,Codex,all,39,,fixture,fixture +2025-03-11,Aider,all,40,,fixture,fixture +2025-03-11,Devin,all,18,,fixture,fixture +2025-03-12,Claude Code,all,71,,fixture,fixture +2025-03-12,Cursor,all,48,,fixture,fixture +2025-03-12,Codex,all,39,,fixture,fixture +2025-03-12,Aider,all,40,,fixture,fixture +2025-03-12,Devin,all,24,,fixture,fixture +2025-03-13,Claude Code,all,76,,fixture,fixture +2025-03-13,Cursor,all,48,,fixture,fixture +2025-03-13,Codex,all,41,,fixture,fixture +2025-03-13,Aider,all,33,,fixture,fixture +2025-03-13,Devin,all,22,,fixture,fixture +2025-03-14,Claude Code,all,70,,fixture,fixture +2025-03-14,Cursor,all,49,,fixture,fixture +2025-03-14,Codex,all,41,,fixture,fixture +2025-03-14,Aider,all,29,,fixture,fixture +2025-03-14,Devin,all,31,,fixture,fixture +2025-03-15,Claude Code,all,70,,fixture,fixture +2025-03-15,Cursor,all,56,,fixture,fixture +2025-03-15,Codex,all,37,,fixture,fixture +2025-03-15,Aider,all,36,,fixture,fixture +2025-03-15,Devin,all,35,,fixture,fixture +2025-03-16,Claude Code,all,68,,fixture,fixture +2025-03-16,Cursor,all,47,,fixture,fixture +2025-03-16,Codex,all,39,,fixture,fixture +2025-03-16,Aider,all,37,,fixture,fixture +2025-03-16,Devin,all,28,,fixture,fixture +2025-03-17,Claude Code,all,75,,fixture,fixture +2025-03-17,Cursor,all,51,,fixture,fixture +2025-03-17,Codex,all,37,,fixture,fixture +2025-03-17,Aider,all,35,,fixture,fixture +2025-03-17,Devin,all,30,,fixture,fixture +2025-03-18,Claude Code,all,73,,fixture,fixture +2025-03-18,Cursor,all,46,,fixture,fixture +2025-03-18,Codex,all,42,,fixture,fixture +2025-03-18,Aider,all,41,,fixture,fixture +2025-03-18,Devin,all,33,,fixture,fixture +2025-03-19,Claude Code,all,74,,fixture,fixture +2025-03-19,Cursor,all,53,,fixture,fixture +2025-03-19,Codex,all,39,,fixture,fixture +2025-03-19,Aider,all,35,,fixture,fixture +2025-03-19,Devin,all,28,,fixture,fixture +2025-03-20,Claude Code,all,75,,fixture,fixture +2025-03-20,Cursor,all,55,,fixture,fixture +2025-03-20,Codex,all,42,,fixture,fixture +2025-03-20,Aider,all,35,,fixture,fixture +2025-03-20,Devin,all,26,,fixture,fixture +2025-03-21,Claude Code,all,70,,fixture,fixture +2025-03-21,Cursor,all,55,,fixture,fixture +2025-03-21,Codex,all,37,,fixture,fixture +2025-03-21,Aider,all,38,,fixture,fixture +2025-03-21,Devin,all,30,,fixture,fixture +2025-03-22,Claude Code,all,79,,fixture,fixture +2025-03-22,Cursor,all,54,,fixture,fixture +2025-03-22,Codex,all,47,,fixture,fixture +2025-03-22,Aider,all,38,,fixture,fixture +2025-03-22,Devin,all,27,,fixture,fixture +2025-03-23,Claude Code,all,72,,fixture,fixture +2025-03-23,Cursor,all,59,,fixture,fixture +2025-03-23,Codex,all,47,,fixture,fixture +2025-03-23,Aider,all,41,,fixture,fixture +2025-03-23,Devin,all,39,,fixture,fixture +2025-03-24,Claude Code,all,75,,fixture,fixture +2025-03-24,Cursor,all,57,,fixture,fixture +2025-03-24,Codex,all,46,,fixture,fixture +2025-03-24,Aider,all,39,,fixture,fixture +2025-03-24,Devin,all,37,,fixture,fixture +2025-03-25,Claude Code,all,80,,fixture,fixture +2025-03-25,Cursor,all,51,,fixture,fixture +2025-03-25,Codex,all,44,,fixture,fixture +2025-03-25,Aider,all,42,,fixture,fixture +2025-03-25,Devin,all,33,,fixture,fixture +2025-03-26,Claude Code,all,72,,fixture,fixture +2025-03-26,Cursor,all,49,,fixture,fixture +2025-03-26,Codex,all,40,,fixture,fixture +2025-03-26,Aider,all,41,,fixture,fixture +2025-03-26,Devin,all,31,,fixture,fixture +2025-03-27,Claude Code,all,78,,fixture,fixture +2025-03-27,Cursor,all,54,,fixture,fixture +2025-03-27,Codex,all,43,,fixture,fixture +2025-03-27,Aider,all,35,,fixture,fixture +2025-03-27,Devin,all,32,,fixture,fixture +2025-03-28,Claude Code,all,78,,fixture,fixture +2025-03-28,Cursor,all,60,,fixture,fixture +2025-03-28,Codex,all,49,,fixture,fixture +2025-03-28,Aider,all,41,,fixture,fixture +2025-03-28,Devin,all,36,,fixture,fixture +2025-03-29,Claude Code,all,77,,fixture,fixture +2025-03-29,Cursor,all,56,,fixture,fixture +2025-03-29,Codex,all,46,,fixture,fixture +2025-03-29,Aider,all,41,,fixture,fixture +2025-03-29,Devin,all,26,,fixture,fixture +2025-03-30,Claude Code,all,78,,fixture,fixture +2025-03-30,Cursor,all,59,,fixture,fixture +2025-03-30,Codex,all,47,,fixture,fixture +2025-03-30,Aider,all,41,,fixture,fixture +2025-03-30,Devin,all,34,,fixture,fixture +2025-03-31,Claude Code,all,84,,fixture,fixture +2025-03-31,Cursor,all,59,,fixture,fixture +2025-03-31,Codex,all,47,,fixture,fixture +2025-03-31,Aider,all,42,,fixture,fixture +2025-03-31,Devin,all,33,,fixture,fixture +2025-04-01,Claude Code,all,75,,fixture,fixture +2025-04-01,Cursor,all,59,,fixture,fixture +2025-04-01,Codex,all,49,,fixture,fixture +2025-04-01,Aider,all,50,,fixture,fixture +2025-04-01,Devin,all,37,,fixture,fixture +2025-04-02,Claude Code,all,83,,fixture,fixture +2025-04-02,Cursor,all,57,,fixture,fixture +2025-04-02,Codex,all,52,,fixture,fixture +2025-04-02,Aider,all,41,,fixture,fixture +2025-04-02,Devin,all,35,,fixture,fixture +2025-04-03,Claude Code,all,81,,fixture,fixture +2025-04-03,Cursor,all,58,,fixture,fixture +2025-04-03,Codex,all,56,,fixture,fixture +2025-04-03,Aider,all,47,,fixture,fixture +2025-04-03,Devin,all,29,,fixture,fixture +2025-04-04,Claude Code,all,82,,fixture,fixture +2025-04-04,Cursor,all,59,,fixture,fixture +2025-04-04,Codex,all,51,,fixture,fixture +2025-04-04,Aider,all,47,,fixture,fixture +2025-04-04,Devin,all,37,,fixture,fixture +2025-04-05,Claude Code,all,75,,fixture,fixture +2025-04-05,Cursor,all,58,,fixture,fixture +2025-04-05,Codex,all,53,,fixture,fixture +2025-04-05,Aider,all,50,,fixture,fixture +2025-04-05,Devin,all,42,,fixture,fixture +2025-04-06,Claude Code,all,87,,fixture,fixture +2025-04-06,Cursor,all,55,,fixture,fixture +2025-04-06,Codex,all,54,,fixture,fixture +2025-04-06,Aider,all,41,,fixture,fixture +2025-04-06,Devin,all,41,,fixture,fixture +2025-04-07,Claude Code,all,83,,fixture,fixture +2025-04-07,Cursor,all,59,,fixture,fixture +2025-04-07,Codex,all,58,,fixture,fixture +2025-04-07,Aider,all,49,,fixture,fixture +2025-04-07,Devin,all,31,,fixture,fixture +2025-04-08,Claude Code,all,83,,fixture,fixture +2025-04-08,Cursor,all,60,,fixture,fixture +2025-04-08,Codex,all,53,,fixture,fixture +2025-04-08,Aider,all,46,,fixture,fixture +2025-04-08,Devin,all,42,,fixture,fixture +2025-04-09,Claude Code,all,79,,fixture,fixture +2025-04-09,Cursor,all,64,,fixture,fixture +2025-04-09,Codex,all,58,,fixture,fixture +2025-04-09,Aider,all,46,,fixture,fixture +2025-04-09,Devin,all,39,,fixture,fixture +2025-04-10,Claude Code,all,84,,fixture,fixture +2025-04-10,Cursor,all,61,,fixture,fixture +2025-04-10,Codex,all,55,,fixture,fixture +2025-04-10,Aider,all,49,,fixture,fixture +2025-04-10,Devin,all,36,,fixture,fixture +2025-04-11,Claude Code,all,89,,fixture,fixture +2025-04-11,Cursor,all,66,,fixture,fixture +2025-04-11,Codex,all,53,,fixture,fixture +2025-04-11,Aider,all,47,,fixture,fixture +2025-04-11,Devin,all,37,,fixture,fixture +2025-04-12,Claude Code,all,88,,fixture,fixture +2025-04-12,Cursor,all,64,,fixture,fixture +2025-04-12,Codex,all,56,,fixture,fixture +2025-04-12,Aider,all,49,,fixture,fixture +2025-04-12,Devin,all,41,,fixture,fixture +2025-04-13,Claude Code,all,85,,fixture,fixture +2025-04-13,Cursor,all,67,,fixture,fixture +2025-04-13,Codex,all,54,,fixture,fixture +2025-04-13,Aider,all,52,,fixture,fixture +2025-04-13,Devin,all,42,,fixture,fixture +2025-04-14,Claude Code,all,85,,fixture,fixture +2025-04-14,Cursor,all,63,,fixture,fixture +2025-04-14,Codex,all,53,,fixture,fixture +2025-04-14,Aider,all,48,,fixture,fixture +2025-04-14,Devin,all,38,,fixture,fixture +2025-04-15,Claude Code,all,89,,fixture,fixture +2025-04-15,Cursor,all,66,,fixture,fixture +2025-04-15,Codex,all,61,,fixture,fixture +2025-04-15,Aider,all,58,,fixture,fixture +2025-04-15,Devin,all,41,,fixture,fixture +2025-04-16,Claude Code,all,82,,fixture,fixture +2025-04-16,Cursor,all,65,,fixture,fixture +2025-04-16,Codex,all,56,,fixture,fixture +2025-04-16,Aider,all,47,,fixture,fixture +2025-04-16,Devin,all,41,,fixture,fixture +2025-04-17,Claude Code,all,88,,fixture,fixture +2025-04-17,Cursor,all,66,,fixture,fixture +2025-04-17,Codex,all,55,,fixture,fixture +2025-04-17,Aider,all,50,,fixture,fixture +2025-04-17,Devin,all,47,,fixture,fixture +2025-04-18,Claude Code,all,87,,fixture,fixture +2025-04-18,Cursor,all,65,,fixture,fixture +2025-04-18,Codex,all,56,,fixture,fixture +2025-04-18,Aider,all,55,,fixture,fixture +2025-04-18,Devin,all,40,,fixture,fixture +2025-04-19,Claude Code,all,89,,fixture,fixture +2025-04-19,Cursor,all,70,,fixture,fixture +2025-04-19,Codex,all,60,,fixture,fixture +2025-04-19,Aider,all,57,,fixture,fixture +2025-04-19,Devin,all,41,,fixture,fixture +2025-04-20,Claude Code,all,92,,fixture,fixture +2025-04-20,Cursor,all,66,,fixture,fixture +2025-04-20,Codex,all,57,,fixture,fixture +2025-04-20,Aider,all,57,,fixture,fixture +2025-04-20,Devin,all,46,,fixture,fixture +2025-04-21,Claude Code,all,89,,fixture,fixture +2025-04-21,Cursor,all,65,,fixture,fixture +2025-04-21,Codex,all,61,,fixture,fixture +2025-04-21,Aider,all,52,,fixture,fixture +2025-04-21,Devin,all,41,,fixture,fixture +2025-04-22,Claude Code,all,88,,fixture,fixture +2025-04-22,Cursor,all,70,,fixture,fixture +2025-04-22,Codex,all,53,,fixture,fixture +2025-04-22,Aider,all,56,,fixture,fixture +2025-04-22,Devin,all,45,,fixture,fixture +2025-04-23,Claude Code,all,88,,fixture,fixture +2025-04-23,Cursor,all,73,,fixture,fixture +2025-04-23,Codex,all,62,,fixture,fixture +2025-04-23,Aider,all,53,,fixture,fixture +2025-04-23,Devin,all,43,,fixture,fixture +2025-04-24,Claude Code,all,93,,fixture,fixture +2025-04-24,Cursor,all,66,,fixture,fixture +2025-04-24,Codex,all,60,,fixture,fixture +2025-04-24,Aider,all,54,,fixture,fixture +2025-04-24,Devin,all,46,,fixture,fixture +2025-04-25,Claude Code,all,92,,fixture,fixture +2025-04-25,Cursor,all,71,,fixture,fixture +2025-04-25,Codex,all,64,,fixture,fixture +2025-04-25,Aider,all,57,,fixture,fixture +2025-04-25,Devin,all,45,,fixture,fixture +2025-04-26,Claude Code,all,88,,fixture,fixture +2025-04-26,Cursor,all,74,,fixture,fixture +2025-04-26,Codex,all,63,,fixture,fixture +2025-04-26,Aider,all,61,,fixture,fixture +2025-04-26,Devin,all,44,,fixture,fixture +2025-04-27,Claude Code,all,92,,fixture,fixture +2025-04-27,Cursor,all,72,,fixture,fixture +2025-04-27,Codex,all,62,,fixture,fixture +2025-04-27,Aider,all,57,,fixture,fixture +2025-04-27,Devin,all,42,,fixture,fixture +2025-04-28,Claude Code,all,95,,fixture,fixture +2025-04-28,Cursor,all,74,,fixture,fixture +2025-04-28,Codex,all,66,,fixture,fixture +2025-04-28,Aider,all,64,,fixture,fixture +2025-04-28,Devin,all,47,,fixture,fixture +2025-04-29,Claude Code,all,93,,fixture,fixture +2025-04-29,Cursor,all,73,,fixture,fixture +2025-04-29,Codex,all,69,,fixture,fixture +2025-04-29,Aider,all,53,,fixture,fixture +2025-04-29,Devin,all,49,,fixture,fixture +2025-04-30,Claude Code,all,89,,fixture,fixture +2025-04-30,Cursor,all,66,,fixture,fixture +2025-04-30,Codex,all,57,,fixture,fixture +2025-04-30,Aider,all,54,,fixture,fixture +2025-04-30,Devin,all,52,,fixture,fixture +2025-05-01,Claude Code,all,91,,fixture,fixture +2025-05-01,Cursor,all,73,,fixture,fixture +2025-05-01,Codex,all,61,,fixture,fixture +2025-05-01,Aider,all,61,,fixture,fixture +2025-05-01,Devin,all,46,,fixture,fixture +2025-05-02,Claude Code,all,98,,fixture,fixture +2025-05-02,Cursor,all,72,,fixture,fixture +2025-05-02,Codex,all,62,,fixture,fixture +2025-05-02,Aider,all,60,,fixture,fixture +2025-05-02,Devin,all,50,,fixture,fixture +2025-05-03,Claude Code,all,99,,fixture,fixture +2025-05-03,Cursor,all,75,,fixture,fixture +2025-05-03,Codex,all,61,,fixture,fixture +2025-05-03,Aider,all,58,,fixture,fixture +2025-05-03,Devin,all,48,,fixture,fixture +2025-05-04,Claude Code,all,98,,fixture,fixture +2025-05-04,Cursor,all,77,,fixture,fixture +2025-05-04,Codex,all,65,,fixture,fixture +2025-05-04,Aider,all,63,,fixture,fixture +2025-05-04,Devin,all,49,,fixture,fixture +2025-05-05,Claude Code,all,96,,fixture,fixture +2025-05-05,Cursor,all,77,,fixture,fixture +2025-05-05,Codex,all,71,,fixture,fixture +2025-05-05,Aider,all,61,,fixture,fixture +2025-05-05,Devin,all,50,,fixture,fixture +2025-05-06,Claude Code,all,93,,fixture,fixture +2025-05-06,Cursor,all,79,,fixture,fixture +2025-05-06,Codex,all,65,,fixture,fixture +2025-05-06,Aider,all,63,,fixture,fixture +2025-05-06,Devin,all,46,,fixture,fixture +2025-05-07,Claude Code,all,100,,fixture,fixture +2025-05-07,Cursor,all,73,,fixture,fixture +2025-05-07,Codex,all,65,,fixture,fixture +2025-05-07,Aider,all,65,,fixture,fixture +2025-05-07,Devin,all,48,,fixture,fixture +2025-05-08,Claude Code,all,97,,fixture,fixture +2025-05-08,Cursor,all,78,,fixture,fixture +2025-05-08,Codex,all,65,,fixture,fixture +2025-05-08,Aider,all,67,,fixture,fixture +2025-05-08,Devin,all,57,,fixture,fixture +2025-05-09,Claude Code,all,92,,fixture,fixture +2025-05-09,Cursor,all,74,,fixture,fixture +2025-05-09,Codex,all,70,,fixture,fixture +2025-05-09,Aider,all,59,,fixture,fixture +2025-05-09,Devin,all,52,,fixture,fixture +2025-05-10,Claude Code,all,99,,fixture,fixture +2025-05-10,Cursor,all,81,,fixture,fixture +2025-05-10,Codex,all,68,,fixture,fixture +2025-05-10,Aider,all,64,,fixture,fixture +2025-05-10,Devin,all,51,,fixture,fixture +2025-05-11,Claude Code,all,103,,fixture,fixture +2025-05-11,Cursor,all,78,,fixture,fixture +2025-05-11,Codex,all,70,,fixture,fixture +2025-05-11,Aider,all,62,,fixture,fixture +2025-05-11,Devin,all,54,,fixture,fixture +2025-05-12,Claude Code,all,99,,fixture,fixture +2025-05-12,Cursor,all,79,,fixture,fixture +2025-05-12,Codex,all,66,,fixture,fixture +2025-05-12,Aider,all,67,,fixture,fixture +2025-05-12,Devin,all,59,,fixture,fixture +2025-05-13,Claude Code,all,101,,fixture,fixture +2025-05-13,Cursor,all,82,,fixture,fixture +2025-05-13,Codex,all,73,,fixture,fixture +2025-05-13,Aider,all,68,,fixture,fixture +2025-05-13,Devin,all,56,,fixture,fixture +2025-05-14,Claude Code,all,101,,fixture,fixture +2025-05-14,Cursor,all,83,,fixture,fixture +2025-05-14,Codex,all,71,,fixture,fixture +2025-05-14,Aider,all,63,,fixture,fixture +2025-05-14,Devin,all,56,,fixture,fixture +2025-05-15,Claude Code,all,95,,fixture,fixture +2025-05-15,Cursor,all,81,,fixture,fixture +2025-05-15,Codex,all,72,,fixture,fixture +2025-05-15,Aider,all,70,,fixture,fixture +2025-05-15,Devin,all,56,,fixture,fixture +2025-05-16,Claude Code,all,104,,fixture,fixture +2025-05-16,Cursor,all,81,,fixture,fixture +2025-05-16,Codex,all,68,,fixture,fixture +2025-05-16,Aider,all,62,,fixture,fixture +2025-05-16,Devin,all,54,,fixture,fixture +2025-05-17,Claude Code,all,98,,fixture,fixture +2025-05-17,Cursor,all,84,,fixture,fixture +2025-05-17,Codex,all,71,,fixture,fixture +2025-05-17,Aider,all,69,,fixture,fixture +2025-05-17,Devin,all,57,,fixture,fixture +2025-05-18,Claude Code,all,106,,fixture,fixture +2025-05-18,Cursor,all,86,,fixture,fixture +2025-05-18,Codex,all,71,,fixture,fixture +2025-05-18,Aider,all,67,,fixture,fixture +2025-05-18,Devin,all,56,,fixture,fixture +2025-05-19,Claude Code,all,98,,fixture,fixture +2025-05-19,Cursor,all,85,,fixture,fixture +2025-05-19,Codex,all,77,,fixture,fixture +2025-05-19,Aider,all,68,,fixture,fixture +2025-05-19,Devin,all,57,,fixture,fixture +2025-05-20,Claude Code,all,107,,fixture,fixture +2025-05-20,Cursor,all,76,,fixture,fixture +2025-05-20,Codex,all,74,,fixture,fixture +2025-05-20,Aider,all,69,,fixture,fixture +2025-05-20,Devin,all,57,,fixture,fixture +2025-05-21,Claude Code,all,108,,fixture,fixture +2025-05-21,Cursor,all,87,,fixture,fixture +2025-05-21,Codex,all,73,,fixture,fixture +2025-05-21,Aider,all,69,,fixture,fixture +2025-05-21,Devin,all,58,,fixture,fixture +2025-05-22,Claude Code,all,103,,fixture,fixture +2025-05-22,Cursor,all,81,,fixture,fixture +2025-05-22,Codex,all,79,,fixture,fixture +2025-05-22,Aider,all,73,,fixture,fixture +2025-05-22,Devin,all,62,,fixture,fixture +2025-05-23,Claude Code,all,102,,fixture,fixture +2025-05-23,Cursor,all,91,,fixture,fixture +2025-05-23,Codex,all,81,,fixture,fixture +2025-05-23,Aider,all,71,,fixture,fixture +2025-05-23,Devin,all,57,,fixture,fixture +2025-05-24,Claude Code,all,103,,fixture,fixture +2025-05-24,Cursor,all,87,,fixture,fixture +2025-05-24,Codex,all,73,,fixture,fixture +2025-05-24,Aider,all,70,,fixture,fixture +2025-05-24,Devin,all,64,,fixture,fixture +2025-05-25,Claude Code,all,101,,fixture,fixture +2025-05-25,Cursor,all,92,,fixture,fixture +2025-05-25,Codex,all,81,,fixture,fixture +2025-05-25,Aider,all,67,,fixture,fixture +2025-05-25,Devin,all,57,,fixture,fixture +2025-05-26,Claude Code,all,106,,fixture,fixture +2025-05-26,Cursor,all,83,,fixture,fixture +2025-05-26,Codex,all,76,,fixture,fixture +2025-05-26,Aider,all,64,,fixture,fixture +2025-05-26,Devin,all,61,,fixture,fixture +2025-05-27,Claude Code,all,112,,fixture,fixture +2025-05-27,Cursor,all,84,,fixture,fixture +2025-05-27,Codex,all,76,,fixture,fixture +2025-05-27,Aider,all,68,,fixture,fixture +2025-05-27,Devin,all,64,,fixture,fixture +2025-05-28,Claude Code,all,107,,fixture,fixture +2025-05-28,Cursor,all,93,,fixture,fixture +2025-05-28,Codex,all,78,,fixture,fixture +2025-05-28,Aider,all,71,,fixture,fixture +2025-05-28,Devin,all,64,,fixture,fixture +2025-05-29,Claude Code,all,106,,fixture,fixture +2025-05-29,Cursor,all,84,,fixture,fixture +2025-05-29,Codex,all,79,,fixture,fixture +2025-05-29,Aider,all,72,,fixture,fixture +2025-05-29,Devin,all,63,,fixture,fixture +2025-05-30,Claude Code,all,110,,fixture,fixture +2025-05-30,Cursor,all,87,,fixture,fixture +2025-05-30,Codex,all,80,,fixture,fixture +2025-05-30,Aider,all,79,,fixture,fixture +2025-05-30,Devin,all,60,,fixture,fixture +2025-05-31,Claude Code,all,114,,fixture,fixture +2025-05-31,Cursor,all,88,,fixture,fixture +2025-05-31,Codex,all,77,,fixture,fixture +2025-05-31,Aider,all,81,,fixture,fixture +2025-05-31,Devin,all,64,,fixture,fixture +2025-06-01,Claude Code,all,114,,fixture,fixture +2025-06-01,Cursor,all,92,,fixture,fixture +2025-06-01,Codex,all,74,,fixture,fixture +2025-06-01,Aider,all,75,,fixture,fixture +2025-06-01,Devin,all,63,,fixture,fixture +2025-06-02,Claude Code,all,106,,fixture,fixture +2025-06-02,Cursor,all,85,,fixture,fixture +2025-06-02,Codex,all,80,,fixture,fixture +2025-06-02,Aider,all,77,,fixture,fixture +2025-06-02,Devin,all,66,,fixture,fixture +2025-06-03,Claude Code,all,110,,fixture,fixture +2025-06-03,Cursor,all,88,,fixture,fixture +2025-06-03,Codex,all,78,,fixture,fixture +2025-06-03,Aider,all,74,,fixture,fixture +2025-06-03,Devin,all,62,,fixture,fixture +2025-06-04,Claude Code,all,110,,fixture,fixture +2025-06-04,Cursor,all,91,,fixture,fixture +2025-06-04,Codex,all,78,,fixture,fixture +2025-06-04,Aider,all,75,,fixture,fixture +2025-06-04,Devin,all,64,,fixture,fixture +2025-06-05,Claude Code,all,111,,fixture,fixture +2025-06-05,Cursor,all,93,,fixture,fixture +2025-06-05,Codex,all,82,,fixture,fixture +2025-06-05,Aider,all,78,,fixture,fixture +2025-06-05,Devin,all,62,,fixture,fixture +2025-06-06,Claude Code,all,111,,fixture,fixture +2025-06-06,Cursor,all,93,,fixture,fixture +2025-06-06,Codex,all,84,,fixture,fixture +2025-06-06,Aider,all,72,,fixture,fixture +2025-06-06,Devin,all,67,,fixture,fixture +2025-06-07,Claude Code,all,116,,fixture,fixture +2025-06-07,Cursor,all,92,,fixture,fixture +2025-06-07,Codex,all,82,,fixture,fixture +2025-06-07,Aider,all,79,,fixture,fixture +2025-06-07,Devin,all,68,,fixture,fixture +2025-06-08,Claude Code,all,115,,fixture,fixture +2025-06-08,Cursor,all,93,,fixture,fixture +2025-06-08,Codex,all,83,,fixture,fixture +2025-06-08,Aider,all,76,,fixture,fixture +2025-06-08,Devin,all,67,,fixture,fixture +2025-06-09,Claude Code,all,117,,fixture,fixture +2025-06-09,Cursor,all,93,,fixture,fixture +2025-06-09,Codex,all,83,,fixture,fixture +2025-06-09,Aider,all,77,,fixture,fixture +2025-06-09,Devin,all,71,,fixture,fixture +2025-06-10,Claude Code,all,111,,fixture,fixture +2025-06-10,Cursor,all,97,,fixture,fixture +2025-06-10,Codex,all,81,,fixture,fixture +2025-06-10,Aider,all,76,,fixture,fixture +2025-06-10,Devin,all,70,,fixture,fixture +2025-06-11,Claude Code,all,115,,fixture,fixture +2025-06-11,Cursor,all,95,,fixture,fixture +2025-06-11,Codex,all,88,,fixture,fixture +2025-06-11,Aider,all,78,,fixture,fixture +2025-06-11,Devin,all,71,,fixture,fixture +2025-06-12,Claude Code,all,112,,fixture,fixture +2025-06-12,Cursor,all,99,,fixture,fixture +2025-06-12,Codex,all,87,,fixture,fixture +2025-06-12,Aider,all,82,,fixture,fixture +2025-06-12,Devin,all,71,,fixture,fixture +2025-06-13,Claude Code,all,113,,fixture,fixture +2025-06-13,Cursor,all,95,,fixture,fixture +2025-06-13,Codex,all,87,,fixture,fixture +2025-06-13,Aider,all,80,,fixture,fixture +2025-06-13,Devin,all,71,,fixture,fixture +2025-06-14,Claude Code,all,112,,fixture,fixture +2025-06-14,Cursor,all,97,,fixture,fixture +2025-06-14,Codex,all,84,,fixture,fixture +2025-06-14,Aider,all,78,,fixture,fixture +2025-06-14,Devin,all,71,,fixture,fixture +2025-06-15,Claude Code,all,111,,fixture,fixture +2025-06-15,Cursor,all,99,,fixture,fixture +2025-06-15,Codex,all,89,,fixture,fixture +2025-06-15,Aider,all,81,,fixture,fixture +2025-06-15,Devin,all,69,,fixture,fixture +2025-06-16,Claude Code,all,114,,fixture,fixture +2025-06-16,Cursor,all,97,,fixture,fixture +2025-06-16,Codex,all,80,,fixture,fixture +2025-06-16,Aider,all,83,,fixture,fixture +2025-06-16,Devin,all,74,,fixture,fixture +2025-06-17,Claude Code,all,117,,fixture,fixture +2025-06-17,Cursor,all,96,,fixture,fixture +2025-06-17,Codex,all,88,,fixture,fixture +2025-06-17,Aider,all,84,,fixture,fixture +2025-06-17,Devin,all,76,,fixture,fixture +2025-06-18,Claude Code,all,118,,fixture,fixture +2025-06-18,Cursor,all,96,,fixture,fixture +2025-06-18,Codex,all,87,,fixture,fixture +2025-06-18,Aider,all,84,,fixture,fixture +2025-06-18,Devin,all,78,,fixture,fixture +2025-06-19,Claude Code,all,118,,fixture,fixture +2025-06-19,Cursor,all,95,,fixture,fixture +2025-06-19,Codex,all,86,,fixture,fixture +2025-06-19,Aider,all,77,,fixture,fixture +2025-06-19,Devin,all,74,,fixture,fixture +2025-06-20,Claude Code,all,115,,fixture,fixture +2025-06-20,Cursor,all,95,,fixture,fixture +2025-06-20,Codex,all,83,,fixture,fixture +2025-06-20,Aider,all,81,,fixture,fixture +2025-06-20,Devin,all,76,,fixture,fixture +2025-06-21,Claude Code,all,116,,fixture,fixture +2025-06-21,Cursor,all,94,,fixture,fixture +2025-06-21,Codex,all,90,,fixture,fixture +2025-06-21,Aider,all,83,,fixture,fixture +2025-06-21,Devin,all,76,,fixture,fixture +2025-06-22,Claude Code,all,122,,fixture,fixture +2025-06-22,Cursor,all,100,,fixture,fixture +2025-06-22,Codex,all,86,,fixture,fixture +2025-06-22,Aider,all,85,,fixture,fixture +2025-06-22,Devin,all,77,,fixture,fixture +2025-06-23,Claude Code,all,119,,fixture,fixture +2025-06-23,Cursor,all,96,,fixture,fixture +2025-06-23,Codex,all,94,,fixture,fixture +2025-06-23,Aider,all,84,,fixture,fixture +2025-06-23,Devin,all,74,,fixture,fixture +2025-06-24,Claude Code,all,121,,fixture,fixture +2025-06-24,Cursor,all,104,,fixture,fixture +2025-06-24,Codex,all,92,,fixture,fixture +2025-06-24,Aider,all,85,,fixture,fixture +2025-06-24,Devin,all,78,,fixture,fixture +2025-06-25,Claude Code,all,128,,fixture,fixture +2025-06-25,Cursor,all,106,,fixture,fixture +2025-06-25,Codex,all,94,,fixture,fixture +2025-06-25,Aider,all,83,,fixture,fixture +2025-06-25,Devin,all,88,,fixture,fixture +2025-06-26,Claude Code,all,118,,fixture,fixture +2025-06-26,Cursor,all,101,,fixture,fixture +2025-06-26,Codex,all,90,,fixture,fixture +2025-06-26,Aider,all,92,,fixture,fixture +2025-06-26,Devin,all,78,,fixture,fixture +2025-06-27,Claude Code,all,118,,fixture,fixture +2025-06-27,Cursor,all,103,,fixture,fixture +2025-06-27,Codex,all,94,,fixture,fixture +2025-06-27,Aider,all,87,,fixture,fixture +2025-06-27,Devin,all,74,,fixture,fixture +2025-06-28,Claude Code,all,121,,fixture,fixture +2025-06-28,Cursor,all,102,,fixture,fixture +2025-06-28,Codex,all,93,,fixture,fixture +2025-06-28,Aider,all,86,,fixture,fixture +2025-06-28,Devin,all,80,,fixture,fixture +2025-06-29,Claude Code,all,121,,fixture,fixture +2025-06-29,Cursor,all,98,,fixture,fixture +2025-06-29,Codex,all,91,,fixture,fixture +2025-06-29,Aider,all,93,,fixture,fixture +2025-06-29,Devin,all,77,,fixture,fixture +2025-06-30,Claude Code,all,131,,fixture,fixture +2025-06-30,Cursor,all,105,,fixture,fixture +2025-06-30,Codex,all,91,,fixture,fixture +2025-06-30,Aider,all,86,,fixture,fixture +2025-06-30,Devin,all,80,,fixture,fixture +2025-07-01,Claude Code,all,121,,fixture,fixture +2025-07-01,Cursor,all,112,,fixture,fixture +2025-07-01,Codex,all,92,,fixture,fixture +2025-07-01,Aider,all,92,,fixture,fixture +2025-07-01,Devin,all,84,,fixture,fixture +2025-07-02,Claude Code,all,125,,fixture,fixture +2025-07-02,Cursor,all,102,,fixture,fixture +2025-07-02,Codex,all,94,,fixture,fixture +2025-07-02,Aider,all,91,,fixture,fixture +2025-07-02,Devin,all,83,,fixture,fixture +2025-07-03,Claude Code,all,126,,fixture,fixture +2025-07-03,Cursor,all,101,,fixture,fixture +2025-07-03,Codex,all,96,,fixture,fixture +2025-07-03,Aider,all,88,,fixture,fixture +2025-07-03,Devin,all,74,,fixture,fixture +2025-07-04,Claude Code,all,124,,fixture,fixture +2025-07-04,Cursor,all,102,,fixture,fixture +2025-07-04,Codex,all,98,,fixture,fixture +2025-07-04,Aider,all,97,,fixture,fixture +2025-07-04,Devin,all,87,,fixture,fixture +2025-07-05,Claude Code,all,125,,fixture,fixture +2025-07-05,Cursor,all,105,,fixture,fixture +2025-07-05,Codex,all,99,,fixture,fixture +2025-07-05,Aider,all,95,,fixture,fixture +2025-07-05,Devin,all,80,,fixture,fixture +2025-07-06,Claude Code,all,127,,fixture,fixture +2025-07-06,Cursor,all,114,,fixture,fixture +2025-07-06,Codex,all,97,,fixture,fixture +2025-07-06,Aider,all,91,,fixture,fixture +2025-07-06,Devin,all,82,,fixture,fixture +2025-07-07,Claude Code,all,129,,fixture,fixture +2025-07-07,Cursor,all,104,,fixture,fixture +2025-07-07,Codex,all,97,,fixture,fixture +2025-07-07,Aider,all,89,,fixture,fixture +2025-07-07,Devin,all,82,,fixture,fixture +2025-07-08,Claude Code,all,134,,fixture,fixture +2025-07-08,Cursor,all,110,,fixture,fixture +2025-07-08,Codex,all,98,,fixture,fixture +2025-07-08,Aider,all,90,,fixture,fixture +2025-07-08,Devin,all,82,,fixture,fixture +2025-07-09,Claude Code,all,132,,fixture,fixture +2025-07-09,Cursor,all,107,,fixture,fixture +2025-07-09,Codex,all,103,,fixture,fixture +2025-07-09,Aider,all,89,,fixture,fixture +2025-07-09,Devin,all,83,,fixture,fixture +2025-07-10,Claude Code,all,134,,fixture,fixture +2025-07-10,Cursor,all,103,,fixture,fixture +2025-07-10,Codex,all,103,,fixture,fixture +2025-07-10,Aider,all,88,,fixture,fixture +2025-07-10,Devin,all,84,,fixture,fixture +2025-07-11,Claude Code,all,129,,fixture,fixture +2025-07-11,Cursor,all,112,,fixture,fixture +2025-07-11,Codex,all,90,,fixture,fixture +2025-07-11,Aider,all,89,,fixture,fixture +2025-07-11,Devin,all,83,,fixture,fixture +2025-07-12,Claude Code,all,130,,fixture,fixture +2025-07-12,Cursor,all,107,,fixture,fixture +2025-07-12,Codex,all,99,,fixture,fixture +2025-07-12,Aider,all,91,,fixture,fixture +2025-07-12,Devin,all,84,,fixture,fixture +2025-07-13,Claude Code,all,128,,fixture,fixture +2025-07-13,Cursor,all,111,,fixture,fixture +2025-07-13,Codex,all,102,,fixture,fixture +2025-07-13,Aider,all,100,,fixture,fixture +2025-07-13,Devin,all,84,,fixture,fixture +2025-07-14,Claude Code,all,130,,fixture,fixture +2025-07-14,Cursor,all,111,,fixture,fixture +2025-07-14,Codex,all,100,,fixture,fixture +2025-07-14,Aider,all,96,,fixture,fixture +2025-07-14,Devin,all,81,,fixture,fixture +2025-07-15,Claude Code,all,133,,fixture,fixture +2025-07-15,Cursor,all,109,,fixture,fixture +2025-07-15,Codex,all,99,,fixture,fixture +2025-07-15,Aider,all,92,,fixture,fixture +2025-07-15,Devin,all,90,,fixture,fixture +2025-07-16,Claude Code,all,132,,fixture,fixture +2025-07-16,Cursor,all,115,,fixture,fixture +2025-07-16,Codex,all,103,,fixture,fixture +2025-07-16,Aider,all,92,,fixture,fixture +2025-07-16,Devin,all,84,,fixture,fixture +2025-07-17,Claude Code,all,135,,fixture,fixture +2025-07-17,Cursor,all,110,,fixture,fixture +2025-07-17,Codex,all,99,,fixture,fixture +2025-07-17,Aider,all,97,,fixture,fixture +2025-07-17,Devin,all,87,,fixture,fixture +2025-07-18,Claude Code,all,130,,fixture,fixture +2025-07-18,Cursor,all,112,,fixture,fixture +2025-07-18,Codex,all,102,,fixture,fixture +2025-07-18,Aider,all,90,,fixture,fixture +2025-07-18,Devin,all,90,,fixture,fixture +2025-07-19,Claude Code,all,131,,fixture,fixture +2025-07-19,Cursor,all,117,,fixture,fixture +2025-07-19,Codex,all,100,,fixture,fixture +2025-07-19,Aider,all,94,,fixture,fixture +2025-07-19,Devin,all,92,,fixture,fixture +2025-07-20,Claude Code,all,129,,fixture,fixture +2025-07-20,Cursor,all,112,,fixture,fixture +2025-07-20,Codex,all,106,,fixture,fixture +2025-07-20,Aider,all,98,,fixture,fixture +2025-07-20,Devin,all,84,,fixture,fixture +2025-07-21,Claude Code,all,135,,fixture,fixture +2025-07-21,Cursor,all,114,,fixture,fixture +2025-07-21,Codex,all,108,,fixture,fixture +2025-07-21,Aider,all,101,,fixture,fixture +2025-07-21,Devin,all,99,,fixture,fixture +2025-07-22,Claude Code,all,130,,fixture,fixture +2025-07-22,Cursor,all,115,,fixture,fixture +2025-07-22,Codex,all,102,,fixture,fixture +2025-07-22,Aider,all,103,,fixture,fixture +2025-07-22,Devin,all,92,,fixture,fixture +2025-07-23,Claude Code,all,138,,fixture,fixture +2025-07-23,Cursor,all,113,,fixture,fixture +2025-07-23,Codex,all,103,,fixture,fixture +2025-07-23,Aider,all,94,,fixture,fixture +2025-07-23,Devin,all,96,,fixture,fixture +2025-07-24,Claude Code,all,138,,fixture,fixture +2025-07-24,Cursor,all,115,,fixture,fixture +2025-07-24,Codex,all,109,,fixture,fixture +2025-07-24,Aider,all,103,,fixture,fixture +2025-07-24,Devin,all,94,,fixture,fixture +2025-07-25,Claude Code,all,132,,fixture,fixture +2025-07-25,Cursor,all,114,,fixture,fixture +2025-07-25,Codex,all,107,,fixture,fixture +2025-07-25,Aider,all,103,,fixture,fixture +2025-07-25,Devin,all,94,,fixture,fixture +2025-07-26,Claude Code,all,134,,fixture,fixture +2025-07-26,Cursor,all,117,,fixture,fixture +2025-07-26,Codex,all,114,,fixture,fixture +2025-07-26,Aider,all,104,,fixture,fixture +2025-07-26,Devin,all,95,,fixture,fixture +2025-07-27,Claude Code,all,137,,fixture,fixture +2025-07-27,Cursor,all,120,,fixture,fixture +2025-07-27,Codex,all,113,,fixture,fixture +2025-07-27,Aider,all,103,,fixture,fixture +2025-07-27,Devin,all,96,,fixture,fixture +2025-07-28,Claude Code,all,135,,fixture,fixture +2025-07-28,Cursor,all,120,,fixture,fixture +2025-07-28,Codex,all,111,,fixture,fixture +2025-07-28,Aider,all,101,,fixture,fixture +2025-07-28,Devin,all,96,,fixture,fixture +2025-07-29,Claude Code,all,136,,fixture,fixture +2025-07-29,Cursor,all,116,,fixture,fixture +2025-07-29,Codex,all,108,,fixture,fixture +2025-07-29,Aider,all,109,,fixture,fixture +2025-07-29,Devin,all,94,,fixture,fixture +2025-07-30,Claude Code,all,142,,fixture,fixture +2025-07-30,Cursor,all,117,,fixture,fixture +2025-07-30,Codex,all,109,,fixture,fixture +2025-07-30,Aider,all,100,,fixture,fixture +2025-07-30,Devin,all,92,,fixture,fixture diff --git a/tests/test_anomaly_refactor.py b/tests/test_anomaly_refactor.py new file mode 100644 index 0000000..f612818 --- /dev/null +++ b/tests/test_anomaly_refactor.py @@ -0,0 +1,33 @@ +"""Regression tests for the scan_anomalies() refactor in anomaly_analysis.py.""" +from anomaly_analysis import Anomaly, scan_anomalies + + +def test_scan_returns_list_of_anomalies(small_commits_csv): + result = scan_anomalies(small_commits_csv) + assert isinstance(result, list) + assert all(isinstance(a, Anomaly) for a in result) + + +def test_scan_detects_expected_drop_and_spike(small_commits_csv): + result = scan_anomalies(small_commits_csv) + kinds = {(a.tool, a.type) for a in result} + assert ("tool_a", "DROP") in kinds + assert ("tool_b", "SPIKE") in kinds + + +def test_scan_ignores_flat_tool(small_commits_csv): + result = scan_anomalies(small_commits_csv) + assert not any(a.tool == "tool_c" for a in result) + + +def test_anomaly_has_expected_fields(small_commits_csv): + result = scan_anomalies(small_commits_csv) + a = next(x for x in result if x.tool == "tool_a" and x.type == "DROP") + assert a.date # non-empty ISO date string + assert a.prev_avg > a.curr_avg # drop means prev was higher + assert 0 < a.ratio < 0.5 + + +def test_scan_handles_missing_file(tmp_path): + result = scan_anomalies(tmp_path / "does_not_exist.csv") + assert result == [] diff --git a/tests/test_bigquery_project.py b/tests/test_bigquery_project.py new file mode 100644 index 0000000..6a2cd1c --- /dev/null +++ b/tests/test_bigquery_project.py @@ -0,0 +1,55 @@ +"""Tests that BigQuery fetcher scripts read the GCP project from an env var, +not a hardcoded constant, so the repo is portable to forks with their own GCP +projects.""" +import importlib +import os +import sys + +import pytest + +# Modules under test: each is a top-level script that hardcoded the project name +# before this refactor. +MODULES = ["fetch_branch_activity", "fetch_branch_creates", "fetch_daily_totals"] + + +@pytest.fixture +def repo_root_on_path(): + """Make the top-level scripts importable as modules.""" + repo_root = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + sys.path.insert(0, repo_root) + yield + sys.path.pop(0) + + +@pytest.mark.parametrize("module_name", MODULES) +def test_project_reads_from_env(repo_root_on_path, monkeypatch, module_name): + """When GCP_PROJECT is set, the module's PROJECT constant matches.""" + monkeypatch.setenv("GCP_PROJECT", "my-fork-project-123") + # Force re-import so the module re-evaluates os.environ at import time. + if module_name in sys.modules: + del sys.modules[module_name] + module = importlib.import_module(module_name) + assert module.PROJECT == "my-fork-project-123" + + +@pytest.mark.parametrize("module_name", MODULES) +def test_project_default_is_placeholder(repo_root_on_path, monkeypatch, module_name): + """When GCP_PROJECT is unset, the default is the obvious-placeholder string, + not a real project name. Anyone running the script without configuring it + will see a clear 'you-need-to-set-this' error from BigQuery.""" + monkeypatch.delenv("GCP_PROJECT", raising=False) + if module_name in sys.modules: + del sys.modules[module_name] + module = importlib.import_module(module_name) + assert module.PROJECT == "your-gcp-project" + + +@pytest.mark.parametrize("module_name", MODULES) +def test_no_hardcoded_project(repo_root_on_path, module_name): + """Belt-and-braces: the source file does not contain the original hardcoded + project name 'ai-commit-tracker-2026'. Catches accidental partial reverts.""" + repo_root = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + source_path = os.path.join(repo_root, f"{module_name}.py") + with open(source_path) as f: + source = f.read() + assert "ai-commit-tracker-2026" not in source diff --git a/tests/test_fetch_bot_donors.py b/tests/test_fetch_bot_donors.py new file mode 100644 index 0000000..5668d48 --- /dev/null +++ b/tests/test_fetch_bot_donors.py @@ -0,0 +1,76 @@ +"""Unit tests for fetch_bot_donors.py — schema only (API calls skipped in CI).""" +import importlib +import pytest + +fbd = importlib.import_module("fetch_bot_donors") + + +def test_bot_donor_definitions(): + donors = fbd.BOT_DONORS + assert isinstance(donors, list) and len(donors) >= 5 + for d in donors: + assert set(d.keys()) >= {"name", "query", "signal_type"} + assert d["query"].startswith(("author-email:", "author-name:", + "committer-name:", "committer-email:")) + + +def test_expected_donors_present(): + names = {d["name"] for d in fbd.BOT_DONORS} + assert {"Dependabot", "Renovate", "pre-commit-ci", + "semantic-release-bot", "allcontributors"} <= names + + +def test_build_url_encodes_plus_in_emails(): + url = fbd.build_search_url("author-email:49699333+dependabot[bot]@users.noreply.github.com", + "2025-02-01", "2025-02-01") + assert "%2B" in url + assert "committer-date" in url + + +def test_fetch_one_rate_limit_detection(monkeypatch): + """Rate-limit responses should trigger retry, not be returned as success.""" + import subprocess + call_count = {"n": 0} + + def fake_run(*args, **kwargs): + call_count["n"] += 1 + class FakeResult: + returncode = 0 + stdout = '{"message": "API rate limit exceeded"}' + stderr = "" + return FakeResult() + + monkeypatch.setattr(subprocess, "run", fake_run) + monkeypatch.setattr(fbd.time, "sleep", lambda s: None) # skip real sleep + result = fbd.fetch_one("https://fake-url", max_retries=2) + assert call_count["n"] == 2 # retried to the max + assert result.get("error") == "max_retries_exceeded" + + +def test_load_fetched_combos_skips_incomplete(tmp_path): + """Incomplete rows must not count as fetched so the restart retries them.""" + import csv as _csv + p = tmp_path / "out.csv" + with p.open("w", newline="") as f: + w = _csv.DictWriter( + f, + fieldnames=["date", "donor", "commits", "incomplete", "fetched_at"], + ) + w.writeheader() + w.writerow({"date": "2025-02-01", "donor": "Dependabot", + "commits": 10, "incomplete": "False", "fetched_at": "t"}) + w.writerow({"date": "2025-02-01", "donor": "Renovate", + "commits": 0, "incomplete": "True", "fetched_at": "t"}) + w.writerow({"date": "2025-02-02", "donor": "Dependabot", + "commits": 11, "incomplete": "False", "fetched_at": "t"}) + + combos = fbd.load_fetched_combos(p) + assert ("2025-02-01", "Dependabot") in combos + assert ("2025-02-02", "Dependabot") in combos + # Incomplete row should NOT be treated as fetched + assert ("2025-02-01", "Renovate") not in combos + + +def test_load_fetched_combos_missing_file(tmp_path): + combos = fbd.load_fetched_combos(tmp_path / "does_not_exist.csv") + assert combos == set() diff --git a/tests/test_intervention_breaks.py b/tests/test_intervention_breaks.py new file mode 100644 index 0000000..6a95a6f --- /dev/null +++ b/tests/test_intervention_breaks.py @@ -0,0 +1,70 @@ +"""Smoke tests for intervention_breaks — BEAST + PyMC + PELT.""" +from __future__ import annotations + +import numpy as np +import pandas as pd +import pytest + +import intervention_breaks as ibr + + +def _make_series(n: int = 300, break_idx: int = 150, jump: float = 1.5, + seed: int = 42) -> pd.Series: + rng = np.random.default_rng(seed) + trend = np.arange(n) * 0.01 + y = trend + rng.normal(0, 0.3, n) + y[break_idx:] += jump + return pd.Series(y, index=pd.date_range("2025-01-01", periods=n)) + + +def test_pelt_detects_known_break(): + s = _make_series() + b = ibr.detect_break_pelt(s, penalty=5.0) + # Should find the break within ±10 days of the true location + assert b is not None + assert abs(b - 150) <= 10, f"PELT break at {b}, expected near 150" + + +def test_pelt_returns_none_on_stationary_noise(): + rng = np.random.default_rng(0) + s = pd.Series(rng.normal(0, 1, 300), + index=pd.date_range("2025-01-01", periods=300)) + b = ibr.detect_break_pelt(s, penalty=50.0) # high penalty + assert b is None + + +def test_beast_returns_posterior_mass_at_break(): + s = _make_series() + anchor = s.index[150] + r = ibr.fit_beast(s, anchor, window_days=5) + assert r["map_idx"] is not None + assert r["cp_prob"] is not None + # Most mass should fall within ±5 days of the true break + assert r["p_anchor_window"] > 0.5, ( + f"BEAST P(±5d of anchor) = {r['p_anchor_window']}, expected > 0.5") + + +def test_pymc_recovers_break_on_synthetic(): + s = _make_series() + anchor = s.index[150] + r = ibr.fit_pymc(s, anchor, window_days=10, draws=300, tune=300, + chains=2, rng_seed=0) + assert r["mean_idx"] is not None + # Posterior mean should be within 15 days of true break + assert abs(r["mean_idx"] - 150) <= 15, ( + f"PyMC mean idx {r['mean_idx']}, expected near 150") + assert r["p_anchor_window"] > 0.5 + + +def test_fit_pair_break_returns_all_method_columns(): + s = _make_series() + anchor = s.index[150] + row = ibr.fit_pair_break(s, anchor, window_days=5, run_pymc=False) + for k in ("beast_map_date", "beast_p_window", "pelt_date", + "pelt_days_from_anchor"): + assert k in row, f"missing key: {k}" + + +def test_detect_break_short_series_returns_none(): + s = pd.Series([1.0] * 20, index=pd.date_range("2025-01-01", periods=20)) + assert ibr.detect_break_pelt(s, min_size=30) is None diff --git a/tests/test_intervention_bsts.py b/tests/test_intervention_bsts.py new file mode 100644 index 0000000..8b22f8d --- /dev/null +++ b/tests/test_intervention_bsts.py @@ -0,0 +1,57 @@ +"""Tests for intervention_bsts.py — invariant checks, not numerical equality.""" +from pathlib import Path +import numpy as np +import pandas as pd +import pytest + +import intervention_data as idat +import intervention_bsts as ibsts + +FIX = Path(__file__).parent / "fixtures" / "intervention_small.csv" + + +@pytest.fixture +def series_and_X(): + df = idat.load_commits(FIX) + piv = idat.build_other_agents_total(df) + y = piv["other_agents_total"].astype(float) + X = pd.DataFrame(index=y.index, + data={"dow_1": (y.index.dayofweek == 1).astype(int), + "dow_5": (y.index.dayofweek == 5).astype(int)}) + return y, X + + +def test_fit_bsts_returns_expected_keys(series_and_X): + y, X = series_and_X + intervention = pd.Timestamp("2025-05-01") + result = ibsts.fit_bsts(y, X, intervention_date=intervention) + assert set(result.keys()) >= {"summary", "point_effect", + "cumulative_effect", "posterior_draws", + "p_cumulative_positive"} + + +def test_p_cumulative_between_zero_and_one(series_and_X): + y, X = series_and_X + intervention = pd.Timestamp("2025-05-01") + result = ibsts.fit_bsts(y, X, intervention_date=intervention) + p = result["p_cumulative_positive"] + assert 0.0 <= p <= 1.0 + + +def test_posterior_predictive_check_shape(series_and_X): + y, X = series_and_X + intervention = pd.Timestamp("2025-05-01") + result = ibsts.fit_bsts(y, X, intervention_date=intervention) + ppc = ibsts.posterior_predictive_check(result, y, intervention) + assert "pre_period_coverage" in ppc + assert 0.0 <= ppc["pre_period_coverage"] <= 1.0 + assert ppc["pre_period_days"] > 0 + + +def test_point_effect_length_matches_post_period(series_and_X): + y, X = series_and_X + intervention = pd.Timestamp("2025-05-01") + result = ibsts.fit_bsts(y, X, intervention_date=intervention) + post_len = (y.index >= intervention).sum() + assert len(result["point_effect"]) == post_len + assert len(result["cumulative_effect"]) == post_len diff --git a/tests/test_intervention_car.py b/tests/test_intervention_car.py new file mode 100644 index 0000000..3c3ec58 --- /dev/null +++ b/tests/test_intervention_car.py @@ -0,0 +1,73 @@ +"""Smoke tests for intervention_car event-window CAR analysis.""" +from __future__ import annotations + +import numpy as np +import pandas as pd +import pytest + +import intervention_car as icar + + +def _synthetic_market(n: int = 200, jump_idx: int = 150, + jump_mult: float = 1.5, seed: int = 0) -> pd.Series: + """Daily synthetic commit series with a multiplicative level jump.""" + rng = np.random.default_rng(seed) + base = 1000 + 5 * np.arange(n) + noise = rng.normal(0, 50, n) + y = base + noise + y[jump_idx:] *= jump_mult + return pd.Series(y, index=pd.date_range("2025-01-01", periods=n)) + + +def test_car_detects_known_jump(): + y = _synthetic_market(n=200, jump_idx=150, jump_mult=1.5) + intv = y.index[150] + r = icar.compute_car(y, intv, pre_days=90, window_pre=5, window_post=5) + assert r["car"] > 0 + assert r["z"] > 3, f"z = {r['z']} — expected strong positive CAR" + assert r["p"] < 0.01 + + +def test_car_null_on_quiet_series(): + y = _synthetic_market(n=200, jump_idx=150, jump_mult=1.0) # no jump + intv = y.index[150] + r = icar.compute_car(y, intv, pre_days=90, window_pre=5, window_post=5) + assert abs(r["z"]) < 3, f"z = {r['z']} — quiet series should be null" + + +def test_window_grid_returns_one_row_per_window(): + y = _synthetic_market(n=200, jump_idx=150, jump_mult=1.3) + intv = y.index[150] + windows = [(5, 5), (5, 10), (5, 20)] + g = icar.run_window_grid(y, intv, windows) + assert len(g) == 3 + assert list(g["window"]) == ["[-5, +5]", "[-5, +10]", "[-5, +20]"] + + +def test_contaminating_events_annotation(): + y = _synthetic_market(n=200, jump_idx=150, jump_mult=1.3) + intv = y.index[150] + contam = {y.index[153]: "fake event"} + g = icar.run_window_grid(y, intv, [(5, 5), (5, 10)], + contaminating_events=contam) + # Day 153 (+3d) is inside BOTH windows + assert "fake event" in g.iloc[0]["events_inside"] + assert "fake event" in g.iloc[1]["events_inside"] + + +def test_placebo_returns_correct_shape(): + y = _synthetic_market(n=200, jump_idx=150, jump_mult=1.3) + placebos = [y.index[100], y.index[120]] + df = icar.run_placebo_car(y, placebos, window_pre=5, window_post=5) + assert len(df) == 2 + assert "car" in df.columns and "p" in df.columns + + +def test_build_market_aggregate_excludes_tools(): + df = pd.DataFrame({ + "date": pd.date_range("2025-01-01", periods=3).tolist() * 3, + "tool": ["A"] * 3 + ["B"] * 3 + ["Claude Code"] * 3, + "commits": [10, 10, 10, 20, 20, 20, 100, 100, 100], + }) + y = icar.build_market_aggregate(df, exclude_tools=("Claude Code",)) + assert (y == 30).all() diff --git a/tests/test_intervention_data.py b/tests/test_intervention_data.py new file mode 100644 index 0000000..d62f1c6 --- /dev/null +++ b/tests/test_intervention_data.py @@ -0,0 +1,44 @@ +"""Unit tests for intervention_data.py.""" +from pathlib import Path +import pandas as pd +import pytest + +import intervention_data as idat + +FIX = Path(__file__).parent / "fixtures" / "intervention_small.csv" + + +def test_load_commits_shape(): + df = idat.load_commits(FIX) + assert "date" in df.columns and "tool" in df.columns and "commits" in df.columns + assert len(df) == 180 * 5 + + +def test_build_other_agents_excludes_claude_code(): + df = idat.load_commits(FIX) + out = idat.build_other_agents_total(df) + assert "Claude Code" not in out.columns + assert "other_agents_total" in out.columns + assert (out["other_agents_total"] >= 0).all() + + +def test_build_other_agents_excludes_aider_after_may_9(): + df = idat.load_commits(FIX) + out_with_cutoff = idat.build_other_agents_total(df) + out_without_cutoff = idat.build_other_agents_total(df, exclude_aider_after=None) + # After the Aider cutoff, the cutoff-enforcing series should be less or equal + may10 = pd.Timestamp("2025-05-10") + assert out_with_cutoff.loc[may10, "other_agents_total"] < \ + out_without_cutoff.loc[may10, "other_agents_total"] + + +def test_regressor_matrix_has_event_dummies(): + idx = pd.date_range("2025-02-01", "2026-04-09", freq="D") + X = idat.build_regressor_matrix(idx, events_csv=Path("events/model_releases.csv")) + assert "Claude 3.7 Sonnet" in X.columns + assert "Cursor 1.0 background agents GA" in X.columns + assert any(c.startswith("dow_") for c in X.columns) + # Step-dummy invariant + assert X.loc["2025-02-23", "Claude 3.7 Sonnet"] == 0 + assert X.loc["2025-02-24", "Claude 3.7 Sonnet"] == 1 + assert X.loc["2025-03-01", "Claude 3.7 Sonnet"] == 1 diff --git a/tests/test_intervention_events.py b/tests/test_intervention_events.py new file mode 100644 index 0000000..1c6c22f --- /dev/null +++ b/tests/test_intervention_events.py @@ -0,0 +1,44 @@ +"""Schema tests for events/model_releases.csv.""" +import csv +from datetime import date +from pathlib import Path + +EVENTS_CSV = Path(__file__).parent.parent / "events" / "model_releases.csv" +EXPECTED_COLS = ["date", "vendor", "event", "event_type", "source_url"] +VALID_TYPES = {"model_release", "agent_launch", "signature_change", "shutdown"} +VALID_VENDORS = {"Anthropic", "OpenAI", "Google", "Cursor", "GitHub", + "Cognition", "Replit", "Warp", "Codegen", "Aider", + "Sourcegraph", "All-Hands", "Roomote", "Lovable"} + + +def test_file_exists(): + assert EVENTS_CSV.exists(), f"missing {EVENTS_CSV}" + + +def test_schema_and_values(): + with EVENTS_CSV.open() as f: + rows = list(csv.DictReader(f)) + assert len(rows) >= 25, "event calendar is thin" + for row in rows: + assert list(row.keys()) == EXPECTED_COLS + y, m, d = (int(x) for x in row["date"].split("-")) + assert date(y, m, d) + assert row["event_type"] in VALID_TYPES + assert row["vendor"] in VALID_VENDORS + assert row["source_url"].startswith("http") + assert row["event"].strip() != "" + + +def test_claude_37_sonnet_present(): + with EVENTS_CSV.open() as f: + rows = list(csv.DictReader(f)) + hit = [r for r in rows if r["date"] == "2025-02-24" + and "3.7 Sonnet" in r["event"]] + assert len(hit) == 1, "Claude 3.7 Sonnet (key confound) must be in calendar" + + +def test_claude_code_web_launch_present(): + with EVENTS_CSV.open() as f: + rows = list(csv.DictReader(f)) + hit = [r for r in rows if r["date"] == "2025-10-20"] + assert hit, "Claude Code web launch must be in calendar" diff --git a/tests/test_intervention_pairs.py b/tests/test_intervention_pairs.py new file mode 100644 index 0000000..785b60c --- /dev/null +++ b/tests/test_intervention_pairs.py @@ -0,0 +1,56 @@ +"""Tests for intervention_pairs.py — log-ratio segmented regression ITS.""" +from pathlib import Path +import numpy as np +import pandas as pd + +import intervention_data as idat +import intervention_pairs as ipair + +FIX = Path(__file__).parent / "fixtures" / "intervention_small.csv" + + +def test_log_ratio_series_shape(): + df = idat.load_commits(FIX) + s = ipair.log_ratio("Claude Code", "Cursor", df) + assert s.index.is_monotonic_increasing + assert s.notna().all() + + +def test_segmented_regression_recovers_known_params(): + """Synthetic log-ratio with known level + slope shift at tau.""" + dates = pd.date_range("2025-02-01", "2025-07-30", freq="D") + tau_idx = 90 + t = np.arange(len(dates), dtype=float) + y = 0.5 + 0.01 * t + y[tau_idx:] += 1.0 + y[tau_idx:] += 0.02 * (t[tau_idx:] - tau_idx) + rng = np.random.default_rng(0) + y = y + rng.normal(0, 0.05, len(dates)) + s = pd.Series(y, index=dates) + tau = dates[tau_idx] + params = ipair.fit_segmented_regression(s, tau) + assert abs(params["gamma"] - 1.0) < 0.2 + assert abs(params["delta"] - 0.02) < 0.01 + assert "gamma_se" in params and params["gamma_se"] > 0 + assert "gamma_ci_lo" in params and "gamma_ci_hi" in params + assert params["gamma_ci_lo"] < params["gamma"] < params["gamma_ci_hi"] + + +def test_run_all_pairs_returns_dataframe(): + df = idat.load_commits(FIX) + pairs = [("Claude Code", "Cursor"), ("Claude Code", "Codex")] + tau = pd.Timestamp("2025-05-01") + out = ipair.run_all_pairs(df, pairs, tau) + assert set(out.columns) >= { + "pair", "partner", "gamma", "gamma_ci_lo", "gamma_ci_hi", + "delta", "delta_ci_lo", "delta_ci_hi", "r2", + } + assert len(out) == 2 + assert list(out["partner"]) == ["Cursor", "Codex"] + + +def test_pairs_to_run_no_duplicates(): + assert len(set(ipair.PAIRS_TO_RUN)) == len(ipair.PAIRS_TO_RUN) + for a, b in ipair.PAIRS_TO_RUN: + assert a == "Claude Code" + assert b != "Claude Code" diff --git a/tests/test_intervention_robustness.py b/tests/test_intervention_robustness.py new file mode 100644 index 0000000..21419f7 --- /dev/null +++ b/tests/test_intervention_robustness.py @@ -0,0 +1,86 @@ +"""Tests for intervention_robustness.py.""" +from pathlib import Path +import numpy as np +import pandas as pd +import pytest + +import intervention_data as idat +import intervention_robustness as ir + +FIX = Path(__file__).parent / "fixtures" / "intervention_small.csv" + + +def test_build_excluded_series_drops_excluded_tools(): + df = idat.load_commits(FIX) + full = idat.build_other_agents_total(df)["other_agents_total"] + exc = ir.build_excluded_series(df, exclude_tools=["Cursor"]) + # On dates where Cursor has > 0 commits, the excluded series must + # be strictly less than the full series + cursor_daily = df[df["tool"] == "Cursor"].groupby("date")["commits"].sum() + for d, c in cursor_daily.items(): + if c > 0 and d in full.index and d in exc.index: + assert exc.loc[d] <= full.loc[d] + + +def test_build_excluded_series_preserves_aider_cutoff(): + """The Aider post-cutoff zeroing must still apply after exclusion.""" + df = idat.load_commits(FIX) + exc = ir.build_excluded_series(df, exclude_tools=["Cursor"]) + # Check that we get a Series, not a DataFrame + assert isinstance(exc, pd.Series) + # Aider post-May-9 is zeroed in the underlying builder so this doesn't + # need a value check here — just that the function ran and returned + # something with the right shape + assert len(exc) > 0 + + +def test_fit_placebo_runs_without_error(): + df = idat.load_commits(FIX) + piv = idat.build_other_agents_total(df) + y = piv["other_agents_total"].astype(float) + X = pd.DataFrame(index=y.index, + data={"dow_1": (y.index.dayofweek == 1).astype(int)}) + placebo_date = pd.Timestamp("2025-06-01") + result = ir.fit_placebo(y, X, placebo_date=placebo_date) + assert "p_cumulative_positive" in result + assert "cumulative_effect" in result + assert 0.0 <= result["p_cumulative_positive"] <= 1.0 + + +def test_build_excluded_series_raises_on_unknown_tool(): + df = idat.load_commits(FIX) + with pytest.raises(ValueError, match="not in df"): + ir.build_excluded_series(df, exclude_tools=["DoesNotExist"]) + + +def test_fit_placebo_raises_on_out_of_range_date(): + df = idat.load_commits(FIX) + y = idat.build_other_agents_total(df)["other_agents_total"].astype(float) + X = pd.DataFrame(index=y.index, + data={"dow_1": (y.index.dayofweek == 1).astype(int)}) + with pytest.raises(ValueError, match="outside y range"): + ir.fit_placebo(y, X, placebo_date=pd.Timestamp("2027-01-01")) + + +def test_fit_placebo_raises_when_pre_start_after_placebo(): + df = idat.load_commits(FIX) + y = idat.build_other_agents_total(df)["other_agents_total"].astype(float) + X = pd.DataFrame(index=y.index, + data={"dow_1": (y.index.dayofweek == 1).astype(int)}) + with pytest.raises(ValueError, match="strictly before"): + ir.fit_placebo( + y, X, + placebo_date=pd.Timestamp("2025-03-01"), + pre_start=pd.Timestamp("2025-05-01"), + ) + + +def test_fit_cursor_excluded_raises_on_misaligned_X(): + df = idat.load_commits(FIX) + # X with only every other day — will not cover the full excluded-series index + y = ir.build_excluded_series(df, exclude_tools=["Cursor"]) + sparse_idx = y.index[::2] + X_sparse = pd.DataFrame(index=sparse_idx, + data={"dow_1": (sparse_idx.dayofweek == 1).astype(int)}) + with pytest.raises(ValueError, match="missing"): + ir.fit_cursor_excluded(df, X_sparse, pd.Timestamp("2025-05-01")) diff --git a/tests/test_intervention_sdid.py b/tests/test_intervention_sdid.py new file mode 100644 index 0000000..080fe64 --- /dev/null +++ b/tests/test_intervention_sdid.py @@ -0,0 +1,76 @@ +"""Tests for intervention_sdid.py — recovery of injected ATT on synthetic panel.""" +from pathlib import Path +import numpy as np +import pandas as pd +import pytest + +import intervention_sdid as isdid + +AGENTS_FIX = Path(__file__).parent / "fixtures" / "intervention_small.csv" +BOTS_FIX = Path(__file__).parent / "fixtures" / "bot_donors_small.csv" + + +def test_load_bot_donors(): + df = isdid.load_bot_donors(BOTS_FIX) + assert set(df.columns) >= {"date", "donor", "commits"} + assert df["commits"].dtype.kind in "iuf" + + +def test_build_long_panel_shape_and_types(): + agents = pd.read_csv(AGENTS_FIX, parse_dates=["date"]) + bots = isdid.load_bot_donors(BOTS_FIX) + intervention = pd.Timestamp("2025-05-01") + panel = isdid.build_long_panel( + agents, bots, + intervention_date=intervention, + treated_tools=["Cursor", "Codex", "Aider", "Devin"], + ) + assert len(panel) == 180 * 10 + assert set(panel.columns) == {"unit", "time", "Y", "treated"} + assert np.issubdtype(panel["time"].dtype, np.integer) + # Bots are NEVER treated + bot_names = {"Dependabot", "Renovate", "pre-commit-ci", + "semantic-release-bot", "allcontributors", "github-actions"} + assert panel[panel["unit"].isin(bot_names)]["treated"].sum() == 0 + # Infer the integer intervention_time from any treated cell + treated_rows = panel[panel["treated"] == 1] + assert len(treated_rows) > 0 + intervention_time = treated_rows["time"].min() + # All treated cells satisfy (agent AND time >= intervention_time) + treated_tools = {"Cursor", "Codex", "Aider", "Devin"} + for _, row in treated_rows.iterrows(): + assert row["unit"] in treated_tools + assert row["time"] >= intervention_time + # Strictly before intervention_time, nothing is treated + assert panel[panel["time"] < intervention_time]["treated"].sum() == 0 + + +def test_fit_sdid_returns_required_keys(): + agents = pd.read_csv(AGENTS_FIX, parse_dates=["date"]) + bots = isdid.load_bot_donors(BOTS_FIX) + panel = isdid.build_long_panel( + agents, bots, + intervention_date=pd.Timestamp("2025-05-01"), + treated_tools=["Cursor", "Codex", "Aider", "Devin"], + ) + result = isdid.fit_sdid(panel) + assert set(result.keys()) >= {"att", "unit_weights", "time_weights", + "n_treated_units", "n_control_units"} + assert isinstance(result["att"], float) + # 4 treated agents, 6 bot donors + assert result["n_treated_units"] == 4 + assert result["n_control_units"] == 6 + + +def test_unit_weights_are_nonneg_and_sum_to_one_approx(): + agents = pd.read_csv(AGENTS_FIX, parse_dates=["date"]) + bots = isdid.load_bot_donors(BOTS_FIX) + panel = isdid.build_long_panel( + agents, bots, + intervention_date=pd.Timestamp("2025-05-01"), + treated_tools=["Cursor", "Codex", "Aider", "Devin"], + ) + result = isdid.fit_sdid(panel) + w = result["unit_weights"] + assert (w >= -1e-6).all() # nonneg up to numerical tolerance + assert abs(w.sum() - 1.0) < 1e-3 diff --git a/tests/test_intervention_sigmoids.py b/tests/test_intervention_sigmoids.py new file mode 100644 index 0000000..2dd0ae3 --- /dev/null +++ b/tests/test_intervention_sigmoids.py @@ -0,0 +1,56 @@ +"""Tests for intervention_sigmoids.py — 3-param logistic fit. + +These are descriptive visuals only; tests verify the fitter recovers +known parameters on synthetic data, not that the fits are statistically +meaningful on real data. +""" +import numpy as np +import pandas as pd + +import intervention_sigmoids as isig + + +def test_logistic_at_midpoint(): + t = np.array([10.0]) + K, r, t0 = 100.0, 0.5, 10.0 + assert abs(isig.logistic(t, K, r, t0)[0] - 50.0) < 1e-6 + + +def test_fit_recovers_known_params(): + t = np.arange(200.0) + K_true, r_true, t0_true = 1000.0, 0.05, 100.0 + y = isig.logistic(t, K_true, r_true, t0_true) + rng = np.random.default_rng(0) + y = y + rng.normal(0, 5, len(t)) + K_fit, r_fit, t0_fit = isig.fit_sigmoid(t, y) + assert abs(K_fit - K_true) / K_true < 0.05 + assert abs(r_fit - r_true) / r_true < 0.15 + assert abs(t0_fit - t0_true) < 5 + + +def test_fit_sigmoid_handles_all_zero_series(): + """All-zero cumulative series should fit without crashing and return + finite parameters (even if meaningless on a flat series).""" + t = np.arange(50.0) + y = np.zeros(50) + K, r, t0 = isig.fit_sigmoid(t, y) + assert np.isfinite(K) and np.isfinite(r) and np.isfinite(t0) + + +def test_fit_sigmoid_raises_on_empty_input(): + import pytest + with pytest.raises(ValueError): + isig.fit_sigmoid(np.array([]), np.array([])) + + +def test_fit_sigmoid_handles_single_point_at_zero(): + """Degenerate single-point case at t=0 used to produce bounds[0][2] + == bounds[1][2] == 0 which scipy.curve_fit rejects. The fix enforces + strict bound ordering via t0_upper = max(t_max*2, t_max+1).""" + t = np.array([0.0]) + y = np.array([0.0]) + try: + K, r, t0 = isig.fit_sigmoid(t, y) + assert np.isfinite(K) and np.isfinite(r) and np.isfinite(t0) + except RuntimeError: + pass diff --git a/tests/test_intervention_var.py b/tests/test_intervention_var.py new file mode 100644 index 0000000..80e2818 --- /dev/null +++ b/tests/test_intervention_var.py @@ -0,0 +1,83 @@ +"""Tests for intervention_var.py — ALR transform + VAR IRF.""" +import numpy as np +import pandas as pd + +import intervention_var as ivar + + +def test_alr_transform_invertible(): + """ALR(x) then ALR^-1 should recover the original shares.""" + rng = np.random.default_rng(0) + dates = pd.date_range("2025-02-01", "2025-09-30", freq="D") + raw = rng.dirichlet(np.ones(5), size=len(dates)) + df = pd.DataFrame(raw, index=dates, + columns=[f"tool{i}" for i in range(5)]) + alr = ivar.alr_transform(df, reference="tool0") + assert alr.shape == (len(dates), 4) + assert "tool0" not in alr.columns + back = ivar.alr_inverse(alr, reference="tool0") + # Back-transform should match original up to numerical noise + np.testing.assert_allclose(back[df.columns].values, df.values, atol=1e-8) + + +def test_compute_shares_sums_to_one(): + """Shares across the included tools must sum to 1 on every date.""" + df = pd.DataFrame({ + "date": ["2025-02-01"] * 3 + ["2025-02-02"] * 3, + "tool": ["a", "b", "c"] * 2, + "commits": [5, 5, 10, 0, 10, 10], + }) + df["date"] = pd.to_datetime(df["date"]) + shares = ivar.compute_shares(df, tools=["a", "b", "c"]) + row_sums = shares.sum(axis=1) + np.testing.assert_allclose(row_sums.values, 1.0, atol=1e-8) + + +def test_fit_var_irf_shape(): + rng = np.random.default_rng(1) + dates = pd.date_range("2025-02-01", "2025-09-30", freq="D") + data = pd.DataFrame(rng.normal(size=(len(dates), 4)), + index=dates, + columns=["a", "b", "c", "d"]) + res = ivar.fit_var(data, lag_order=2) + irf = ivar.impulse_response(res, n_steps=10) + # IRF shape: (n_steps + 1, k, k) + assert irf.shape == (11, 4, 4) + + +def test_compute_shares_handles_zero_day(): + """If every tool is zero on a day, shares should be uniform (1/K) + rather than NaN.""" + df = pd.DataFrame({ + "date": pd.to_datetime(["2025-02-01", "2025-02-01", + "2025-02-02", "2025-02-02"]), + "tool": ["a", "b", "a", "b"], + "commits": [0, 0, 5, 15], + }) + shares = ivar.compute_shares(df, tools=["a", "b"]) + # First date: uniform; second: 0.25 / 0.75 + assert abs(shares.loc["2025-02-01", "a"] - 0.5) < 1e-6 + assert abs(shares.loc["2025-02-02", "b"] - 0.75) < 1e-6 + + +def test_full_pipeline_on_compositional_data(): + """ALR -> VAR -> IRF on actual compositional shares (Dirichlet-simulated). + + Synthetic-iid tests don't exercise the compositional structure. This + test generates Dirichlet-distributed shares and confirms the full + pipeline produces finite IRFs of the expected shape without crashing + on rank-deficient covariance. + """ + rng = np.random.default_rng(7) + dates = pd.date_range("2025-02-01", "2026-01-01", freq="D") + k = 7 + # Dirichlet draws have the compositional constraint by construction + raw = rng.dirichlet(np.ones(k) * 2.0, size=len(dates)) + shares = pd.DataFrame(raw, index=dates, + columns=[f"tool{i}" for i in range(k)]) + alr = ivar.alr_transform(shares, reference="tool0") + assert alr.shape == (len(dates), k - 1) + res = ivar.fit_var(alr, lag_order=2) + irf = ivar.impulse_response(res, n_steps=20) + assert irf.shape == (21, k - 1, k - 1) + assert np.isfinite(irf).all() diff --git a/tests/test_run_pipeline.py b/tests/test_run_pipeline.py new file mode 100644 index 0000000..b93e59d --- /dev/null +++ b/tests/test_run_pipeline.py @@ -0,0 +1,275 @@ +"""Tests for the pipeline orchestrator.""" +from run_pipeline import PipelineResult, StepResult, Severity, classify + + +def test_clean_when_all_steps_pass_no_anomalies(): + r = PipelineResult(mode="daily", end_date="2026-04-12", steps=[ + StepResult(name="commits", ok=True, stderr=""), + StepResult(name="carbon", ok=True, stderr=""), + StepResult(name="dashboard", ok=True, stderr=""), + ], anomalies=[], empty_dates=[]) + assert classify(r) == Severity.CLEAN + + +def test_anomaly_when_steps_pass_but_scan_flags(): + r = PipelineResult(mode="daily", end_date="2026-04-12", steps=[ + StepResult(name="commits", ok=True, stderr=""), + ], anomalies=[("tool_a", "DROP")], empty_dates=[]) + assert classify(r) == Severity.ANOMALY + + +def test_partial_when_some_steps_fail(): + r = PipelineResult(mode="daily", end_date="2026-04-12", steps=[ + StepResult(name="commits", ok=True, stderr=""), + StepResult(name="carbon", ok=False, stderr="KeyError"), + ], anomalies=[], empty_dates=[]) + assert classify(r) == Severity.PARTIAL + + +def test_fatal_when_all_steps_fail(): + r = PipelineResult(mode="daily", end_date="2026-04-12", steps=[ + StepResult(name="commits", ok=False, stderr="token"), + StepResult(name="carbon", ok=False, stderr="skipped"), + ], anomalies=[], empty_dates=[]) + assert classify(r) == Severity.FATAL + + +def test_partial_takes_priority_over_anomaly(): + """If both PARTIAL and ANOMALY are true, severity is PARTIAL (the more urgent).""" + r = PipelineResult(mode="daily", end_date="2026-04-12", steps=[ + StepResult(name="commits", ok=True, stderr=""), + StepResult(name="carbon", ok=False, stderr="oops"), + ], anomalies=[("tool_a", "DROP")], empty_dates=[]) + assert classify(r) == Severity.PARTIAL + + +def test_empty_dates_force_partial(): + """A date with zero commits across all tools indicates a backfill problem.""" + r = PipelineResult(mode="daily", end_date="2026-04-12", steps=[ + StepResult(name="commits", ok=True, stderr=""), + ], anomalies=[], empty_dates=["2026-04-10"]) + assert classify(r) == Severity.PARTIAL + + +def test_run_step_success(tmp_path): + import sys + from run_pipeline import run_step + r = run_step("hello", [sys.executable, "-c", "print('hi')"]) + assert r.ok is True + assert r.name == "hello" + assert "hi" in r.stdout + + +def test_run_step_failure_captures_stderr(): + import sys + from run_pipeline import run_step + r = run_step("bad", [sys.executable, "-c", "import sys; sys.stderr.write('boom'); sys.exit(2)"]) + assert r.ok is False + assert "boom" in r.stderr + + +def test_run_step_missing_command(): + from run_pipeline import run_step + r = run_step("missing", ["this-command-does-not-exist-12345"]) + assert r.ok is False + assert r.stderr # non-empty + + +from unittest.mock import patch + + +def _fake_runner(recorded): + """Return a run_step replacement that records calls and always succeeds.""" + def fake(name, cmd, **kwargs): + from run_pipeline import StepResult + recorded.append((name, cmd)) + return StepResult(name=name, ok=True, stdout="", stderr="") + return fake + + +def test_daily_runs_expected_steps_in_order(tmp_path): + from run_pipeline import run_daily + recorded = [] + with patch("run_pipeline.run_step", side_effect=_fake_runner(recorded)), \ + patch("run_pipeline.scan_anomalies", return_value=[]), \ + patch("run_pipeline._check_empty_dates", return_value=[]): + result = run_daily(end_date="2026-04-12") + names = [n for (n, _cmd) in recorded] + assert names == ["commits", "carbon", "dashboard"] + assert all(s.ok for s in result.steps) + + +def test_daily_continues_when_carbon_fails(tmp_path): + from run_pipeline import run_daily, StepResult + calls = [] + + def fake_run_step(name, cmd, **kwargs): + calls.append(name) + ok = (name != "carbon") + return StepResult(name=name, ok=ok, stderr="" if ok else "boom") + + with patch("run_pipeline.run_step", side_effect=fake_run_step), \ + patch("run_pipeline.scan_anomalies", return_value=[]), \ + patch("run_pipeline._check_empty_dates", return_value=[]): + result = run_daily(end_date="2026-04-12") + assert calls == ["commits", "carbon", "dashboard"] + assert not any(s.ok for s in result.steps if s.name == "carbon") + + +def test_weekly_prepends_bigquery_steps(): + from run_pipeline import run_weekly + recorded = [] + with patch("run_pipeline.run_step", side_effect=_fake_runner(recorded)), \ + patch("run_pipeline.scan_anomalies", return_value=[]), \ + patch("run_pipeline._check_empty_dates", return_value=[]): + run_weekly(end_date="2026-04-12") + names = [n for (n, _cmd) in recorded] + assert names == ["branch_activity", "daily_totals", "commits", "carbon", "dashboard"] + + +# --------------------------------------------------------------------------- +# Task 7: post_slack tests +# --------------------------------------------------------------------------- + +def test_post_slack_skipped_when_dry_run(): + """When dry_run=True, _http_post should never be called.""" + from run_pipeline import post_slack + called = [] + post_slack("https://hooks.slack.com/fake", "hello", dry_run=True, + _http_post=lambda url, payload: called.append((url, payload))) + assert called == [] + + +def test_post_slack_sends_payload_when_not_dry(): + """When dry_run=False with a real URL and message, _http_post is called with {"text": ...}.""" + from run_pipeline import post_slack + called = [] + post_slack("https://hooks.slack.com/fake", "hello", dry_run=False, + _http_post=lambda url, payload: called.append((url, payload))) + assert len(called) == 1 + assert called[0][1] == {"text": "hello"} + + +def test_post_slack_noop_when_no_url(): + """When the webhook URL is empty, _http_post should never be called.""" + from run_pipeline import post_slack + called = [] + post_slack("", "hello", dry_run=False, + _http_post=lambda url, payload: called.append((url, payload))) + assert called == [] + + +def test_main_dry_run_does_not_call_post(monkeypatch): + """With --dry-run, main() should not call the real HTTP poster.""" + from run_pipeline import PipelineResult, StepResult + http_calls = [] + + def fake_run_daily(end_date): + return PipelineResult( + mode="daily", end_date=end_date, + steps=[StepResult(name="commits", ok=False, stderr="token error")], + anomalies=[], empty_dates=[], + ) + + monkeypatch.setattr("run_pipeline.run_daily", fake_run_daily) + monkeypatch.setattr("run_pipeline._http_post_real", + lambda url, payload: http_calls.append((url, payload))) + monkeypatch.setenv("SLACK_WEBHOOK_URL", "https://hooks.slack.com/fake") + + from run_pipeline import main + main(["--mode", "daily", "--dry-run", "--end-date", "2026-04-12"]) + + assert http_calls == [] + + +def test_post_slack_swallows_http_errors(capsys): + """A failed webhook POST must not raise; it logs a warning and returns.""" + import urllib.error + from run_pipeline import _http_post_real + + # Use an unroutable URL so the real urlopen fails fast with URLError. + try: + _http_post_real("http://127.0.0.1:1/invalid", {"text": "hi"}) + except Exception as exc: + raise AssertionError(f"_http_post_real must not raise, got: {exc}") + captured = capsys.readouterr() + assert "Slack webhook POST failed" in captured.err + + +# --------------------------------------------------------------------------- +# Task 8: commit_back tests +# --------------------------------------------------------------------------- + +def test_commit_back_noop_when_nothing_changed(monkeypatch, tmp_path): + """When git diff --quiet returns 0 (no changes), git commit must NOT be called.""" + from run_pipeline import commit_back, DATA_PATHS + + # Create stub files in tmp_path so Path(p).exists() returns True for all DATA_PATHS + for p in DATA_PATHS: + (tmp_path / p).write_text("stub") + + calls = [] + + def fake_subprocess_run(cmd, **kwargs): + calls.append(list(cmd)) + # returncode=0 means no diff → nothing to commit + return type("CP", (), {"returncode": 0, "stdout": "", "stderr": ""})() + + monkeypatch.setattr("run_pipeline.subprocess.run", fake_subprocess_run) + # Redirect REPO_ROOT so Path(p).exists() finds the stub files + import run_pipeline + monkeypatch.setattr(run_pipeline, "REPO_ROOT", tmp_path) + + # Temporarily change working directory so relative Path(p).exists() finds files + monkeypatch.chdir(tmp_path) + + result = commit_back("chore(data): test", dry_run=False) + + assert result is False + # git commit must NOT have been called + # Check that no cmd has "commit" as a standalone argument (not in filenames) + git_verbs = [cmd[1] for cmd in calls if cmd and cmd[0] == "git" and len(cmd) > 1] + assert "commit" not in git_verbs + + +def test_commit_back_commits_when_changed(monkeypatch, tmp_path): + """When git diff --quiet returns 1 (changes exist), git add/commit/push must be called.""" + from run_pipeline import commit_back, DATA_PATHS + + # Create stub files so Path(p).exists() returns True + for p in DATA_PATHS: + (tmp_path / p).write_text("stub") + + call_log = [] + + def fake_subprocess_run(cmd, **kwargs): + call_log.append(list(cmd)) + # git diff --quiet returns 1 (changes exist); all other calls return 0 + if "diff" in cmd: + return type("CP", (), {"returncode": 1, "stdout": "", "stderr": ""})() + return type("CP", (), {"returncode": 0, "stdout": "", "stderr": ""})() + + monkeypatch.setattr("run_pipeline.subprocess.run", fake_subprocess_run) + monkeypatch.chdir(tmp_path) + + result = commit_back("chore(data): test", dry_run=False) + + assert result is True + joined = [" ".join(c) for c in call_log] + assert any("git add" in s for s in joined) + assert any("git commit" in s for s in joined) + assert any("git push" in s for s in joined) + + +def test_commit_back_skips_everything_when_dry_run(monkeypatch): + """With dry_run=True, no subprocess calls should be made at all.""" + import subprocess + from run_pipeline import commit_back + + calls = [] + monkeypatch.setattr("run_pipeline.subprocess.run", lambda *a, **kw: calls.append(a)) + + result = commit_back("chore(data): test", dry_run=True) + + assert result is False + assert calls == [] diff --git a/tests/test_slack_formatting.py b/tests/test_slack_formatting.py new file mode 100644 index 0000000..605642e --- /dev/null +++ b/tests/test_slack_formatting.py @@ -0,0 +1,73 @@ +"""Snapshot-ish tests for Slack message formatting.""" +from run_pipeline import ( + PipelineResult, StepResult, format_slack_message, +) +from anomaly_analysis import Anomaly + + +def test_clean_returns_none(): + r = PipelineResult(mode="daily", end_date="2026-04-12", steps=[ + StepResult(name="commits", ok=True), + StepResult(name="carbon", ok=True), + StepResult(name="dashboard", ok=True), + ]) + assert format_slack_message(r) is None + + +def test_fatal_message_contains_marker_and_stderr(): + r = PipelineResult(mode="daily", end_date="2026-04-12", steps=[ + StepResult(name="commits", ok=False, stderr="BAD_CREDENTIALS"), + ]) + msg = format_slack_message(r) + assert "❌" in msg + assert "failed" in msg.lower() + assert "BAD_CREDENTIALS" in msg + + +def test_partial_message_lists_failed_steps(): + r = PipelineResult(mode="daily", end_date="2026-04-12", steps=[ + StepResult(name="commits", ok=True), + StepResult(name="carbon", ok=False, stderr="KeyError 'tool_name'"), + StepResult(name="dashboard", ok=True), + ]) + msg = format_slack_message(r) + assert "⚠️" in msg + assert "carbon" in msg + assert "KeyError" in msg + assert "commits" in msg # successful steps listed too + + +def test_anomaly_message_lists_findings(): + r = PipelineResult(mode="daily", end_date="2026-04-12", steps=[ + StepResult(name="commits", ok=True), + ], anomalies=[ + Anomaly(tool="Aider", date="2026-04-12", type="DROP", + prev_avg=200.0, curr_avg=50.0, ratio=0.25), + ]) + msg = format_slack_message(r) + assert "🔍" in msg + assert "Aider" in msg + assert "DROP" in msg + + +def test_backfill_empty_dates_appear(): + r = PipelineResult(mode="daily", end_date="2026-04-12", steps=[ + StepResult(name="commits", ok=True), + ], empty_dates=["2026-04-10", "2026-04-11"]) + msg = format_slack_message(r) + assert "🔧" in msg + assert "2026-04-10" in msg + assert "2026-04-11" in msg + + +def test_combined_partial_and_anomaly(): + r = PipelineResult(mode="daily", end_date="2026-04-12", steps=[ + StepResult(name="commits", ok=True), + StepResult(name="carbon", ok=False, stderr="nope"), + ], anomalies=[ + Anomaly(tool="Cursor", date="2026-04-12", type="SPIKE", + prev_avg=500.0, curr_avg=1800.0, ratio=3.6), + ]) + msg = format_slack_message(r) + assert "⚠️" in msg + assert "🔍" in msg diff --git a/vendor/synthdid/LICENSE b/vendor/synthdid/LICENSE new file mode 100644 index 0000000..4378b7a --- /dev/null +++ b/vendor/synthdid/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Alexander Quispe, Jhon Flores and Rodrigo Grijalba + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/vendor/synthdid/README.md b/vendor/synthdid/README.md new file mode 100644 index 0000000..dfa3217 --- /dev/null +++ b/vendor/synthdid/README.md @@ -0,0 +1,23 @@ +# synthdid (vendored library) + +Vendored subset of https://github.com/d2cml-ai/synthdid.py +Contains only the library source (Python modules + LICENSE). + +Why vendored: +- The PyPI `synthdid` package pins numpy==1.23.5 and other pre-2024 + dependencies that fail to build on Python 3.14. +- The library source itself works on modern numpy/pandas with a + one-line pandas 3.x compatibility shim (pd.DataFrame.applymap -> + pd.DataFrame.map), applied in `intervention_sdid.py` before import. + +Source: d2cml-ai/synthdid.py main branch, cloned 2026-04-20. The upstream +repo also contains example notebooks, PDF manuals, and weight-generation +scripts that are not needed here; only the `synthdid/` Python package +directory was vendored. + +Usage: + import sys; sys.path.insert(0, "vendor") + import pandas as pd + if not hasattr(pd.DataFrame, "applymap"): + pd.DataFrame.applymap = pd.DataFrame.map + from synthdid.sdid import sdid diff --git a/vendor/synthdid/__init__.py b/vendor/synthdid/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/vendor/synthdid/get_data.py b/vendor/synthdid/get_data.py new file mode 100644 index 0000000..2088a16 --- /dev/null +++ b/vendor/synthdid/get_data.py @@ -0,0 +1,65 @@ +import pandas as pd, numpy as np + +def california_prop99() -> pd.DataFrame: + return pd.read_csv("https://github.com/d2cml-ai/Synthdid.jl/raw/stag_treat/data/california_prop99.csv", sep=";") + +def quota() -> pd.DataFrame: + return pd.read_csv("https://github.com/d2cml-ai/Synthdid.jl/raw/stag_treat/data/quota.csv") + +# print(quota()) +# _path = os.path.join(os.path.dirname(__file__), '../data/MLAB_data.txt') + +# def fetch_CaliforniaSmoking() -> pd.DataFrame: +# """ +# This data is from https://web.stanford.edu/~jhain/synthpage.html +# [Return] +# pd.DataFrame +# """ + +# _raw = pd.read_csv(_path, sep="\t", header=None) + +# _raw.columns = [ +# "Alabama", +# "Arkansas", +# "Colorado", +# "Connecticut", +# "Delaware", +# "Georgia", +# "Idaho", +# "Illinois", +# "Indiana", +# "Iowa", +# "Kansas", +# "Kentucky", +# "Louisiana", +# "Maine", +# "Minnesota", +# "Mississippi", +# "Missouri", +# "Montana", +# "Nebraska", +# "Nevada", +# "New Hampshire", +# "New Mexico", +# "North Carolina", +# "North Dakota", +# "Ohio", +# "Oklahoma", +# "Pennsylvania", +# "Rhode Island", +# "South Carolina", +# "South Dakota", +# "Tennessee", +# "Texas", +# "Utah", +# "Vermont", +# "Virginia", +# "West Virginia", +# "Wisconsin", +# "Wyoming", +# "California", +# ] + +# _raw.index = [i for i in range(1962, 2001)] + +# return _raw.loc[1970:] \ No newline at end of file diff --git a/vendor/synthdid/placebo_simulations.py b/vendor/synthdid/placebo_simulations.py new file mode 100644 index 0000000..dbf4a76 --- /dev/null +++ b/vendor/synthdid/placebo_simulations.py @@ -0,0 +1,147 @@ +import pandas as pd +import numpy as np +from scipy.linalg import svd, norm +import statsmodels.api as sm +import random + +def decompose_Y(Y, rank): + N = Y.shape[0] + T = Y.shape[1] + U, D, Vt = svd(Y, full_matrices = False) + + factor_unit = np.matrix(U[:,0:rank] * np.sqrt(N)) + factor_time = np.matrix(Vt.T[:,0:rank] * np.sqrt(T)) + + magnitude = D[0:rank]/np.sqrt(N*T) + L = factor_unit*np.diag(magnitude)*factor_time.T + + E = Y-L + F = L.mean(axis=1)*np.repeat(1,T)[:,np.newaxis].T + np.repeat(1,N)[:,np.newaxis] * L.mean(axis=0) - np.mean(L) + M = L - F + return {"F":F, "M":M, "E":E, "unit_factors":factor_unit} + + +def ar2_correlation_matrix(ar_coef,T): + result = np.repeat(0.0,T) + result[0] = 1 + result[1] = ar_coef[0]/(1-ar_coef[1]) + + for t in range(2,T): + result[t] = ar_coef[0]*result[t-1] + ar_coef[1]*result[t-2] + + index_matrix = np.abs(np.arange(0,T)[:,np.newaxis] - np.arange(0,T)[:,np.newaxis].T) + cor_matrix = result[index_matrix] + return cor_matrix + + +def fit_ar2(E): + T_full = E.shape[1] + E_ts = E[:,2:T_full] + E_lag_1 = E[:,1:(T_full-1)] + E_lag_2 = E[:,0:(T_full-2)] + + a_1 = np.sum(np.diag(E_lag_1*(E_lag_1).T)) + a_2 = np.sum(np.diag(E_lag_2*(E_lag_2).T)) + a_3 = np.sum(np.diag(E_lag_1*(E_lag_2).T)) + + matrix_factor = np.matrix([[a_1, a_3], [a_3, a_2]]) + + b_1 = np.sum(np.diag(E_lag_1*(E_ts).T)) + b_2 = np.sum(np.diag(E_lag_2*(E_ts).T)) + + ar_coef = np.matmul(np.linalg.inv(matrix_factor), [b_1, b_2]) + return np.array(ar_coef)[0] + + +def estimate_dgp(Y, assignment_vector, rank): + N = (Y).shape[0] + T = (Y).shape[1] + overall_mean = np.mean(Y) + overall_sd = np.linalg.norm(Y - overall_mean)/np.sqrt(N*T) + Y_norm = (Y-overall_mean)/overall_sd + + components = decompose_Y(Y_norm, rank = rank) + M = components["M"] + F = components["F"] + E = components["E"] + unit_factors = components["unit_factors"] + + ar_coef = np.round(fit_ar2(E),2) + cor_matrix = ar2_correlation_matrix(ar_coef,T) + scale_sd = np.linalg.norm(E.T*E/N)/np.linalg.norm(cor_matrix) + cov_mat = cor_matrix*scale_sd + + unit_factors = sm.add_constant(unit_factors) + model= sm.GLM(assignment_vector, unit_factors, family=sm.families.Binomial()) + model_fit = model.fit() + assign_prob = model_fit.predict() + + return {"F":F, "M":M, "Sigma":cov_mat, "pi":assign_prob, "ar_coef":ar_coef} + +def randomize_treatment(pi, N, N1): + assignment_sim = np.random.binomial(n = 1, p = pi, size = N) + index_as = np.array(np.where(assignment_sim==1))[0] + index_as = index_as.tolist() + + if np.sum(assignment_sim) > N1: + index_pert = random.sample(index_as,N1) + assignment_sim = np.repeat(0,N) + assignment_sim[index_pert] = 1 + elif np.sum(assignment_sim) == 0: + index_pert = random.sample(np.arange(1,N),N1) + assignment_sim = np.repeat(0,N) + assignment_sim[index_pert] = 1 + return assignment_sim + + +def simulate_dgp(parameters, N1, T1): + F = parameters["F"] + M = parameters["M"] + Sigma = parameters["Sigma"] + pi = parameters["pi"] + + N = M.shape[0] + T = M.shape[1] + + assignment = randomize_treatment(pi,N,N1) + N1 = np.sum(assignment) + N0 = N - N1 + T0 = T - T1 + + Y = F + M + np.random.multivariate_normal(np.zeros(Sigma.shape[0]), Sigma, N) + return {"Y":Y[np.argsort(assignment).tolist(), :], "N0":N0, "T0":T0} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/vendor/synthdid/plots.py b/vendor/synthdid/plots.py new file mode 100644 index 0000000..0644a37 --- /dev/null +++ b/vendor/synthdid/plots.py @@ -0,0 +1,205 @@ +import matplotlib, matplotlib.pyplot as plt, numpy as np, pandas as pd, math + +class Plots: + def plot_outcomes(self, times = None, time_title_cb = int, labels=None, wtplot=True, axlimit_zero=False): + # matplotlib.use('Agg') + sdid_weights = self.weights + lambda_wg = sdid_weights["lambda"] + omega_wg = sdid_weights["omega"] + table_result = self.att_info + N0s, T0s = table_result.N0, table_result.T0 + if times is None: + times = table_result.time + if labels is None: + labels = ['Control','Treatment'] + + Y_setups = self.Y_betas + t_span = np.sort(np.unique(self.data_ref.time)) + # plots = {} + plots = [] + for i, time in enumerate(times): + omega_hat = omega_wg[i] + lambda_hat = lambda_wg[i] + N0, T0 = N0s[i], T0s[i] + Y_year = np.array(Y_setups[i]) + Y_t = np.mean(Y_year[N0:, :], axis=0) + Y_c = Y_year[:N0, :] + n_features = Y_c.shape[0] + Y_sdid_traj = np.dot(omega_hat, Y_c) + + values_traj = np.concatenate((Y_sdid_traj, Y_t)) + + plot_y_min = values_traj.min() + plot_y_max = values_traj.max() + plot_height = plot_y_max - plot_y_min + base_plot = plot_y_min - plot_height / 5 + if axlimit_zero: + base_plot = 0 + + trajectory = pd.DataFrame( + { + "time": t_span, + 'control': Y_sdid_traj, + 'treatment': Y_t + } + ) + + fig, ax = plt.subplots() + ax.plot("time", "control", label=labels[0], data=trajectory, linestyle="--") + ax.plot("time", "treatment", label=labels[1], data=trajectory) + ax.legend(loc='upper right', fontsize=10, frameon=False) + if base_plot < 0 and plot_y_max > 0: + ax.axhline(y=0, color="grey", linestyle="--", lw=.8, alpha=.3) + if wtplot: + # Secondary y-axis for lambda weights, matching Stata: + # ylim(0, 3) so lambda=1.0 appears at 1/3 of chart height (bottom third), + # then relabel ticks to show the true 0-1 scale. + ax2 = ax.twinx() + # Prepend a zero anchor one year before the pre-treatment period and + # end at the last pre-treatment year (no explicit zero at treatment + # year). This closes the polygon with a vertical right wall at the + # last pre-treatment year, matching Stata's twoway area behaviour. + pre_years = t_span[:T0] + anchor_year = pre_years[0] - 1 + lambda_times = np.concatenate([[anchor_year], pre_years]) + lambda_values = np.concatenate([[0], lambda_hat]) + ax2.fill_between(lambda_times, 0, lambda_values, alpha=0.6, color="#556B2F") + ax2.set_ylim(0, 3) + ax2.set_yticks([0, 0.25, 0.5, 0.75, 1.0]) + ax2.set_yticklabels(["0.0", "0.3", "0.5", "0.8", "1.0"]) + ax2.set_ylabel("Lambda weight") + # Extend x-axis 3 years to the left so small pre-treatment triangles are + # not clipped at the edge (mirrors Stata's default padding behaviour). + ax.set_xlim(t_span[0] - 3, t_span[-1] + 1) + ax.axvline(x=times[i], label="", color='r', linestyle="-", lw=.8) + + ax.set_xlabel("Time") + ax.set_title("Adoption: " + str(time_title_cb(time))); + + # Set y-axis limits AFTER all plotting to match Stata's tick-aligned axis range. + # Both bottom and top are aligned to the nearest "nice" tick, matching Stata's + # twoway defaults. The tick interval is the same one Stata would auto-select + # for ~4 ticks. Fallback to a 5% margin when the tick boundary is too far away. + if axlimit_zero: + ax.set_ylim(ymin=0) + else: + _rng = plot_y_max - plot_y_min + _rough = _rng / 4.0 + _exp = math.floor(math.log10(_rough)) + _base = 10 ** _exp + _nf = _rough / _base + if _nf < 1.5: _tick = _base + elif _nf < 3.0: _tick = 2 * _base + elif _nf < 7.0: _tick = 5 * _base + else: _tick = 10 * _base + # Bottom: use tick_floor when gap ≤ 50% of one tick interval; else + # use the data minimum directly (no added margin), matching Stata. + _tick_floor = math.floor(plot_y_min / _tick) * _tick + if (plot_y_min - _tick_floor) / _tick > 0.5: + _y_bot = plot_y_min + else: + _y_bot = _tick_floor + # Top: use tick_ceil when gap ≤ 75% of one tick interval; else 5% margin. + _tick_ceil = math.ceil(plot_y_max / _tick) * _tick + if (_tick_ceil - plot_y_max) / _tick > 0.75: + _y_top = plot_y_max + 0.05 * _rng + else: + _y_top = _tick_ceil + ax.set_ylim(bottom=_y_bot, top=_y_top) + + # plots[f"t_{time}"] = fig + plots.append(fig) + self.plot_outcomes = [] + self.plot_outcomes = plots + return self + + def plot_weights(self, unit_filter=None, times=None, time_title_cb=int): + weights = self.weights + table_result = self.att_info + lambda_wg = weights["lambda"] + omega_wg = weights["omega"] + N0s = table_result.N0 + T0s = table_result.T0 + T1s = table_result.T1 + N1s = table_result.N1 + atts = np.round(table_result.att_time, 2) + y_units = self.Y_units + Y_setups = self.Y_betas + + if times is None: + times = table_result.time + + real_att = np.round(self.att, 2) + + # label_size + ls = np.arange(0, 114, 1) + ls_rel = np.interp(ls, (ls.min(), ls.max()), (9, 4))#[len(weights_dots) - 1] + # ns = ls_rel[0] + if unit_filter is not None: + l_unit_f = len(unit_filter) + if l_unit_f > 114: + ns = ls_rel[113] + ns = ls_rel[l_unit_f - 1] + plots = [] + def plot_times(i): + + N0, T0, N1, T1 = N0s[i], T0s[i], N1s[i], T1s[i] + + units = y_units[i][:N0] + ns = ls_rel[len(units) - 1] + Y = Y_setups[i].to_numpy() + + lambda_hat = lambda_wg[i] + omega_hat = omega_wg[i] + lambda_pre = np.concatenate((lambda_hat, np.full(T1, 0))) + lambda_post = np.concatenate((np.full(T0, 0), np.full(T1, 1 / T1))) + omega_control = np.concatenate((omega_hat, np.full(N1, 0))) + omega_treat = np.concatenate((np.full(N0, 0), np.full(N1, 1 / N1))) + + difs = np.dot(omega_treat, Y).dot(lambda_post - lambda_pre) -\ + np.dot(Y[:N0, :], (lambda_post - lambda_pre)) + size_dot = omega_hat / np.max(omega_hat) * 10 + color_dot = np.where(size_dot == 0, "#9D0924", "#2897E2") + # shape_dot = np.where(size_dot == 0, ".", "v") + spaces = " " * (len(str(int(times[i]))) + 1) + import matplotlib.pyplot as plt + + size_dot = np.interp(size_dot, (size_dot.min(), size_dot.max()), (1, 50)) + + weights_dots = pd.DataFrame({ + "unit": units, "difs": difs, "size": size_dot, + # "shape": shape_dot, + "color": color_dot + }) + + if unit_filter is not None: + weights_dots = weights_dots.query("unit in @unit_filter") + size_dot = weights_dots.size + size_dot = np.interp(size_dot, (size_dot.min(), size_dot.max()), (1, 50)) + weights_dots["size_dot"] = size_dot + + weights_dots = weights_dots.reset_index(drop=True) + weights_dots["pos"] = np.arange(len(weights_dots)) + + fig, ax = plt.subplots(figsize=(max(6, len(weights_dots) * 0.28), 5)) + + ax.scatter("pos", "difs", data=weights_dots, s="size", c="color", label="") + ax.set_xticks(weights_dots["pos"]) + ax.set_xticklabels(weights_dots["unit"], rotation=90, fontsize=ns) + ax.set_xlim(-0.8, len(weights_dots) - 0.2) + fig.tight_layout() + ax.set_xlabel("Group") + ax.set_ylabel("Difference") + ax.set_title("Adoption: " + str(time_title_cb(times[i]))) + ax.axhline(y=atts[i], linestyle = "--", color = "#E00029", lw = .6, label = f"Att {time_title_cb(times[i])}: {atts[i]}") + ax.axhline(y=self.att, linestyle = "--", color = "#640257", lw = .8, label = f"Att: {spaces} {real_att}") + ax.legend(fontsize = 9); + if weights_dots.difs.max() > 0 and weights_dots.difs.min() < 0: + ax.axhline(y=0, lw = .5, c = "#0D3276"); + plots.append(fig); + + for i, time in enumerate(times): + plot_times(i) + self.plot_weights = [] + self.plot_weights = plots + return self diff --git a/vendor/synthdid/sdid.py b/vendor/synthdid/sdid.py new file mode 100644 index 0000000..66c4e9b --- /dev/null +++ b/vendor/synthdid/sdid.py @@ -0,0 +1,254 @@ +import numpy as np, pandas as pd +from .utils import panel_matrices, collapse_form, varianza, sparsify_function, projected +from .solver import fw_step, sc_weight_fw, sc_weight_covariates + + + +# scol => unit, tcol => time, ycol=> outcome, dcol => treatment +# data_ref: treated => tunit + +def sdid(data: pd.DataFrame, unit, time, treatment, outcome, covariates=None, + cov_method="optimized", noise_level=None, eta_omega=None, eta_lambda=1e-6, zeta_omega=None, zeta_lambda=None, omega_intercept=True, lambda_intercept=True, min_decrease=None, max_iter=10000, sparsify=sparsify_function, max_iter_pre_sparsify=100, lambda_estimate=None, omega_estimate=None,synth=False,did=False + ): + tdf, ttime = panel_matrices(data, unit, time, treatment, outcome, covariates) + beta_covariate = [] + if (covariates is not None) and (cov_method == "projected"): + tdf, beta_covariates, _ = projected(tdf, 'outcome', 'unit', 'time', covariates) + + T_total = 0 + break_points = len(ttime) + tau_hat, tau_hat_wt = np.zeros(break_points), np.zeros(break_points) + N0s, T0s = [], [] + N1s, T1s = [], [] + Y_beta, Y_units = [], [] + + lambda_estimate, omega_estimate = [], [] + + for i, time_eval in enumerate(ttime): + times = [time_eval, 0] + df_y = tdf.query("tyear in @times") + N1 = len(np.unique(df_y.query("treated == 1").unit)) + T1 = int(np.max(tdf.time) - time_eval + 1) + T_total += N1 * T1 + tau_hat_wt[i] = N1 * T1 + Y = df_y.pivot_table(index="unit", columns="time", values="outcome", sort = False) + Y_units.append(Y.index) + N, T = Y.shape + N0, T0 = int(N - N1), int(T - T1) + N0s.append(N0) + T0s.append(T0) + N1s.append(N1) + T1s.append(T1) + Yc = collapse_form(Y, N0, T0) + + prediff = Y.iloc[:N0, :T0].apply(lambda x: x.diff(), axis=1).iloc[:, 1:] + noise_level = np.sqrt(varianza(np.array(prediff).flatten())) + + eta_omega = ((N - N0) * (T - T0))**(1 / 4) + eta_lambda = 1e-6 + + zeta_omega = eta_omega * noise_level + zeta_lambda = eta_lambda * noise_level + min_decrease = 1e-5 * noise_level + + Al, bl = Yc.iloc[:N0, :T0], Yc.iloc[:N0, T0] + Ao, bo = Yc.T.iloc[:T0, :N0], Yc.T.iloc[:T0, N0] + if covariates is None or cov_method == "projected": + lambda_opt = sc_weight_fw(Al, bl, None, intercept=lambda_intercept, zeta=zeta_lambda, min_decrease=min_decrease, max_iter=max_iter_pre_sparsify) + omega_opt = sc_weight_fw(Ao, bo, None, intercept=omega_intercept, zeta=zeta_omega, min_decrease=min_decrease, max_iter=max_iter_pre_sparsify) + + if sparsify is not None: + lambda_opt = sc_weight_fw(Al, bl, sparsify(lambda_opt["params"]), intercept=lambda_intercept, zeta=zeta_lambda, min_decrease=min_decrease, max_iter=max_iter) + omega_opt = sc_weight_fw(Ao, bo, sparsify(omega_opt["params"]), intercept=omega_intercept, zeta=zeta_omega, min_decrease=min_decrease, max_iter=max_iter) + + lambda_est = lambda_opt["params"] + omega_est = omega_opt["params"] + + + + omg = np.concatenate(([-omega_est, np.full(N1, 1/N1)])) + lmd = np.concatenate(([-lambda_est, np.full(T1, 1/T1)])) + + tau_hat[i] = np.dot(omg, Y) @ lmd + Y_beta.append(Y) + + if covariates is not None and cov_method == "optimized": + Yc = np.array(Yc) + X, Xc = [], [] + for j, cov in enumerate(covariates): + X_i = df_y.pivot_table(index="unit", columns="time", values=cov, sort = False, fill_value=0) + X_temp = collapse_form(X_i, N0, T0) + Xc.append(np.array(X_temp)) + X.append(X_i) + weigths = sc_weight_covariates( + Yc, Xc, zeta_lambda = zeta_lambda, zeta_omega = zeta_omega, lambda_intercept = lambda_intercept, omega_intercept = omega_intercept, min_decrease = min_decrease, max_iter = max_iter, lambda_est = None, omega_est = None + ) + lambda_est = weigths["lambda"] + omega_est = weigths["omega"] + beta_est = weigths["beta"] + beta_covariate.append(beta_est[0]) + + omg = np.concatenate(([-omega_est, np.full(N1, 1/N1)])) + lmd = np.concatenate(([-lambda_est, np.full(T1, 1/T1)])) + + y_beta = Y - np.sum(np.multiply(X, beta_est[:, np.newaxis, np.newaxis]), axis = 0) + Y_beta.append(y_beta) + tau_hat[i] = np.dot(omg, y_beta) @ lmd + + + lambda_estimate.append(lambda_est) + omega_estimate.append(omega_est) + weights = {"lambda":lambda_estimate, "omega": omega_estimate} + + tau_hat_wt = tau_hat_wt / T_total + + att = round(np.dot(tau_hat, tau_hat_wt), 5) + + att_info = pd.DataFrame( + { + "time": ttime, + "att_time" : tau_hat, + "att_wt" : tau_hat_wt, + "N0": N0s, "T0": T0s, "N1": N1s, "T1": T1s, + # "beta_covariate": beta_covariate + } + ) + result = { + "att": att, + "att_info": att_info, + "weights": weights, + "data_ref": tdf, "break_points": ttime, + "Y_beta": Y_beta, "Y_units": Y_units + } + + return result + + +class SDID: + def fit(self,# data: pd.DataFrame, unit, time, treatment, outcome, covariates=None, + cov_method="optimized", noise_level=None, eta_omega=None, eta_lambda=1e-6, zeta_omega=None, zeta_lambda=None, omega_intercept=True, lambda_intercept=True, min_decrease=None, max_iter=10000, sparsify=sparsify_function, max_iter_pre_sparsify=100, lambda_estimate=None, omega_estimate=None,synth=False,did=False + ): + # tdf, ttime = panel_matrices(data, unit, time, treatment, outcome, covariates) + tdf, ttime, covariates = self.data_ref, self.ttime, self.covariates + if (covariates is not None) and (cov_method == "projected"): + tdf, _, _ = projected(tdf, 'outcome', 'unit', 'time', covariates) + + T_total = 0 + break_points = len(ttime) + tau_hat, tau_hat_wt = np.zeros(break_points), np.zeros(break_points) + N0s, T0s = [], [] + N1s, T1s = [], [] + beta_covariate = [] + Y_beta, Y_units = [], [] + + lambda_estimate, omega_estimate = [], [] + + for i, time_eval in enumerate(ttime): + times = [time_eval, 0] + df_y = tdf.query("tyear in @times") + N1 = len(np.unique(df_y.query("treated == 1").unit)) + T1 = int(np.max(tdf.time) - time_eval + 1) + T_total += N1 * T1 + tau_hat_wt[i] = N1 * T1 + Y = df_y.pivot_table(index="unit", columns="time", values="outcome", sort = False) + Y_units.append(Y.index) + N, T = Y.shape + N0, T0 = int(N - N1), int(T - T1) + N0s.append(N0) + T0s.append(T0) + N1s.append(N1) + T1s.append(T1) + Yc = collapse_form(Y, N0, T0) + + prediff = Y.iloc[:N0, :T0].apply(lambda x: x.diff(), axis=1).iloc[:, 1:] + noise_level = np.sqrt(varianza(np.array(prediff).flatten())) + + eta_omega = ((N - N0) * (T - T0))**(1 / 4) + eta_lambda = 1e-6 + + zeta_omega = eta_omega * noise_level + zeta_lambda = eta_lambda * noise_level + min_decrease = 1e-5 * noise_level + + Al, bl = Yc.iloc[:N0, :T0], Yc.iloc[:N0, T0] + Ao, bo = Yc.T.iloc[:T0, :N0], Yc.T.iloc[:T0, N0] + if covariates is None or cov_method == "projected": + # For SC (synth): use small regularization (1e-6) and no intercept, matching Stata + zeta_omega_eff = 1e-6 * noise_level if synth else zeta_omega + omega_intercept_eff = False if synth else omega_intercept + + if not synth and not did: + lambda_opt = sc_weight_fw(Al, bl, None, intercept=lambda_intercept, zeta=zeta_lambda, min_decrease=min_decrease, max_iter=max_iter_pre_sparsify) + if not did: + omega_opt = sc_weight_fw(Ao, bo, None, intercept=omega_intercept_eff, zeta=zeta_omega_eff, min_decrease=min_decrease, max_iter=max_iter_pre_sparsify) + + if sparsify is not None: + if not synth and not did: + lambda_opt = sc_weight_fw(Al, bl, sparsify(lambda_opt["params"]), intercept=lambda_intercept, zeta=zeta_lambda, min_decrease=min_decrease, max_iter=max_iter) + if not did: + omega_opt = sc_weight_fw(Ao, bo, sparsify(omega_opt["params"]), intercept=omega_intercept_eff, zeta=zeta_omega_eff, min_decrease=min_decrease, max_iter=max_iter) + + if not synth and not did: + lambda_est = lambda_opt["params"] + omega_est = omega_opt["params"] + if synth: + lambda_est = np.zeros(T0) # SC: zero pre-period weights (Stata: lambda_l = zeros) + omega_est = omega_opt["params"] + if did: + lambda_est = np.full(T0,1/T0) + omega_est = np.full(N0,1/N0) + + + omg = np.concatenate(([-omega_est, np.full(N1, 1/N1)])) + lmd = np.concatenate(([-lambda_est, np.full(T1, 1/T1)])) + + tau_hat[i] = np.dot(omg, Y) @ lmd + Y_beta.append(Y) + + if covariates is not None and cov_method == "optimized": + Yc = np.array(Yc) + X, Xc = [], [] + for j, cov in enumerate(covariates): + X_i = df_y.pivot_table(index="unit", columns="time", values=cov, sort = False, fill_value=0) + X_temp = collapse_form(X_i, N0, T0) + Xc.append(np.array(X_temp)) + X.append(X_i) + weigths = sc_weight_covariates( + Yc, Xc, zeta_lambda = zeta_lambda, zeta_omega = zeta_omega, lambda_intercept = lambda_intercept, omega_intercept = omega_intercept, min_decrease = min_decrease, max_iter = max_iter, lambda_est = None, omega_est = None + ) + lambda_est = weigths["lambda"] + omega_est = weigths["omega"] + beta_est = weigths["beta"] + beta_covariate.append(beta_est[0]) + + omg = np.concatenate(([-omega_est, np.full(N1, 1/N1)])) + lmd = np.concatenate(([-lambda_est, np.full(T1, 1/T1)])) + + y_beta = Y - np.sum(np.multiply(X, beta_est[:, np.newaxis, np.newaxis]), axis = 0) + Y_beta.append(y_beta) + tau_hat[i] = np.dot(omg, y_beta) @ lmd + + + lambda_estimate.append(lambda_est) + omega_estimate.append(omega_est) + weights = {"lambda":lambda_estimate, "omega": omega_estimate} + + tau_hat_wt = tau_hat_wt / T_total + + att = round(np.dot(tau_hat, tau_hat_wt), 5) + + att_info = pd.DataFrame( + { + "time": ttime, + "att_time" : tau_hat, + "att_wt" : tau_hat_wt, + "N0": N0s, "T0": T0s, "N1": N1s, "T1": T1s, + # "beta_covariate": beta_covariate + } + ) + self.att, self.att_info = att, att_info + self.weights, self.Y_betas = weights, Y_beta + self.Y_units = Y_units + + return self + diff --git a/vendor/synthdid/solver.py b/vendor/synthdid/solver.py new file mode 100644 index 0000000..17ce39a --- /dev/null +++ b/vendor/synthdid/solver.py @@ -0,0 +1,153 @@ +import numpy as np + +def contract3(X, v): + + assert (len(X.shape) == 3) and (X.shape[0] == len(v)) + out = np.zeros(X.shape[1: ]) + + if len(v) == 0: return out + + for ii in range(len(v)): + out += v[ii] * X[ii, :, :] + + return out + +def fw_step(A, b, x, eta, alpha=None): + x = np.array(x) + Ax = np.dot(A, x) + half_grad = np.dot((Ax - b), A) + eta * np.transpose(x) + i = np.argmin(half_grad) + if alpha is not None: + x *= (1 - alpha) + x[i] += alpha + return x + else: + d_x = x.copy() * -1 + d_x[i] = 1 - x[i] + if np.all(d_x == 0): + return x + d_err = A[:, i] - Ax + step_upper = np.dot(-half_grad, d_x) + step_bot = np.sum(d_err ** 2) + eta * np.sum(d_x ** 2) + step = step_upper / step_bot + constrained_step = np.min([1, np.max([0, step])]) + return x + constrained_step * d_x + + +# x -> lambda(r) +def sc_weight_fw(A, b, x=None, intercept=True, zeta=1, min_decrease=1e-3, max_iter=1000): + A = np.array(A) + b = np.array(b) + n, k = A.shape + if x is None: + x = np.full(k, 1/k) + if intercept: + A = A - np.mean(A, axis=0) + b = b - np.mean(b) + t = 0 + # vals = np.zeros(max_iter) + vals = [] + eta = n * np.real(zeta ** 2) + vals_iter = False + while (t < max_iter) and ((t < 2) or vals_iter): + t += 1 + x_p = fw_step(A, b, x, eta=eta) + x = x_p.copy() + err = np.dot(A, x) - b + + vals_t = np.real(zeta ** 2) * np.sum(x ** 2) + np.sum(err ** 2) / n + vals = np.append(vals, vals_t) + nt = len(vals) + + if nt > 1: + vals_iter = vals[nt - 2] - vals[nt - 1] > min_decrease ** 2 + return {"params": x, "vals": vals} + + + +def sc_weight_covariates( + Y, X_covariates, lambda_est = None, omega_est = None, beta_est = None, + zeta_lambda=0, zeta_omega=0, + lambda_intercept=True, omega_intercept=True, + max_iter=1000, min_decrease=1e-3, + update_lambda=True, update_omega=True): + + + N, T = Y.shape + N0, T0 = N - 1, T - 1 + + if lambda_est is None: + lambda_est = [1 / T0] * T0 + if omega_est is None: + omega_est = [1 / N0] * N0 + if beta_est is None: + beta_est = np.zeros(len(X_covariates)) + + def update_weights(Y, lambda_estimation, omega_estimation): + if lambda_intercept: + Y_lambda = Y[:N0, :] - np.mean(Y[:N0, :], axis=0) + else: + Y_lambda = Y[:N0, :] + + if omega_intercept: + Y_omega = Y[:, :T0].T - np.mean(Y[:, :T0].T, axis = 0) + else: + Y_omega = Y[:, :T0].T + + if update_lambda: + lambda_ = fw_step(Y_lambda[:, 0:T0], Y_lambda[:, T0], lambda_estimation, eta=N0 * zeta_lambda ** 2) + if update_omega: + omega_ = fw_step(Y_omega[:, 0:N0], Y_omega[:, N0], omega_estimation, eta=T0 * zeta_omega ** 2) + + err_lambda = Y_lambda @ np.concatenate((lambda_, [-1])) + err_omega = Y_omega @ np.concatenate((omega_, [-1])) + + val = zeta_omega ** 2 * np.sum(omega_ ** 2) + zeta_lambda ** 2 * np.sum(lambda_ ** 2) + np.sum(err_omega ** 2) / T0 + np.sum(err_lambda ** 2) / N0 + + return { + "val": val, + "lambda": lambda_, + "omega": omega_, + "err_lambda": err_lambda, + "err_omega": err_omega + } + + # max_iter_1 = max_iter + 1 + # vals = np.zeros(max_iter) + vals = np.array([]) + t = 0 + y_beta = Y - np.sum(np.multiply(X_covariates, beta_est[:, np.newaxis, np.newaxis]), axis = 0) + weights = update_weights(y_beta, lambda_est, omega_est) + vals_iter = False + + while (t < max_iter) and ((t < 2) or vals_iter): + + t = t + 1 + coef_grad_beta = [] + + for i, x_cov in enumerate(X_covariates): + + s_lambda = np.dot(weights["err_lambda"], x_cov[:N0, :]) @ np.concatenate([weights["lambda"], [-1]]) / N0 + s_omega = np.dot(weights["err_omega"], x_cov[:, :T0].T) @ np.concatenate([weights["omega"], [-1]]) / T0 + + coef_grad_beta.append(s_lambda + s_omega) + grad_beta = np.array(coef_grad_beta) * -1 + alpha = 1 / (t + 1) + beta_est = beta_est - alpha * grad_beta + y_beta = Y - np.sum(np.multiply(X_covariates, beta_est[:, np.newaxis, np.newaxis]), axis = 0) + weights = update_weights(y_beta, weights["lambda"], weights["omega"]) + # print(vals, weights["val"]) + vals = np.append(vals, weights["val"]) + # vals[t] = weights["val"] + tn = len(vals) + + if tn >= 2: + vals_iter = vals[tn - 2] - vals[tn - 1] > min_decrease **2 + + return { + "lambda": weights["lambda"], + "omega": weights["omega"], + "beta": beta_est, + "vals": vals + } + diff --git a/vendor/synthdid/summary.py b/vendor/synthdid/summary.py new file mode 100644 index 0000000..cd01281 --- /dev/null +++ b/vendor/synthdid/summary.py @@ -0,0 +1,22 @@ +from scipy.stats import norm +import pandas as pd +class Summary: + def summary(self): + att = self.att + se = self.se + if se is not None: + t = att / se + p_val = 2 * (1 - norm.cdf(abs(att / se))) + else: + se = "-" + t = "-" + p_val = "-" + # se = "-" + self.summary2 = pd.DataFrame( + { + 'ATT': [att], 'Std. Err.': [se], + 't': [t], + 'P>|t|': [p_val] + } + ) + return self \ No newline at end of file diff --git a/vendor/synthdid/synthdid.py b/vendor/synthdid/synthdid.py new file mode 100644 index 0000000..c0038c6 --- /dev/null +++ b/vendor/synthdid/synthdid.py @@ -0,0 +1,21 @@ +import numpy as np, pandas as pd +import itertools, matplotlib.pyplot as plt + +from synthdid.utils import panel_matrices +from synthdid.get_data import quota +from synthdid.sdid import SDID +from synthdid.vcov import Variance +from synthdid.plots import Plots +from synthdid.summary import Summary + +class Synthdid(SDID, Variance, Plots, Summary): + def __init__(self, data, unit="unit", time = "time", treatment="treatment", outcome="outcome", covariates = None): + self.data = data + self.unit, self.time = unit, time + self.treatment, self.outcome = treatment, outcome + self.covariates = covariates + self.se = None + self.data_ref, self.ttime = panel_matrices(data, unit, time, treatment, outcome, covariates=covariates) + # if covariates is not None: + # self.data_cov = + diff --git a/vendor/synthdid/utils.py b/vendor/synthdid/utils.py new file mode 100644 index 0000000..f09ebd2 --- /dev/null +++ b/vendor/synthdid/utils.py @@ -0,0 +1,97 @@ +import pandas as pd, numpy as np + +def panel_matrices(data: pd.DataFrame(), unit, time, treatment, outcome, covariates = None): #-> data_prep + if len(np.unique(data[treatment])) != 2: + print("Error") + + data = data.reset_index() + data_ref = pd.DataFrame() + data_ref[["unit", "time", "outcome"]] = data[[unit, time, outcome]] + data_ref["treatment"] = data[treatment].to_numpy() + other = data.drop(columns=[unit, time, outcome, treatment]) + + unit, time, outcome, treatment = data_ref.columns + + data_ref["treated"] = data_ref.groupby(unit)[treatment].transform("max") + data_ref["ty"] = np.where(data_ref[treatment] == 1, data_ref[time], np.nan) + data_ref["tyear"] = np.where( + data_ref["treated"] == 1, + data_ref.groupby(unit)["ty"].transform("min"), + np.nan + ) + data_ref = data_ref.reset_index(drop=True).sort_values(["treated", unit, time]) + + break_points = np.unique(data_ref.tyear) + break_points = break_points[~np.isnan(break_points)] + + units = data_ref[unit] + num_col = data_ref.select_dtypes(np.number).columns + data_ref = data_ref[num_col].fillna(0) + data_ref[unit] = units + data_ref = data_ref.sort_values(["treated", "time", "unit"]) + if covariates is not None: + # return data + data_cov = data[covariates].loc[data_ref.index] + data_ref = pd.concat([data_ref, data_cov], axis = 1) + # data_ref[covariates] = data_ref[covariates].fillna(0)s + # return data_cov + return (data_ref, break_points) + + return (data_ref, break_points) + +def projected(data, outcome, unit, time, covariates): + + k = len(covariates) + X_all = np.array(data[covariates]) + y_all = np.array(data[outcome]) + + # Pick non-treated (control) units + df_c = data[data.tyear == 0] + + # ALL year and unit FE dummies (no drop_first), matching Stata invsym approach + year_dummies = pd.get_dummies(df_c[time]).astype(float) + unit_dummies = pd.get_dummies(df_c[unit]).astype(float) + + y_c = df_c[outcome].to_numpy(dtype=float) + X_cov = df_c[covariates].to_numpy(dtype=float) + # Stack: covariates + all year dummies + all unit dummies + intercept + X_c = np.column_stack([X_cov, year_dummies.to_numpy(), unit_dummies.to_numpy(), np.ones(len(df_c))]) + + # Use lstsq (pseudoinverse) to match Stata invsym behavior with collinear dummies + all_beta, _, _, _ = np.linalg.lstsq(X_c, y_c, rcond=None) + beta = all_beta[:k] + + # Apply projection to all units + Y_adj = y_all - X_all @ beta + + # output projected data + data = data.copy() + data[outcome] = Y_adj + + return (data, beta, X_all) + +def collapse_form(Y: np.ndarray, N0: int, T0: int): + N, T = Y.shape + Y = pd.DataFrame(Y) + row_mean = Y.iloc[0:N0, T0:T].mean(axis=1) + col_mean = Y.iloc[N0:N, 0:T0].mean(axis=0) + overall_mean = Y.iloc[N0:N, T0:T].mean().values[0] + result_top = pd.concat([Y.iloc[0:N0, 0:T0], row_mean], axis=1) + result_bottom = pd.concat([col_mean.T, pd.Series(overall_mean)], axis=0) + Yc = pd.concat([result_top, pd.DataFrame(result_bottom).T], axis=0) + return Yc + +def sum_normalize(x): + if np.sum(x) != 0: + return x / np.sum(x) + else: + return np.full(len(x), 1/len(x)) + +def sparsify_function(v) -> np.array: + v = np.where(v <= np.max(v) / 4, 0, v) + return v / sum(v) + +def varianza(x): + n = len(x) + media = sum(x) / n + return sum((xi - media) ** 2 for xi in x) / (n - 1) \ No newline at end of file diff --git a/vendor/synthdid/vcov.py b/vendor/synthdid/vcov.py new file mode 100644 index 0000000..f4d7c8f --- /dev/null +++ b/vendor/synthdid/vcov.py @@ -0,0 +1,129 @@ + +import itertools, pandas as pd, numpy as np +from .sdid import sdid +from .utils import sum_normalize, varianza + + + +def bootstrap_se(data_ref, n_reps = 50): + uniqueID = np.unique(data_ref.unit) + N = len(uniqueID) + def theta_bt(): + sample_id = np.random.choice(uniqueID, replace=True, size=N) + def sample_concat(_id): + sample_id_n = sample_id[_id] + data_c = data_ref[data_ref.unit == sample_id_n].copy() + data_c = data_c.assign(unit1=str(sample_id_n) + "_" + str(_id)) + return data_c + sampled_df = pd.concat([sample_concat(i) for i in range(N)], ignore_index=True) + if len(np.unique(sampled_df.treatment)) != 2: + return theta_bt() + att_aux = sdid(sampled_df, "unit1", "time", "treatment", "outcome")["att"] + return att_aux + t = 0 + att_bt = np.array([]) + while t < n_reps: + t+= 1 + aux = theta_bt() + att_bt = np.append(att_bt, aux) + se_bootstrap = np.sqrt(1 / n_reps * np.sum((att_bt - np.sum(att_bt / n_reps)) ** 2)) + return se_bootstrap + +def placebo_se(data_ref, n_reps=50): + tr_years = data_ref.query("time == tyear and tyear != 0").time + N_tr = len(tr_years) + df_co = data_ref.query("treated == 0") + units_df_co = np.unique(df_co.unit) + N_co = len(units_df_co) + N_aux = N_co - N_tr + + def theta_pb(): + plabeo_years = pd.DataFrame({ + "unit": np.random.choice(units_df_co, size=N_tr, replace=False), + 'tyear1': tr_years + }) + aux_data = df_co.merge(plabeo_years, on="unit", how='outer').sort_values("tyear1") + aux_data = aux_data.assign( + tyear=aux_data.tyear1.fillna(aux_data["tyear"]) + ) + aux_data = aux_data.assign( + treatment=np.where(((aux_data.tyear != 0) & (aux_data.time == aux_data.tyear)), 1, 0) + ).reset_index(drop=True) + aux_data["treated"] = aux_data.groupby("unit")["treatment"].transform("max") + att = sdid(aux_data, "unit", "time", "treatment", "outcome") + return att["att"] + + t = 0 + att_pb = np.array([]) + while t < n_reps: + t += 1 + aux = theta_pb() + att_pb = np.append(att_pb, aux) + se_placebo = np.sqrt(1 / n_reps * np.sum((att_pb - np.sum(att_pb / n_reps)) ** 2)) + return se_placebo + +def jackknife_iteration(data, time_breaks, weights, unit_index: int) -> np.ndarray: + weighted_atts = np.array([]) + total_treated_unit_periods = data[data.treatment == 1].shape[0] + + for tyear_index, treatment_year in enumerate(time_breaks): + tyear_data = data[data.tyear.isin([0, treatment_year])] + N_treated = pd.unique(data[data.tyear == treatment_year].unit).shape[0] + tyear_omegas = - weights["omega"][tyear_index] + N_control = tyear_omegas.shape[0] + tyear_omegas = np.concatenate([tyear_omegas, np.array([1/N_treated for _ in range(N_treated)])]) + if unit_index < N_control: + tyear_omegas = np.delete(tyear_omegas, unit_index) + tyear_lambdas = - weights["lambda"][tyear_index] + T_post = pd.unique(tyear_data.time).shape[0] - tyear_lambdas.shape[0] + tyear_treated_unit_periods = N_treated * T_post + tyear_lambdas = np.concatenate([tyear_lambdas, np.array([1 / T_post for _ in range(T_post)])]) + data_matrix = tyear_data.pivot_table(values = "outcome", index = "unit", columns = "time", sort = False).to_numpy() #type: ignore + att = tyear_omegas @ data_matrix @ tyear_lambdas.T + att_weight = tyear_treated_unit_periods / total_treated_unit_periods + weighted_atts = np.concatenate([weighted_atts, [att * att_weight]]) + + jk_iteration_att = weighted_atts.sum() + return np.array([jk_iteration_att]) + + + +def jackknife_se(data_ref: pd.DataFrame, time_breaks, att, weights): + + for tyear in time_breaks: + if pd.unique(data_ref[data_ref.tyear == tyear].unit).shape[0] == 1: + raise ValueError(f"Each adoption year must have more than one treated unit. Year {tyear} does not comply") + + unique_units = pd.unique(data_ref.unit.unique()) + jackknife_ates = np.array([]) + + for unit_index, unit in enumerate(unique_units): + iteration_ate = jackknife_iteration( + data_ref[data_ref.unit != unit], + time_breaks, + weights, + unit_index + ) + jackknife_ates = np.concatenate([ + jackknife_ates, + iteration_ate + ]) + + total_units = unique_units.shape[0] + var_jackknife = (total_units - 1) / total_units * ((jackknife_ates - att) ** 2).sum() + se_jackknife = np.sqrt(var_jackknife) + + return se_jackknife + +class Variance: + def vcov(self, method="placebo", n_reps=50): + data_ref = self.data_ref + if method=="placebo": + se = placebo_se(data_ref, n_reps=n_reps) + elif method=="bootstrap": + se = bootstrap_se(data_ref, n_reps=n_reps) + else: + time_break, weights = self.ttime, self.weights + se = jackknife_se(data_ref, time_break, self.att, weights) + self.se = se + return self \ No newline at end of file