commit eb43a218c78ff5dd355da17e8cbbef054b5decea Author: wehub-resource-sync Date: Mon Jul 13 12:08:46 2026 +0800 chore: import upstream snapshot with attribution diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..b37e8a3 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,12 @@ +{ + "name": "MindsDB", + "build": { + "dockerfile": "../docker/mindsdb.Dockerfile", + "context": ".." + }, + "appPort": [47334, 47335], + "postCreateCommand": "pip3 install -r requirements/requirements.txt", + "features": { + "ghcr.io/devcontainers/features/git:1": {} + } +} diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..e6c0d7d --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +/.github/workflows/ @mindsdb/devops diff --git a/.github/ISSUE_TEMPLATE/bug_report_v2.yaml b/.github/ISSUE_TEMPLATE/bug_report_v2.yaml new file mode 100644 index 0000000..7e273fe --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report_v2.yaml @@ -0,0 +1,48 @@ +name: 🐞 Report a bug +description: Create a bug report to help us improve MindsDB +title: "[Bug]: " +labels: [bug] +body: +- type: markdown + attributes: + value: Thanks for taking the time to fill out this bug report! Please fill out the form in English! + +- type: textarea + attributes: + label: Short description of current behavior + validations: + required: true + +- type: textarea + attributes: + label: Video or screenshots + description: The better the evidence you can provide, the faster we can fix it! + placeholder: https://www.loom.com/share/abcdefghijklmnopqrrstuvwxyz + validations: + required: false + +- type: textarea + attributes: + label: Expected behavior + description: A short description of what you expected to happen + validations: + required: false + +- type: textarea + attributes: + label: How to reproduce the error + description: The better the evidence you can provide, the faster we can fix it! + placeholder: | + I uses these queries... + I was running MindsDB on... + I get this error... + validations: + required: false + +- type: textarea + attributes: + label: Anything else? + description: | + Links? References? Ideas? Anything that will give us more context about the issue you are encountering! + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..1814112 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,4 @@ +contact_links: + - name: "Join MindsDB Community" + url: https://mindsdb.com/joincommunity + about: Join our community on Slack for other questions and general chat \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request_v2.yaml b/.github/ISSUE_TEMPLATE/feature_request_v2.yaml new file mode 100644 index 0000000..602b615 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request_v2.yaml @@ -0,0 +1,36 @@ +name: 🚀 Request a feature +description: Create a feature request for us to add to our roadmap +labels: [enhancement] +body: +- type: markdown + attributes: + value: Thanks for taking the time to fill out this feature request! Please fill out the form in English! + +- type: textarea + attributes: + label: Short description and motivation for the proposed feature + validations: + required: true + +- type: textarea + attributes: + label: Video or screenshots + description: The better the information you can provide, the faster we can make it! + placeholder: https://www.loom.com/share/abcdefghijklmnopqrrstuvwxyz + validations: + required: false + +- type: textarea + attributes: + label: Describe some possible solutions + description: How could this feature be implemented? + validations: + required: false + +- type: textarea + attributes: + label: Anything else? + description: | + Links? References? Ideas? Anything else that will give us more context! + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/improve_docs_v1.yaml b/.github/ISSUE_TEMPLATE/improve_docs_v1.yaml new file mode 100644 index 0000000..6f20d4a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/improve_docs_v1.yaml @@ -0,0 +1,30 @@ +name: ✍️ Improve our docs +title: "[Docs]: " +description: Let us know how we can make our documentation more helpful +labels: [documentation] +body: +- type: markdown + attributes: + value: Thanks for taking the time to fill out this docs request! Please fill out the form in English! + +- type: textarea + attributes: + label: Short description of what should be added or improved + validations: + required: true + +- type: textarea + attributes: + label: Video or screenshots + description: The better the information you can provide, the faster we can improve it! + placeholder: https://www.loom.com/share/abcdefghijklmnopqrrstuvwxyz + validations: + required: false + +- type: textarea + attributes: + label: Anything else? + description: | + Links? References? Ideas? Anything else that will give us more context! + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/integrations_contest.yaml b/.github/ISSUE_TEMPLATE/integrations_contest.yaml new file mode 100644 index 0000000..8318873 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/integrations_contest.yaml @@ -0,0 +1,47 @@ +name: 🧑‍🔧 Propose a new integration +description: Share an idea for a new datasource or machine learning integration +title: "[Integration]: " +labels: [roadmap, integration] +assignees: +- +body: +- type: markdown + attributes: + value: | + Thanks for taking the time to share the new integration! Please fill out the form in English! +- type: checkboxes + attributes: + label: Is there an existing integration? + description: Please search to see if MindsDB already supports this integration.A list with supported integrations can be found [here](https://github.com/mindsdb/mindsdb#database-integrations). + options: + - label: I have searched the existing integrations. + required: true +- type: textarea + attributes: + label: Use Case + description: Which use-cases does this solve? + placeholder: | + Why this integration will be usefull to users? What is the value of having this integration? + validations: + required: true +- type: textarea + attributes: + label: Motivation + description: How will we know that this has succeeded? + placeholder: | + Explain the proposed integration as though it was already implemented and you were explaining it to a user. + validations: + required: true +- type: textarea + attributes: + label: Implementation + description: Describe how this integration will work, with code, pseudo-code, mock-ups, text, or add diagrams + validations: + required: false +- type: textarea + attributes: + label: Anything else? + description: | + Links? References? Anything that will give more context about this integration! + validations: + required: false diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..2bbfab4 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,35 @@ +## Description + +Please include a summary of the change and the issue it solves. + +Fixes #issue_number + +## Type of change + +(Please delete options that are not relevant) + +- [ ] 🐛 Bug fix (non-breaking change which fixes an issue) +- [ ] ⚡ New feature (non-breaking change which adds functionality) +- [ ] 📢 Breaking change (fix or feature that would cause existing functionality not to work as expected) +- [ ] 📄 This change requires a documentation update + +## Verification Process + +To ensure the changes are working as expected: + + - [ ] Test Location: Specify the URL or path for testing. + - [ ] Verification Steps: Outline the steps or queries needed to validate the change. Include any data, configurations, or actions required to reproduce or see the new functionality. + +## Additional Media: + +- [ ] I have attached a brief loom video or screenshots showcasing the new functionality or change. + +## Checklist: + +- [ ] My code follows the style guidelines(PEP 8) of MindsDB. +- [ ] I have appropriately commented on my code, especially in complex areas. +- [ ] Necessary documentation updates are either made or tracked in issues. +- [ ] Relevant unit and integration tests are updated or added. + + + diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 0000000..c155583 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,60 @@ +name: "CodeQL" + +on: + push: + branches: ["main"] + pull_request: + branches: ["main"] + schedule: + - cron: "0 4 * * 0" + +permissions: + contents: read + +jobs: + detect-languages: + name: Detect CodeQL languages + runs-on: ubuntu-latest + outputs: + matrix: ${{ steps.set-matrix.outputs.matrix }} + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Build language matrix + id: set-matrix + run: | + include='[{"language":"actions","build-mode":"none"}]' + + if git ls-files '*.py' | grep -q .; then + include='[{"language":"actions","build-mode":"none"},{"language":"python","build-mode":"none"}]' + fi + + echo "matrix={\"include\":$include}" >> "$GITHUB_OUTPUT" + + analyze: + name: Analyze (${{ matrix.language }}) + needs: detect-languages + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + strategy: + fail-fast: false + matrix: ${{ fromJSON(needs.detect-languages.outputs.matrix) }} + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Initialize CodeQL + uses: github/codeql-action/init@v4 + with: + languages: ${{ matrix.language }} + build-mode: ${{ matrix['build-mode'] }} + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v4 + with: + category: /language:${{ matrix.language }} diff --git a/.github/workflows/deploy_docs.yml b/.github/workflows/deploy_docs.yml new file mode 100644 index 0000000..9eaa9d8 --- /dev/null +++ b/.github/workflows/deploy_docs.yml @@ -0,0 +1,37 @@ +name: Deploy Docs to GitHub Pages + +on: + push: + branches: [main] + paths: + - "docs/**" + + workflow_dispatch: + +permissions: + contents: read + pages: write + id-token: write + +concurrency: + group: pages + cancel-in-progress: true + +jobs: + deploy: + runs-on: ubuntu-latest + environment: + name: github-pages + url: ${{ steps.deploy.outputs.page_url }} + + steps: + - uses: actions/checkout@v4 + + - uses: actions/configure-pages@v5 + + - uses: actions/upload-pages-artifact@v3 + with: + path: docs/ + + - id: deploy + uses: actions/deploy-pages@v4 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..570481f --- /dev/null +++ b/.gitignore @@ -0,0 +1,69 @@ +**/*.pyc +*__pycache__* +var +etc +.idea +mindsdb/logs +.hypothesis/ +logs +tests/temp +tests/integration/flows/config/* +my_model.zip +model.py +tests/integration/flows/model.py +tests/integration/flows/my_model.zip +distributions/docker-compose/*/storage +venv/* +env/* +.envrc +*.env +mindsdb-venv/* +root +static +tmp +.pytest_cache +tests/prediction_latency_test/*.csv +storage_dir +docker/dist/* +.directory +MindsDB.egg-info/* +/build +train_finetune.lock +parser_tests + +# Autokeras generated files +auto_model +autokeras +structured_data_classifier +structured_data_regressor +mindsdb/integrations/handlers/autokeras_handler/structured_data_classifier + +# AutoGluon generated files +AutogluonModels + +# VisualStudioCode +.vscode +.vscode/* +.history +doc/lib/ +run.csh + +# Virtualenv +mindsdb/bin +mindsdb/lib +mindsdb/lib64 +pyvenv.cfg +.python-version +.DS_Store +mindsdb/Scripts +mindsdb/Include +xgboost + +# Docs +node_modules + +mindsdb/**/pyproject.toml +mindsdb/**/uv.lock + +# dsi tests +reports/ diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..44921bd --- /dev/null +++ b/.gitmodules @@ -0,0 +1,16 @@ +[submodule "frontend"] + path = frontend + url = https://github.com/mindsdb/cowork + ignore = all +[submodule "backend/core_api"] + path = backend/core_api + url = https://github.com/mindsdb/cowork-server + ignore = all +[submodule "backend/core_agent"] + path = backend/core_agent + url = https://github.com/mindsdb/anton + ignore = all +[submodule "backend/data-vault"] + path = backend/data-vault + url = https://github.com/mindsdb/data-vault + ignore = all diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..9580f70 --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,180 @@ +# Minds Platform + +## Submodules + +This repo has 4 submodules: + +| Path | Repo | Tracking | +|---|---|---| +| `frontend` | `mindsdb/cowork` | tag-pinned | +| `backend/core_api` | `mindsdb/cowork-server` | tag-pinned | +| `backend/core_agent` | `mindsdb/anton` | tag-pinned | +| `backend/data-vault` | `mindsdb/data-vault` | `main` branch | + +### Clone (fresh) + +```bash +git clone --recurse-submodules https://github.com/mindsdb/minds-platform +``` + +### Initialize after cloning without submodules + +```bash +git submodule update --init --recursive +``` + +### Pull — sync to what the parent repo pins (default) + +```bash +git submodule update --recursive +``` + +### Pull — advance all submodules to latest `main` + +Only do this if you intend to develop across all repos. You'll need to commit the updated pointers in the parent repo afterward. + +```bash +git submodule foreach 'git checkout main && git pull origin main' +``` + +### Make changes and push inside a submodule + +1. Go into the submodule and get on a real branch first (all submodules start in detached HEAD): + +```bash +cd backend/data-vault # or whichever submodule +git checkout main # or: git checkout -b your-feature-branch +``` + +2. Make your changes, commit, and push: + +```bash +git add . +git commit -m "your message" +git push origin main +``` + +3. Back in the parent repo, stage and commit the updated submodule pointer: + +```bash +cd ../.. +git add backend/data-vault +git commit -m "bump data-vault to latest" +git push +``` + +> The parent repo stores a commit SHA pointer to each submodule, not the code itself. Always push from inside the submodule first, then update the pointer in the parent. + +## Working on module branches (multi-developer) + +The superproject pins each submodule to a commit. To let everyone develop on +their own module branches without fighting over pins or drowning in `git status` +noise, the workflow is: + +**1. `.gitmodules` sets `ignore = all` on every submodule.** Day-to-day branch +work in a submodule never shows up as a superproject change — `git status` in the +parent stays clean no matter what branch each module is on. (This is the only +setting that silences "new commits in ``"; `ignore = dirty` does not.) + +**2. Pick your branches in `dev.env`** (gitignored — copy from `dev.env.example`): + +```bash +cp dev.env.example dev.env +# REF=feat/my-thing # all modules on one branch… +# API_REF=feat/server-thing # …or override per module +``` + +**3. `make` is the single source of truth for refs** — both run paths follow `dev.env`: + +| Command | What it does | +|---|---| +| `make refs` | print the refs the next run will use | +| `make use` | check out those refs across all submodules | +| `make dev` / `make dev-web` | run the **local submodule source** (`--reload`) — follows the checked-out branch | +| `make server` | (re)install the **Electron desktop server** from `API_REF`/`AGENT_REF` | +| `make server-local` | install Electron desktop server **from local uncommitted source** (no push needed) | +| `make app` | run the Electron desktop app (auto-update disabled so it can't revert your branch) | +| `make app-local` | run the Electron desktop app **against local uncommitted source** (runs `server-local` first) | +| `make pack-local` | build macOS `.app` from local uncommitted source, iCloud-safe (no DMG, `/tmp` build) | +| `make watch` | live reload — Electron app + Python `--reload` (alias for `make dev`) | +| `make baseline` | snap every submodule back to the superproject's pinned commits | +| `make pin` | record the submodules' current commits as the superproject pins (a deliberate commit) | + +> Two run paths, same refs: `make dev`/`dev-web` execute the local source, so they +> follow whatever `make use` checked out. The desktop app runs a `uv`-tool-installed +> server keyed by `COWORK_SERVER_REF`/`ANTON_REF` (see +> `frontend/src/main/server-source.ts`); `make server`/`make app` set those from the +> same `dev.env`. Keep both on the same ref — they share `~/.cowork/cowork.db`, so a +> migration applied by one must exist in the other (else the app crashes on startup +> with `Can't locate revision …`). `make flush` resets when they drift. + +> **Developing with uncommitted changes in the Electron app**: `make dev`/`dev-web` +> already pick up uncommitted source changes on-the-fly. For the Electron desktop path, +> `make app-local` installs cowork-server directly from `backend/core_api/` (no commit +> needed) and then launches the app. `COWORK_SERVER_DISABLE_AUTOUPDATE=1` is set +> automatically so the installer won't re-download from git. To also develop `core_agent` +> without committing: update `[tool.uv.sources] anton-agent` in +> `backend/core_api/pyproject.toml` to `{ path = "../../core_agent" }`, then re-run +> `make app-local`. (Restore the git source before pushing.) + +**4. Bumping pins is deliberate.** Because submodules are ignored, the *only* way a +pin changes is `make pin` (after a submodule PR merges and you push the submodule). +Pushing from inside the submodule first still applies — `make pin` just records the +new SHA in the superproject as one reviewable commit. + +**5. Snap back to baselines** when you're *not* developing a module: `make baseline` +(`git submodule update --init --recursive`). With `ignore = all`, `git status` won't +remind you a teammate's pin bump left a module behind — run `make baseline` after +pulling the superproject to align. + +## Running locally (web browser mode) + +After initializing submodules, start the full stack with: + +```bash +cd frontend +npm install +npm run dev:web +``` + +Open `http://localhost:5173/`. The FastAPI backend starts automatically on `http://127.0.0.1:26866`. + +### Skip Keycloak auth (required for local dev) + +By default the web app redirects to MindsHub SSO on first load. To bypass this locally, create `frontend/src/renderer/.env` (Vite's root is `src/renderer`, not `frontend/`): + +```bash +echo "VITE_SKIP_AUTH=true" > frontend/src/renderer/.env +``` + +Then restart `npm run dev:web`. The Keycloak redirect will be skipped and the app loads the onboarding screen directly where you can enter a BYOK API key. + +### First-time symlink fix + +The `dev:web` script expects the `uv`-installed tool at `~/.local/share/uv/tools/anton/`, but it may be installed as `anton-agent`. If you see "Anton Python interpreter not found", run: + +```bash +ln -s ~/.local/share/uv/tools/anton-agent ~/.local/share/uv/tools/anton +``` + +## Flushing local installs (fresh start) + +`make flush` wipes every local install **and** all app state, returning the machine to a pre-install condition. Use it to test the from-scratch install flow or to recover from a broken/half-installed environment. + +```bash +make flush # prompts before deleting +make flush FORCE=1 # skip the prompt (CI / scripts) +``` + +It removes: + +| Removed | What it is | +|---|---| +| `cowork-server` uv tool (+ legacy `anton-agent`) | the runtime the **Electron app** installs via `uv tool install` | +| `backend/core_api/.venv`, `backend/core_agent/.venv` | the venvs the **Makefile** dev flow builds via `uv sync` | +| `~/.anton` | provider keys / `.env` | +| `~/.cowork` | database, `hermes`, `projects` | + +> ⚠️ Destructive — deletes conversations and saved provider keys, no undo. After flushing, the next `make setup` (or app launch) reinstalls everything from scratch. + +> It deliberately leaves `uv` itself and uv-managed Python runtimes alone (shared infrastructure, not part of the anton/cowork install). diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..a61074c --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,58 @@ + +# Contributor Covenant Code of Conduct + +## Our Pledge + +We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. + +We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community. + +## Our Standards + +Examples of behavior that contributes to a positive environment for our community include: + +* Demonstrating empathy and kindness toward other people +* Being respectful of differing opinions, viewpoints, and experiences +* Giving and gracefully accepting constructive feedback +* Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience +* Focusing on what is best not just for us as individuals, but for the overall community + +Examples of unacceptable behavior include: + +* The use of sexualized language or imagery, and sexual attention or + advances of any kind +* Trolling, insulting or derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or email + address, without their explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Enforcement Responsibilities + +Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. + +Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate. + +## Scope + +This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at admin@mindsdb.com. All complaints will be reviewed and investigated promptly and fairly. + +All community leaders are obligated to respect the privacy and security of the reporter of any incident. + + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0, +available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. + +Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity). + +[homepage]: https://www.contributor-covenant.org + +For answers to common questions about this code of conduct, see the FAQ at +https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..a22cc2c --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,46 @@ +# Contributing to Mindsdb + +Being part of the core MindsDB team is accessible to anyone who is motivated and wants to be part of that journey! + +Please see below how to contribute to the project, also refer to the contributing documentation. + +## How can you help us? + +* Report a bug +* Improve documentation +* Discuss the code implementation +* Submit a bug fix +* Propose new features +* Test Mindsdb + +## Code contributions + +In general, we follow the "fork-and-pull" Git workflow. +1. Fork the Mindsdb repository +2. Clone the repository +3. Make changes and commit them +4. Push your local branch to your fork +5. Submit a Pull request so that we can review your changes +6. Write a commit message +7. Make sure that the CI tests are GREEN + +> NOTE: Be sure to merge the latest from "upstream" before making a pull request! Also, make the PR to the `main` branch. + +## Feature and Bug reports +We use GitHub issues to track bugs and features. Report them by opening a [new issue](https://github.com/mindsdb/mindsdb/issues/new/choose) and fill out all of the required inputs. + +## Code review process + +The Pull Request reviews are done on a regular basis. Please, make sure you respond to our feedback/questions. + +## Community + +If you have additional questions or you want to chat with the MindsDB core team, please join our [Slack community](https://mindsdb.com/joincommunity) or post at [Github Discussions](https://github.com/mindsdb/mindsdb/discussions). + +To get updates on MindsDB’s latest announcements, releases, and events, sign up for our [Monthly Community Newsletter](https://mindsdb.com/newsletter/?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo). + +Join our mission of democratizing machine learning! + +## Contributor Code of Conduct +Please note that this project is released with a [Contributor Code of Conduct](https://github.com/mindsdb/mindsdb/blob/main/CODE_OF_CONDUCT.md). By participating in this project, you agree to abide by its terms. + diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..3f97e19 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +## MIT License + +Copyright (c) 2019 MindsDB, Inc. + +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/Makefile b/Makefile new file mode 100644 index 0000000..f4dc298 --- /dev/null +++ b/Makefile @@ -0,0 +1,186 @@ +FRONTEND := frontend +API := backend/core_api +AGENT := backend/core_agent +VAULT := backend/data-vault + +_NPM_STAMP := $(FRONTEND)/node_modules/.package-lock.json +_API_STAMP := $(API)/.venv +_AGENT_STAMP := $(AGENT)/.venv + +# ── Feature-branch selection ───────────────────────────────────────────── +# Per-developer ref choice lives in `dev.env` (gitignored — never committed), +# so each dev works on their own module branches without touching shared +# files or CI. Example dev.env: +# REF=feat/my-thing # all modules… +# API_REF=feat/server-thing # …or override per module +-include dev.env + +REF ?= main +API_REF ?= $(REF) +AGENT_REF ?= $(REF) +FRONTEND_REF ?= $(REF) + +# Both run paths follow the same refs: +# • `make dev`/`dev-web` run the LOCAL submodule source, so they follow +# whatever branch is checked out (use `make use` to switch). +# • the Electron desktop server is a uv-tool install keyed by these env +# vars (frontend/src/main/server-source.ts) — exported here so `make app` +# / `make server` install the matching branch. +export COWORK_SERVER_REF := $(API_REF) +export ANTON_REF := $(AGENT_REF) +# Only inject a non-default anton override (uv rejects a redundant --with). +_ANTON_WITH := $(if $(filter-out main,$(AGENT_REF)),--with "anton-agent @ git+https://github.com/mindsdb/anton.git@$(AGENT_REF)",) + +.PHONY: help setup dev dev-web build dist-mac dist-win docker-build docker-up docker-down flush use pin baseline server server-local app app-local pack-local watch refs + +.DEFAULT_GOAL := help + +help: ## list available targets + @echo "Minds Platform — make targets:" + @grep -hE '^[a-zA-Z_-]+:.*?## ' $(MAKEFILE_LIST) \ + | sort \ + | awk 'BEGIN{FS=":.*?## "}{printf " \033[36m%-10s\033[0m %s\n", $$1, $$2}' + @echo "" + @echo "Module branches: set refs in dev.env (see dev.env.example), then 'make use'." + @echo "Current refs → frontend=$(FRONTEND_REF) core_api=$(API_REF) core_agent=$(AGENT_REF)" + +$(_NPM_STAMP): $(FRONTEND)/package-lock.json + npm --prefix $(FRONTEND) ci + +$(_API_STAMP): $(API)/uv.lock + uv sync --directory $(API) + +$(_AGENT_STAMP): $(AGENT)/uv.lock + uv sync --directory $(AGENT) + +setup: $(_NPM_STAMP) $(_API_STAMP) $(_AGENT_STAMP) ## install all module dependencies (npm + uv venvs) + +dev: $(_NPM_STAMP) $(_API_STAMP) $(_AGENT_STAMP) ## run desktop dev from local module source (hot reload) + @trap 'kill 0' SIGINT SIGTERM EXIT; \ + uv run --directory $(API) uvicorn cowork.server:app --reload \ + --reload-dir $(CURDIR)/$(API)/cowork \ + --reload-dir $(CURDIR)/$(AGENT)/anton & \ + npm --prefix $(FRONTEND) run dev + +dev-web: $(_NPM_STAMP) $(_API_STAMP) $(_AGENT_STAMP) ## run web dev in the browser from local module source + @trap 'kill 0' SIGINT SIGTERM EXIT; \ + uv run --directory $(API) uvicorn cowork.server:app --reload \ + --reload-dir $(CURDIR)/$(API)/cowork \ + --reload-dir $(CURDIR)/$(AGENT)/anton & \ + cd $(FRONTEND) && BUILD_TARGET=web npm run dev:renderer -- --open + +build: $(_NPM_STAMP) ## production renderer build + npm --prefix $(FRONTEND) run build + +dist-mac: $(_NPM_STAMP) ## package the macOS desktop app + npm --prefix $(FRONTEND) run dist:mac + +dist-win: $(_NPM_STAMP) ## package the Windows desktop app + npm --prefix $(FRONTEND) run dist:win + +docker-build: ## build the docker images + docker compose build + +docker-up: ## start the docker stack + docker compose up + +docker-down: ## stop the docker stack + docker compose down + +# Wipe every local install + all app state, returning the machine to a +# pre-install state. Covers BOTH runtime models (the Makefile dev venvs +# AND the Electron app's `uv tool install cowork-server`) plus user data. +# Removes: +# • cowork-server uv tool (and the legacy anton-agent tool) +# • submodule venvs: $(API)/.venv, $(AGENT)/.venv +# • ~/.anton — provider keys / .env +# • ~/.cowork — database, hermes, projects +# The next `make setup` (or app launch) reinstalls from scratch. +# Set FORCE=1 to skip the confirmation prompt (CI / scripts). +flush: ## wipe all local installs + app state (fresh start; FORCE=1 to skip prompt) + @echo "This will PERMANENTLY remove:" + @echo " • cowork-server uv tool (+ legacy anton-agent)" + @echo " • $(API)/.venv and $(AGENT)/.venv" + @echo " • ~/.anton (provider keys / .env)" + @echo " • ~/.cowork (database, hermes, projects)" + @if [ "$(FORCE)" != "1" ]; then \ + read -p "Proceed? [y/N] " ans; [ "$$ans" = y ] || [ "$$ans" = Y ] || { echo "Aborted."; exit 1; }; \ + fi + -uv tool uninstall cowork-server + -uv tool uninstall anton-agent + rm -rf $(API)/.venv $(AGENT)/.venv + rm -rf $$HOME/.anton $$HOME/.cowork + @echo "✓ Flushed. Run 'make setup' (or relaunch the app) for a fresh install." + +# ── Module-branch workflow ─────────────────────────────────────────────── +# The superproject pins each submodule to a commit; `.gitmodules` sets +# `ignore = all` so day-to-day branch work never shows up as superproject +# changes (git stays clean). Pins move ONLY via `make pin` — a deliberate, +# reviewable commit. See CLAUDE.md for the full workflow. + +refs: ## print the refs the next make/run will use + @echo "frontend : $(FRONTEND_REF)" + @echo "core_api : $(API_REF)" + @echo "core_agent: $(AGENT_REF)" + +use: ## check out the configured refs across submodules (REF=… or dev.env) + -git -C $(FRONTEND) fetch -q origin $(FRONTEND_REF) + -git -C $(FRONTEND) checkout $(FRONTEND_REF) + -git -C $(API) fetch -q origin $(API_REF) + -git -C $(API) checkout $(API_REF) + -git -C $(AGENT) fetch -q origin $(AGENT_REF) + -git -C $(AGENT) checkout $(AGENT_REF) + @echo "✓ on: frontend=$(FRONTEND_REF) core_api=$(API_REF) core_agent=$(AGENT_REF)" + +baseline: ## snap every submodule back to the superproject's pinned commits + git submodule update --init --recursive + @echo "✓ submodules reset to pinned baseline." + +pin: ## record the submodules' CURRENT commits as the superproject pins + git add $(FRONTEND) $(API) $(AGENT) $(VAULT) + @git diff --cached --quiet -- $(FRONTEND) $(API) $(AGENT) $(VAULT) \ + && echo "Nothing to pin — submodule commits already match." \ + || git commit -m "chore: bump submodule pins" + @echo "→ push the superproject to share the new pins." + +server: ## (re)install the Electron desktop server from the configured API_REF/AGENT_REF + UV_PYTHON_PREFERENCE=only-managed uv tool install \ + "git+https://github.com/mindsdb/cowork-server.git@$(API_REF)" $(_ANTON_WITH) \ + --force --reinstall --python '>=3.12,<3.14' + @echo "✓ desktop server installed from core_api@$(API_REF)." + +server-local: ## install Electron desktop server from LOCAL uncommitted source (no push needed) + UV_PYTHON_PREFERENCE=only-managed uv tool install \ + "$(CURDIR)/$(API)" \ + --force --reinstall --python '>=3.12,<3.14' + @echo "✓ desktop server installed from local source: $(CURDIR)/$(API)" + @echo " anton resolved from core_api/pyproject.toml [tool.uv.sources]" + @echo " To also use local core_agent, set:" + @echo " [tool.uv.sources] anton-agent = { path = \"../../core_agent\" }" + @echo " in backend/core_api/pyproject.toml, then re-run server-local." + +app: $(_NPM_STAMP) ## run the Electron desktop app against the configured branch (no auto-update) + cd $(FRONTEND) && COWORK_SERVER_DISABLE_AUTOUPDATE=1 npm run dev + +app-local: $(_NPM_STAMP) ## run the Electron desktop app using LOCAL source (implies server-local) + $(MAKE) server-local + cd $(FRONTEND) && COWORK_SERVER_DISABLE_AUTOUPDATE=1 \ + COWORK_SERVER_PACKAGE="$(CURDIR)/$(API)" npm run dev + +pack-local: $(_NPM_STAMP) ## build macOS .app from LOCAL uncommitted source, iCloud-safe (no DMG) + $(MAKE) server-local + cd $(FRONTEND) && PATH="/opt/homebrew/opt/node@20/bin:$$PATH" \ + npm run build && \ + npx electron-builder --mac --arm64 --dir \ + --config.directories.output=/tmp/minds-build + rm -rf $(FRONTEND)/release/mac-arm64 + cp -R /tmp/minds-build/mac-arm64 $(FRONTEND)/release/ + @echo "✓ Built: $(FRONTEND)/release/mac-arm64/MindsHub Cowork.app" + @echo " Launch: COWORK_SERVER_DISABLE_AUTOUPDATE=1 '$(CURDIR)/$(FRONTEND)/release/mac-arm64/MindsHub Cowork.app/Contents/MacOS/MindsHub Cowork' &" + +watch: $(_NPM_STAMP) $(_API_STAMP) $(_AGENT_STAMP) ## live reload — Electron app + Python hot-reload (alias for dev) + @trap 'kill 0' SIGINT SIGTERM EXIT; \ + uv run --directory $(API) uvicorn cowork.server:app --reload \ + --reload-dir $(CURDIR)/$(API)/cowork \ + --reload-dir $(CURDIR)/$(AGENT)/anton & \ + npm --prefix $(FRONTEND) run dev diff --git a/README.es.md b/README.es.md new file mode 100644 index 0000000..91b6c61 --- /dev/null +++ b/README.es.md @@ -0,0 +1,147 @@ + + +
+ +# MindsHub + +**El espacio de trabajo unificado donde los modelos de código abierto hacen las cosas por ti.** + +_Haz que la IA haga trabajo real. Cambia de modelo cuando quieras — conserva todo lo que has construido._ + +[![Release](https://img.shields.io/github/v/release/mindsdb/minds?logo=github&label=release)](https://github.com/mindsdb/minds/releases) +[![Stars](https://img.shields.io/github/stars/mindsdb/minds?logo=github)](https://github.com/mindsdb/minds/stargazers) +[![License: MIT](https://img.shields.io/github/license/mindsdb/minds)](#-licencia) +[![Python 3.10–3.13](https://img.shields.io/badge/python-3.10%20–%203.13-brightgreen.svg)](https://www.python.org/downloads/) + +[Sitio web](https://mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) · +[Documentación](https://docs.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) · +[App web](https://console.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) · +[Precios](https://mindshub.ai/pricing?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) · +[Discord](https://mindshub.ai/discord) + +

+ Otros idiomas: English · 中文 · Português · हिन्दी +

+ +
+ +

+ cowork +

+ +**MindsHub Cowork** es el espacio de trabajo unificado donde delegas proyectos completos —apps, sitios web, investigación, análisis, informes, operaciones programadas— y recibes resultados terminados y listos para compartir. Conecta tus datos, dirige el trabajo a cualquier modelo (abierto o propietario), ejecuta agentes de código abierto y convierte su resultado en aplicaciones web que puedes publicar. Es de código abierto y funciona en cualquier lugar: tu máquina, tu VPC o la app alojada. + +Este repositorio es el **superproyecto de la plataforma**: reúne la app de escritorio/web, el backend del agente y el motor de datos para que puedas construir y ejecutar toda la pila desde el código fuente. + +## Primeros pasos + +Elige lo que mejor te convenga: + +- **Web — nada que instalar.** Abre **[console.mindshub.ai](https://console.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme)** e inicia sesión. +- **macOS.** [Descarga la app de escritorio](https://downloads.mindsdb.com/mindshub-cowork/mac/mindshub-cowork-latest.pkg) (`.pkg`). +- **Windows.** [Descarga la app de escritorio](https://downloads.mindsdb.com/mindshub-cowork/windows/mindshub-cowork-latest.exe) (`.exe`). +- **Linux.** [Compílalo desde el código fuente](#compílalo-desde-el-código-fuente). + +Gratis para empezar. Pro añade todos los modelos de vanguardia y artefactos privados — ver [precios](https://mindshub.ai/pricing?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme). + +## Qué puedes hacer + +Para cualquier trabajador del conocimiento —creadores, estrategas y operadores—: + +- **Automatiza** trabajo repetitivo de varios pasos que implica leer y escribir: informes, monitoreo, flujos de trabajo recurrentes y operaciones programadas. +- **Crea** herramientas y artefactos internos de IA —apps, dashboards, presentaciones, documentos, análisis— sin necesidad de ingeniería, y publícalos en una URL en vivo para compartir con tu equipo. + +## Qué incluye + +- **Datos conectados.** Un vault seguro conecta sistemas como BigQuery, Postgres, Gmail, Drive, HubSpot, Notion y Linear. Las credenciales quedan delimitadas por conexión —los agentes nunca ven las claves en bruto. +- **Model Router.** Cambia entre modelos de vanguardia (Claude, GPT, Gemini) y modelos abiertos (DeepSeek, Qwen, Kimi) sin configurar una clave para cada proveedor. +- **Agentes abiertos.** Ejecuta harnesses de código abierto intercambiables —Anton (por defecto) y Hermes— seleccionables desde un menú desplegable. +- **Artefactos.** Convierte la salida del agente en documentos, dashboards, apps y código, y publícalo en una URL en vivo. +- **Memoria, habilidades y programación.** Memoria entre sesiones, una biblioteca de habilidades reutilizable y tareas que se ejecutan según un horario. + +## Compílalo desde el código fuente + +**1. Clona el repositorio** + +```bash +git clone --recurse-submodules https://github.com/mindsdb/minds.git +cd minds +``` + +**2. Instala las dependencias** + +```bash +make setup +``` + +**3. Ejecuta** + +| Modo | Comando | +|---|---| +| App de escritorio (Electron) con hot reload | `make dev` o `make watch` | +| App web en el navegador con hot reload | `make dev-web` | +| Build de producción | `make build` | +| Empaquetar para macOS | `make dist-mac` | +| Empaquetar para Windows | `make dist-win` | +| Compilar la `.app` de macOS desde código local sin confirmar | `make pack-local` | +| Borrar todas las instalaciones y datos locales (empezar de cero) | `make flush` | + +> **Empezar de cero:** `make flush` elimina el runtime local (la herramienta uv `cowork-server` y los `backend/*/.venv`) y borra el estado de la app en `~/.anton` (claves de proveedores) y `~/.cowork` (base de datos, hermes, proyectos). Úsalo para probar el flujo de instalación desde cero o para recuperarte de una instalación rota. Pide confirmación —pasa `FORCE=1` para omitirla. El siguiente `make setup` o el próximo arranque de la app reinstala todo. ⚠️ Esto elimina tus conversaciones y claves guardadas. + +### Trabajar en ramas de funcionalidades (submódulos) + +Este repositorio es un superproyecto que fija (pin) cada módulo (`frontend`, `backend/core_api`, `backend/core_agent`, `backend/data-vault`) a un commit. Para trabajar en ramas de los módulos sin ensuciar el `git status` ni pelear por los pins: + +**1. Elige tus ramas** en un `dev.env` (ignorado por git, cópialo de la plantilla): + +```bash +cp dev.env.example dev.env # luego define REF=feat/mi-cosa (o por módulo API_REF=…) +``` + +**2. `make` sigue esa configuración** —un solo ajuste, para ambas formas de ejecutar: + +| Comando | Qué hace | +|---|---| +| `make use` | hace checkout de las ramas de `dev.env` en todos los submódulos | +| `make dev` / `make watch` | ejecuta la app Electron con hot reload contra el código local | +| `make dev-web` | ejecuta la SPA web con hot reload contra el código local | +| `make server` + `make app` | (re)instala el servidor de escritorio desde la rama configurada y lo lanza | +| `make server-local` + `make app-local` | instala el servidor de escritorio desde **código local sin confirmar** y lo lanza | +| `make pack-local` | compila la `.app` de macOS desde código local sin confirmar (sin necesidad de push) | +| `make refs` | muestra qué referencias usará la próxima ejecución | +| `make baseline` | restablece los submódulos a los commits fijados | +| `make pin` | registra los commits actuales de los submódulos como los pins del superproyecto (un commit deliberado) | + +Los submódulos están configurados con `ignore = all`, así que tu trabajo en ramas nunca aparece como cambios del superproyecto —el `git status` del repositorio padre se mantiene limpio. Los pins solo se mueven con `make pin`. Consulta [`CLAUDE.md`](CLAUDE.md) para el flujo completo. + +## Despliega en cualquier lugar + +Cowork está diseñado para un despliegue flexible —infraestructura **en la nube, VPC, on-prem, air-gapped e híbrida**— para que mantengas el control total sobre tu infraestructura, modelos, permisos y datos. + +## Ayuda y soporte + +- **Haz una pregunta** — únete a la [comunidad de Discord](https://mindshub.ai/discord). +- **Reporta un bug** — abre un [issue en GitHub](https://github.com/mindsdb/minds/issues) con los pasos para reproducirlo. +- **Lee la documentación** — guías, configuración y la API en [docs.mindshub.ai](https://docs.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme). +- **SLAs empresariales o despliegues a medida** — [contacta al equipo](https://mindshub.ai/contact?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme). + +## 🤝 Contribuir + +Cowork es de código abierto y las contribuciones son bienvenidas —código, integraciones, documentación, reportes de bugs e ideas de funcionalidades. Lee la [documentación](https://docs.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) para configurarte, explora los [issues abiertos](https://github.com/mindsdb/minds/issues) y saluda en [Discord](https://mindshub.ai/discord). + +## 🔒 Seguridad + +¿Encontraste una vulnerabilidad de seguridad? Por favor **no** abras un issue público. Repórtala de forma privada a través de nuestra [política de seguridad](https://github.com/mindsdb/minds/security). + +## 📚 Recursos + +- [Documentación](https://docs.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) +- [Blog](https://mindshub.ai/blog?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) +- [Guías de marca y kit de prensa](https://mindshub.ai/press-kit?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) +- [Comunidad de Discord](https://mindshub.ai/discord) + +## 📄 Licencia + +Este repositorio se publica bajo la [Licencia MIT](LICENSE). Los componentes incluidos se rigen por sus propias licencias —consulta el repositorio de cada submódulo para más detalles. + +

(volver arriba)

diff --git a/README.hi.md b/README.hi.md new file mode 100644 index 0000000..e940449 --- /dev/null +++ b/README.hi.md @@ -0,0 +1,147 @@ + + +
+ +# MindsHub + +**वह एकीकृत वर्कस्पेस जहाँ ओपन-सोर्स मॉडल आपके लिए काम पूरा करते हैं।** + +_AI से असली काम करवाएँ। कभी भी मॉडल बदलें — जो कुछ आपने बनाया है, वह सब बना रहता है।_ + +[![Release](https://img.shields.io/github/v/release/mindsdb/minds?logo=github&label=release)](https://github.com/mindsdb/minds/releases) +[![Stars](https://img.shields.io/github/stars/mindsdb/minds?logo=github)](https://github.com/mindsdb/minds/stargazers) +[![License: MIT](https://img.shields.io/github/license/mindsdb/minds)](#-लाइसेंस) +[![Python 3.10–3.13](https://img.shields.io/badge/python-3.10%20–%203.13-brightgreen.svg)](https://www.python.org/downloads/) + +[वेबसाइट](https://mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) · +[दस्तावेज़](https://docs.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) · +[वेब ऐप](https://console.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) · +[मूल्य निर्धारण](https://mindshub.ai/pricing?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) · +[Discord](https://mindshub.ai/discord) + +

+ अन्य भाषाएँ: English · 中文 · Español · Português +

+ +
+ +

+ cowork +

+ +**MindsHub Cowork** वह एकीकृत वर्कस्पेस है जहाँ आप पूरे प्रोजेक्ट्स सौंप सकते हैं — ऐप्स, वेबसाइट्स, रिसर्च, विश्लेषण, रिपोर्टिंग, शेड्यूल्ड ऑपरेशंस — और तैयार, शेयर करने-लायक नतीजे पाते हैं। अपना डेटा कनेक्ट करें, काम को किसी भी मॉडल (ओपन या प्रोप्राइटरी) पर रूट करें, ओपन-सोर्स एजेंट चलाएँ, और उनके आउटपुट को प्रकाशित करने-योग्य वेब ऐप्लिकेशंस में बदलें। यह ओपन सोर्स है और कहीं भी चलता है — आपकी मशीन पर, आपके VPC में, या होस्टेड ऐप में। + +यह रिपॉज़िटरी **प्लेटफ़ॉर्म सुपरप्रोजेक्ट** है: यह डेस्कटॉप/वेब ऐप, एजेंट बैकएंड, और डेटा इंजन को एक साथ जोड़ता है, ताकि आप पूरा स्टैक सोर्स से बना और चला सकें। + +## शुरुआत करें + +जो आपके लिए सही हो, चुनें: + +- **वेब — कुछ भी इंस्टॉल करने की ज़रूरत नहीं।** **[console.mindshub.ai](https://console.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme)** खोलें और साइन इन करें। +- **macOS.** [डेस्कटॉप ऐप डाउनलोड करें](https://downloads.mindsdb.com/mindshub-cowork/mac/mindshub-cowork-latest.pkg) (`.pkg`)। +- **Windows.** [डेस्कटॉप ऐप डाउनलोड करें](https://downloads.mindsdb.com/mindshub-cowork/windows/mindshub-cowork-latest.exe) (`.exe`)। +- **Linux.** [सोर्स से बिल्ड करें](#सोर्स-से-बिल्ड-करें)। + +शुरू करना फ्री है। Pro में सभी फ्रंटियर मॉडल्स और प्राइवेट आर्टिफैक्ट्स जुड़ते हैं — [मूल्य निर्धारण](https://mindshub.ai/pricing?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) देखें। + +## आप क्या कर सकते हैं + +हर नॉलेज वर्कर के लिए — क्रिएटर्स, स्ट्रैटेजिस्ट्स, और ऑपरेटर्स: + +- **ऑटोमेट करें** पढ़ने-लिखने से जुड़े दोहराव वाले, मल्टी-स्टेप काम: रिपोर्ट्स, मॉनिटरिंग, बार-बार होने वाले वर्कफ़्लो, और शेड्यूल्ड ऑपरेशंस। +- **बनाएँ** इंटरनल AI टूल्स और आर्टिफैक्ट्स — ऐप्स, डैशबोर्ड्स, डेक्स, डॉक्युमेंट्स, एनालिसिस — इंजीनियरिंग के बिना, और अपनी टीम के साथ शेयर करने के लिए एक लाइव URL पर पब्लिश करें। + +## इसमें क्या शामिल है + +- **कनेक्टेड डेटा।** एक सुरक्षित वॉल्ट BigQuery, Postgres, Gmail, Drive, HubSpot, Notion, और Linear जैसे सिस्टम्स को जोड़ता है। क्रेडेंशियल्स हर कनेक्शन के हिसाब से सीमित रहते हैं — एजेंट्स कभी भी असली की (raw key) नहीं देखते। +- **मॉडल राउटर (Model Router)।** फ्रंटियर मॉडल्स (Claude, GPT, Gemini) और ओपन मॉडल्स (DeepSeek, Qwen, Kimi) के बीच बिना हर प्रोवाइडर के लिए अलग की सेट किए स्विच करें। +- **ओपन एजेंट्स।** इंटरचेंजेबल ओपन-सोर्स हार्नेस चलाएँ — Anton (डिफ़ॉल्ट) और Hermes — जिन्हें ड्रॉपडाउन से बदला जा सकता है। +- **आर्टिफैक्ट्स।** एजेंट के आउटपुट को डॉक्युमेंट्स, डैशबोर्ड्स, ऐप्स और कोड में बदलें, और लाइव URL पर पब्लिश करें। +- **मेमोरी, स्किल्स और शेड्यूलिंग।** सेशन्स के बीच याद रखने वाली मेमोरी, दोबारा इस्तेमाल होने वाली स्किल लाइब्रेरी, और शेड्यूल पर चलने वाले टास्क। + +## सोर्स से बिल्ड करें + +**1. रिपॉज़िटरी क्लोन करें** + +```bash +git clone --recurse-submodules https://github.com/mindsdb/minds.git +cd minds +``` + +**2. डिपेंडेंसीज़ इंस्टॉल करें** + +```bash +make setup +``` + +**3. चलाएँ** + +| मोड | कमांड | +|---|---| +| हॉट रीलोड के साथ डेस्कटॉप ऐप (Electron) | `make dev` या `make watch` | +| हॉट रीलोड के साथ ब्राउज़र में वेब ऐप | `make dev-web` | +| प्रोडक्शन बिल्ड | `make build` | +| macOS के लिए पैकेज करें | `make dist-mac` | +| Windows के लिए पैकेज करें | `make dist-win` | +| लोकल अनकमिटेड सोर्स से macOS `.app` बनाएँ | `make pack-local` | +| सभी लोकल इंस्टॉल्स + डेटा मिटाएँ (शुरुआत से) | `make flush` | + +> **शुरुआत से:** `make flush` लोकल रनटाइम (`cowork-server` uv टूल और `backend/*/.venv`) हटा देता है और `~/.anton` (प्रोवाइडर कीज़) व `~/.cowork` (डेटाबेस, hermes, प्रोजेक्ट्स) में ऐप स्टेट डिलीट कर देता है। इसका उपयोग शुरुआत से इंस्टॉल फ़्लो टेस्ट करने या टूटे हुए इंस्टॉल से रिकवर करने के लिए करें। यह पुष्टि माँगता है — पुष्टि स्किप करने के लिए `FORCE=1` पास करें। अगला `make setup` या ऐप लॉन्च सब कुछ फिर से इंस्टॉल कर देता है। ⚠️ इससे आपकी बातचीत (conversations) और सेव्ड कीज़ डिलीट हो जाती हैं। + +### फ़ीचर ब्रांच पर काम करना (सबमॉड्यूल्स) + +यह रिपॉज़िटरी एक सुपरप्रोजेक्ट है जो हर मॉड्यूल (`frontend`, `backend/core_api`, `backend/core_agent`, `backend/data-vault`) को एक कमिट पर पिन करता है। `git status` को गंदा किए बिना या पिन्स को लेकर उलझे बिना मॉड्यूल ब्रांच पर काम करने के लिए: + +**1. अपनी ब्रांच चुनें** एक (gitignored) `dev.env` में (टेम्प्लेट से कॉपी करें): + +```bash +cp dev.env.example dev.env # फिर सेट करें REF=feat/my-thing (या हर मॉड्यूल के लिए API_REF=…) +``` + +**2. `make` इसे फ़ॉलो करता है** — एक ही सेटिंग, दोनों रन-पाथ के लिए: + +| कमांड | यह क्या करता है | +|---|---| +| `make use` | सभी सबमॉड्यूल्स में `dev.env` की ब्रांच चेकआउट करता है | +| `make dev` / `make watch` | लोकल सोर्स के खिलाफ़ हॉट रीलोड के साथ Electron ऐप चलाता है | +| `make dev-web` | लोकल सोर्स के खिलाफ़ हॉट रीलोड के साथ वेब SPA चलाता है | +| `make server` + `make app` | कॉन्फ़िगर की गई ब्रांच से डेस्कटॉप सर्वर (फिर से) इंस्टॉल करता है, फिर लॉन्च करता है | +| `make server-local` + `make app-local` | **लोकल अनकमिटेड सोर्स** से डेस्कटॉप सर्वर इंस्टॉल करता है, फिर लॉन्च करता है | +| `make pack-local` | लोकल अनकमिटेड सोर्स से macOS `.app` बनाता है (push की ज़रूरत नहीं) | +| `make refs` | दिखाता है कि अगला रन किन रेफ़्स का उपयोग करेगा | +| `make baseline` | सबमॉड्यूल्स को पिन किए गए कमिट्स पर रीसेट करता है | +| `make pin` | मौजूदा सबमॉड्यूल कमिट्स को सुपरप्रोजेक्ट के पिन्स के रूप में रिकॉर्ड करता है (एक जानबूझकर किया गया कमिट) | + +सबमॉड्यूल्स `ignore = all` के साथ कॉन्फ़िगर किए गए हैं, इसलिए आपका ब्रांच वाला काम कभी भी सुपरप्रोजेक्ट में बदलाव के रूप में नहीं दिखता — पेरेंट रिपॉज़िटरी का `git status` हमेशा साफ़ रहता है। पिन्स **केवल** `make pin` से बदलते हैं। पूरा वर्कफ़्लो [`CLAUDE.md`](CLAUDE.md) में देखें। + +## कहीं भी डिप्लॉय करें + +Cowork फ्लेक्सिबल डिप्लॉयमेंट के लिए बनाया गया है — **क्लाउड, VPC, ऑन-प्रेम, एयर-गैप्ड, और हाइब्रिड** इंफ़्रास्ट्रक्चर — ताकि आपका अपने इंफ़्रास्ट्रक्चर, मॉडल्स, परमिशन्स, और डेटा पर पूरा नियंत्रण बना रहे। + +## मदद और सहायता + +- **सवाल पूछें** — [Discord कम्युनिटी](https://mindshub.ai/discord) से जुड़ें। +- **बग रिपोर्ट करें** — रीप्रोडक्शन स्टेप्स के साथ एक [GitHub issue](https://github.com/mindsdb/minds/issues) खोलें। +- **दस्तावेज़ पढ़ें** — गाइड्स, सेटअप, और API [docs.mindshub.ai](https://docs.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) पर। +- **एंटरप्राइज़ SLA या कस्टम डिप्लॉयमेंट** — [टीम से संपर्क करें](https://mindshub.ai/contact?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme)। + +## 🤝 योगदान करें + +Cowork ओपन सोर्स है और योगदान का स्वागत है — कोड, इंटीग्रेशन्स, दस्तावेज़, बग रिपोर्ट्स, और फ़ीचर आइडियाज़। सेटअप के लिए [दस्तावेज़](https://docs.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) पढ़ें, [ओपन इश्यूज़](https://github.com/mindsdb/minds/issues) ब्राउज़ करें, और [Discord](https://mindshub.ai/discord) पर हाय कहें। + +## 🔒 सुरक्षा + +कोई सुरक्षा खामी (vulnerability) मिली? कृपया कोई पब्लिक issue **न** खोलें। हमारी [सुरक्षा नीति](https://github.com/mindsdb/minds/security) के ज़रिए इसे प्राइवेट तौर पर रिपोर्ट करें। + +## 📚 संसाधन + +- [दस्तावेज़](https://docs.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) +- [ब्लॉग](https://mindshub.ai/blog?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) +- [ब्रांड गाइडलाइंस और प्रेस किट](https://mindshub.ai/press-kit?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) +- [Discord कम्युनिटी](https://mindshub.ai/discord) + +## 📄 लाइसेंस + +यह रिपॉज़िटरी [MIT लाइसेंस](LICENSE) के तहत जारी की गई है। बंडल किए गए कॉम्पोनेंट्स अपने-अपने लाइसेंस से गवर्न होते हैं — विवरण के लिए हर सबमॉड्यूल की रिपॉज़िटरी देखें। + +

(ऊपर वापस जाएँ)

diff --git a/README.md b/README.md new file mode 100644 index 0000000..28e0251 --- /dev/null +++ b/README.md @@ -0,0 +1,150 @@ + + +
+ +# MindsHub + +**The unified workspace where open-source models get things done for you.** + +_Make AI do actual work. Swap the model anytime — keep everything you've built._ + +[![Release](https://img.shields.io/github/v/release/mindsdb/minds?logo=github&label=release)](https://github.com/mindsdb/minds/releases) +[![Stars](https://img.shields.io/github/stars/mindsdb/minds?logo=github)](https://github.com/mindsdb/minds/stargazers) +[![License: MIT](https://img.shields.io/github/license/mindsdb/minds)](#-license) +[![Python 3.10–3.13](https://img.shields.io/badge/python-3.10%20–%203.13-brightgreen.svg)](https://www.python.org/downloads/) + +[Website](https://mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) · +[Docs](https://docs.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) · +[Web app](https://console.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) · +[Pricing](https://mindshub.ai/pricing?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) · +[Discord](https://mindshub.ai/discord) + +

+ Read this in: 中文 · Español · Português · हिन्दी +

+ +
+ +

+ cowork + + + +

+ +**MindsHub Cowork** is the unified workspace where you delegate entire projects — apps, websites, research, analysis, reporting, scheduled operations — and collect finished, shareable results. Connect your data, route work to any model (open or proprietary), run open-source agents, and turn their output into web applications you can publish. It's open source and runs anywhere — your machine, your VPC, or the hosted app. + +This repository is the **platform superproject**: it pulls together the desktop/web app, the agent backend, and the data engine so you can build and run the whole stack from source. + +## Get started + +Pick whichever fits: + +- **Web — nothing to install.** Open **[console.mindshub.ai](https://console.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme)** and sign in. +- **macOS.** [Download the desktop app](https://downloads.mindsdb.com/mindshub-cowork/mac/mindshub-cowork-latest.pkg) (`.pkg`). +- **Windows.** [Download the desktop app](https://downloads.mindsdb.com/mindshub-cowork/windows/mindshub-cowork-latest.exe) (`.exe`). +- **Linux.** [Build from source](#build-from-source). + +Free to start. Pro adds all frontier models and private artifacts — see [pricing](https://mindshub.ai/pricing?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme). + +## What you can do + +For every knowledge worker — creators, strategists, and operators: + +- **Automate** repetitive, multi-step work that involves reading and writing: reports, monitoring, recurring workflows, and scheduled operations. +- **Build** internal AI tools and artifacts — apps, dashboards, decks, docs, analyses — without engineering, and publish them to a live URL to share with your team. + +## What's inside + +- **Connected data.** A secure vault links systems like BigQuery, Postgres, Gmail, Drive, HubSpot, Notion, and Linear. Credentials stay scoped per connection — agents never see raw keys. +- **Model Router.** Switch between frontier models (Claude, GPT, Gemini) and open models (DeepSeek, Qwen, Kimi) without wiring up a key for each provider. +- **Open agents.** Run interchangeable open-source harnesses — Anton (default) and Hermes — swappable from a dropdown. +- **Artifacts.** Turn agent output into documents, dashboards, apps, and code, and publish to a live URL. +- **Memory, skills & scheduling.** Cross-session memory, a reusable skill library, and tasks that run on a schedule. + +## Build from source + +**1. Clone the repository** + +```bash +git clone --recurse-submodules https://github.com/mindsdb/minds.git +cd minds +``` + +**2. Install dependencies** + +```bash +make setup +``` + +**3. Run** + +| Mode | Command | +|---|---| +| Desktop app (Electron) with hot reload | `make dev` or `make watch` | +| Web app in browser with hot reload | `make dev-web` | +| Production build | `make build` | +| Package for macOS | `make dist-mac` | +| Package for Windows | `make dist-win` | +| Build macOS `.app` from local uncommitted source | `make pack-local` | +| Wipe all local installs + data (fresh start) | `make flush` | + +> **Fresh start:** `make flush` removes the local runtime (the `cowork-server` uv tool and the `backend/*/.venv`s) and deletes app state in `~/.anton` (provider keys) and `~/.cowork` (database, hermes, projects). Use it to test the from-scratch install flow or recover from a broken install. It prompts for confirmation — pass `FORCE=1` to skip. The next `make setup` or app launch reinstalls everything. ⚠️ This deletes your conversations and saved keys. + +### Working on feature branches (submodules) + +This repo is a superproject that pins each module (`frontend`, `backend/core_api`, `backend/core_agent`, `backend/data-vault`) to a commit. To work on module branches without polluting `git status` or fighting over pins: + +**1. Pick your branches** in a gitignored `dev.env` (copy the template): + +```bash +cp dev.env.example dev.env # then set REF=feat/my-thing (or per-module API_REF=…) +``` + +**2. `make` follows it** — one knob, both run paths: + +| Command | What it does | +|---|---| +| `make use` | check out your `dev.env` refs across all submodules | +| `make dev` / `make watch` | run the Electron app with live reload against local source | +| `make dev-web` | run the web SPA with live reload against local source | +| `make server` + `make app` | (re)install the desktop server from the configured branch, then launch | +| `make server-local` + `make app-local` | install the desktop server from **local uncommitted source**, then launch | +| `make pack-local` | build the macOS `.app` from local uncommitted source (no push needed) | +| `make refs` | show which refs the next run will use | +| `make baseline` | reset submodules to the pinned commits | +| `make pin` | record the current submodule commits as the superproject's pins (one deliberate commit) | + +Submodules are configured with `ignore = all`, so your branch work never shows up as superproject changes — the parent `git status` stays clean. Pins move **only** via `make pin`. See [`CLAUDE.md`](CLAUDE.md) for the full workflow. + +## Deploy anywhere + +Cowork is built for flexible deployment — **cloud, VPC, on-prem, air-gapped, and hybrid** infrastructure — so you keep full control over your infrastructure, models, permissions, and data. + +## Help & support + +- **Ask a question** — join the [Discord community](https://mindshub.ai/discord). +- **Report a bug** — open a [GitHub issue](https://github.com/mindsdb/minds/issues) with reproduction steps. +- **Read the docs** — guides, setup, and the API at [docs.mindshub.ai](https://docs.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme). +- **Enterprise SLAs or custom deployments** — [contact the team](https://mindshub.ai/contact?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme). + +## 🤝 Contribute + +Cowork is open source and contributions are welcome — code, integrations, docs, bug reports, and feature ideas. Read the [docs](https://docs.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) to get set up, browse [open issues](https://github.com/mindsdb/minds/issues), and say hi on [Discord](https://mindshub.ai/discord). + +## 🔒 Security + +Found a security vulnerability? Please **don't** open a public issue. Report it privately through our [security policy](https://github.com/mindsdb/minds/security). + +## 📚 Resources + +- [Documentation](https://docs.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) +- [Blog](https://mindshub.ai/blog?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) +- [Brand guidelines & press kit](https://mindshub.ai/press-kit?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) +- [Discord community](https://mindshub.ai/discord) + +## 📄 License + +This repository is released under the [MIT License](LICENSE). Bundled components are governed by their own licenses — see each submodule's repository for details. + +

(back to top)

diff --git a/README.pt.md b/README.pt.md new file mode 100644 index 0000000..a441f63 --- /dev/null +++ b/README.pt.md @@ -0,0 +1,147 @@ + + +
+ +# MindsHub + +**O espaço de trabalho unificado onde modelos de código aberto fazem as coisas por você.** + +_Faça a IA realizar trabalho de verdade. Troque de modelo quando quiser — mantenha tudo o que você construiu._ + +[![Release](https://img.shields.io/github/v/release/mindsdb/minds?logo=github&label=release)](https://github.com/mindsdb/minds/releases) +[![Stars](https://img.shields.io/github/stars/mindsdb/minds?logo=github)](https://github.com/mindsdb/minds/stargazers) +[![License: MIT](https://img.shields.io/github/license/mindsdb/minds)](#-licença) +[![Python 3.10–3.13](https://img.shields.io/badge/python-3.10%20–%203.13-brightgreen.svg)](https://www.python.org/downloads/) + +[Site](https://mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) · +[Documentação](https://docs.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) · +[App web](https://console.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) · +[Preços](https://mindshub.ai/pricing?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) · +[Discord](https://mindshub.ai/discord) + +

+ Outros idiomas: English · 中文 · Español · हिन्दी +

+ +
+ +

+ cowork +

+ +O **MindsHub Cowork** é o espaço de trabalho unificado onde você delega projetos inteiros —apps, sites, pesquisa, análise, relatórios, operações agendadas— e recebe resultados finalizados e prontos para compartilhar. Conecte seus dados, direcione o trabalho para qualquer modelo (aberto ou proprietário), execute agentes de código aberto e transforme a saída deles em aplicações web que você pode publicar. É open source e funciona em qualquer lugar —sua máquina, sua VPC, ou o app hospedado. + +Este repositório é o **superprojeto da plataforma**: ele reúne o app de desktop/web, o backend do agente e o motor de dados para que você possa compilar e executar toda a stack a partir do código-fonte. + +## Comece agora + +Escolha o que fizer mais sentido: + +- **Web — nada para instalar.** Abra **[console.mindshub.ai](https://console.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme)** e faça login. +- **macOS.** [Baixe o app de desktop](https://downloads.mindsdb.com/mindshub-cowork/mac/mindshub-cowork-latest.pkg) (`.pkg`). +- **Windows.** [Baixe o app de desktop](https://downloads.mindsdb.com/mindshub-cowork/windows/mindshub-cowork-latest.exe) (`.exe`). +- **Linux.** [Compile a partir do código-fonte](#compile-a-partir-do-código-fonte). + +Grátis para começar. O plano Pro adiciona todos os modelos de ponta e artefatos privados — veja os [preços](https://mindshub.ai/pricing?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme). + +## O que você pode fazer + +Para todo trabalhador do conhecimento —criadores, estrategistas e operadores: + +- **Automatize** trabalho repetitivo e multietapas que envolve leitura e escrita: relatórios, monitoramento, fluxos recorrentes e operações agendadas. +- **Construa** ferramentas e artefatos internos de IA —apps, dashboards, apresentações, documentos, análises— sem precisar de engenharia, e publique em uma URL ativa para compartilhar com sua equipe. + +## O que tem por dentro + +- **Dados conectados.** Um vault seguro conecta sistemas como BigQuery, Postgres, Gmail, Drive, HubSpot, Notion e Linear. As credenciais ficam restritas por conexão —os agentes nunca veem as chaves brutas. +- **Model Router.** Alterne entre modelos de ponta (Claude, GPT, Gemini) e modelos abertos (DeepSeek, Qwen, Kimi) sem configurar uma chave para cada provedor. +- **Agentes abertos.** Execute harnesses de código aberto intercambiáveis —Anton (padrão) e Hermes— selecionáveis em um menu. +- **Artefatos.** Transforme a saída do agente em documentos, dashboards, apps e código, e publique em uma URL ativa. +- **Memória, habilidades e agendamento.** Memória entre sessões, uma biblioteca de habilidades reutilizável e tarefas que rodam em horários programados. + +## Compile a partir do código-fonte + +**1. Clone o repositório** + +```bash +git clone --recurse-submodules https://github.com/mindsdb/minds.git +cd minds +``` + +**2. Instale as dependências** + +```bash +make setup +``` + +**3. Execute** + +| Modo | Comando | +|---|---| +| App de desktop (Electron) com hot reload | `make dev` ou `make watch` | +| App web no navegador com hot reload | `make dev-web` | +| Build de produção | `make build` | +| Empacotar para macOS | `make dist-mac` | +| Empacotar para Windows | `make dist-win` | +| Compilar o `.app` do macOS a partir do código local não commitado | `make pack-local` | +| Apagar todas as instalações e dados locais (começar do zero) | `make flush` | + +> **Começar do zero:** `make flush` remove o runtime local (a ferramenta uv `cowork-server` e os `backend/*/.venv`) e apaga o estado do app em `~/.anton` (chaves de provedores) e `~/.cowork` (banco de dados, hermes, projetos). Use para testar o fluxo de instalação do zero ou recuperar uma instalação corrompida. Pede confirmação —passe `FORCE=1` para pular. O próximo `make setup` ou início do app reinstala tudo. ⚠️ Isso apaga suas conversas e chaves salvas. + +### Trabalhando em branches de features (submódulos) + +Este repositório é um superprojeto que fixa (pin) cada módulo (`frontend`, `backend/core_api`, `backend/core_agent`, `backend/data-vault`) em um commit. Para trabalhar em branches dos módulos sem poluir o `git status` ou disputar os pins: + +**1. Escolha suas branches** em um `dev.env` (ignorado pelo git, copie do modelo): + +```bash +cp dev.env.example dev.env # depois defina REF=feat/minha-coisa (ou por módulo API_REF=…) +``` + +**2. O `make` segue essa configuração** —um único controle, para os dois modos de execução: + +| Comando | O que faz | +|---|---| +| `make use` | faz checkout das branches do `dev.env` em todos os submódulos | +| `make dev` / `make watch` | executa o app Electron com hot reload a partir do código local | +| `make dev-web` | executa a SPA web com hot reload a partir do código local | +| `make server` + `make app` | (re)instala o servidor de desktop a partir da branch configurada e inicia | +| `make server-local` + `make app-local` | instala o servidor de desktop a partir do **código local não commitado** e inicia | +| `make pack-local` | compila o `.app` do macOS a partir do código local não commitado (sem precisar de push) | +| `make refs` | mostra quais referências a próxima execução vai usar | +| `make baseline` | reseta os submódulos para os commits fixados | +| `make pin` | registra os commits atuais dos submódulos como os pins do superprojeto (um commit deliberado) | + +Os submódulos são configurados com `ignore = all`, então seu trabalho em branches nunca aparece como alterações do superprojeto —o `git status` do repositório pai permanece limpo. Os pins só mudam via `make pin`. Veja o fluxo completo em [`CLAUDE.md`](CLAUDE.md). + +## Implante em qualquer lugar + +O Cowork é feito para implantação flexível —infraestrutura em **nuvem, VPC, on-premises, air-gapped e híbrida**— para que você mantenha controle total sobre sua infraestrutura, modelos, permissões e dados. + +## Ajuda e suporte + +- **Faça uma pergunta** — entre na [comunidade do Discord](https://mindshub.ai/discord). +- **Reporte um bug** — abra uma [issue no GitHub](https://github.com/mindsdb/minds/issues) com os passos para reproduzir. +- **Leia a documentação** — guias, configuração e a API em [docs.mindshub.ai](https://docs.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme). +- **SLAs empresariais ou implantações personalizadas** — [entre em contato com o time](https://mindshub.ai/contact?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme). + +## 🤝 Contribua + +O Cowork é open source e contribuições são bem-vindas —código, integrações, documentação, relatos de bugs e ideias de funcionalidades. Leia a [documentação](https://docs.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) para se preparar, veja as [issues abertas](https://github.com/mindsdb/minds/issues) e dê um alô no [Discord](https://mindshub.ai/discord). + +## 🔒 Segurança + +Encontrou uma vulnerabilidade de segurança? Por favor, **não** abra uma issue pública. Reporte de forma privada através da nossa [política de segurança](https://github.com/mindsdb/minds/security). + +## 📚 Recursos + +- [Documentação](https://docs.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) +- [Blog](https://mindshub.ai/blog?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) +- [Diretrizes de marca e press kit](https://mindshub.ai/press-kit?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) +- [Comunidade do Discord](https://mindshub.ai/discord) + +## 📄 Licença + +Este repositório é distribuído sob a [Licença MIT](LICENSE). Os componentes empacotados são regidos por suas próprias licenças —consulte o repositório de cada submódulo para mais detalhes. + +

(voltar ao topo)

diff --git a/README.wehub.md b/README.wehub.md new file mode 100644 index 0000000..3cb74f2 --- /dev/null +++ b/README.wehub.md @@ -0,0 +1,7 @@ +# WeHub 来源说明 + +- 原始项目:`mindsdb/minds` +- 原始仓库:https://github.com/mindsdb/minds +- 导入方式:上游默认分支的最新快照 +- 原作者、版权和许可证信息以原始仓库及本仓库 LICENSE 为准 +- 本文件仅用于记录来源,不代表 WeHub 是原项目作者 diff --git a/README.zh.md b/README.zh.md new file mode 100644 index 0000000..b55696d --- /dev/null +++ b/README.zh.md @@ -0,0 +1,147 @@ + + +
+ +# MindsHub + +**开源模型为你完成任务的统一工作空间。** + +_让 AI 真正干活。随时切换模型——你搭建的一切都保留下来。_ + +[![Release](https://img.shields.io/github/v/release/mindsdb/minds?logo=github&label=release)](https://github.com/mindsdb/minds/releases) +[![Stars](https://img.shields.io/github/stars/mindsdb/minds?logo=github)](https://github.com/mindsdb/minds/stargazers) +[![License: MIT](https://img.shields.io/github/license/mindsdb/minds)](#-许可证) +[![Python 3.10–3.13](https://img.shields.io/badge/python-3.10%20–%203.13-brightgreen.svg)](https://www.python.org/downloads/) + +[官网](https://mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) · +[文档](https://docs.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) · +[网页应用](https://console.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) · +[定价](https://mindshub.ai/pricing?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) · +[Discord](https://mindshub.ai/discord) + +

+ 其他语言: English · Español · Português · हिन्दी +

+ +
+ +

+ cowork +

+ +**MindsHub Cowork** 是一个统一工作空间,你可以在这里委托完整的项目——应用、网站、调研、分析、报告、定时运维——并获得可直接分享的成品结果。连接你的数据,将工作路由到任意模型(开源或商用),运行开源智能体,并将其产出转化为可发布的网页应用。它是开源的,可以运行在任何地方——你的电脑、你的 VPC,或托管应用中。 + +本仓库是**平台超级项目(superproject)**:它整合了桌面/网页应用、智能体后端和数据引擎,让你可以从源码构建并运行整套技术栈。 + +## 快速开始 + +选择最适合你的方式: + +- **网页版 —— 无需安装。** 打开 **[console.mindshub.ai](https://console.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme)** 并登录。 +- **macOS。** [下载桌面应用](https://downloads.mindsdb.com/mindshub-cowork/mac/mindshub-cowork-latest.pkg)(`.pkg`)。 +- **Windows。** [下载桌面应用](https://downloads.mindsdb.com/mindshub-cowork/windows/mindshub-cowork-latest.exe)(`.exe`)。 +- **Linux。** [从源码构建](#从源码构建)。 + +免费即可开始使用。Pro 版本解锁全部前沿模型与私有成果物——详见[定价](https://mindshub.ai/pricing?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme)。 + +## 你能做什么 + +面向每一位知识工作者——创作者、策略制定者与运营者: + +- **自动化**涉及读写的重复性多步骤工作:报告、监控、周期性工作流以及定时运维任务。 +- **构建**内部 AI 工具与成果物——应用、仪表盘、演示文稿、文档、分析报告——无需工程开发,并发布到可分享给团队的在线链接。 + +## 内含功能 + +- **数据连接。** 安全的密钥库(vault)可连接 BigQuery、Postgres、Gmail、Drive、HubSpot、Notion、Linear 等系统。凭证按连接单独限定范围——智能体永远看不到原始密钥。 +- **模型路由(Model Router)。** 在前沿模型(Claude、GPT、Gemini)与开源模型(DeepSeek、Qwen、Kimi)之间自由切换,无需为每个提供方单独配置密钥。 +- **开源智能体。** 运行可互换的开源执行引擎(harness)——Anton(默认)与 Hermes——通过下拉菜单即可切换。 +- **成果物(Artifacts)。** 将智能体的产出转化为文档、仪表盘、应用与代码,并发布到在线链接。 +- **记忆、技能与定时任务。** 跨会话记忆、可复用的技能库,以及按计划运行的任务。 + +## 从源码构建 + +**1. 克隆仓库** + +```bash +git clone --recurse-submodules https://github.com/mindsdb/minds.git +cd minds +``` + +**2. 安装依赖** + +```bash +make setup +``` + +**3. 运行** + +| 模式 | 命令 | +|---|---| +| 桌面应用(Electron),支持热重载 | `make dev` 或 `make watch` | +| 浏览器网页应用,支持热重载 | `make dev-web` | +| 生产构建 | `make build` | +| 打包 macOS 版本 | `make dist-mac` | +| 打包 Windows 版本 | `make dist-win` | +| 从本地未提交的源码构建 macOS `.app` | `make pack-local` | +| 清除所有本地安装与数据(从零开始) | `make flush` | + +> **从零开始:** `make flush` 会移除本地运行环境(`cowork-server` uv 工具及 `backend/*/.venv`),并删除 `~/.anton`(提供方密钥)与 `~/.cowork`(数据库、hermes、项目)中的应用状态。用它来测试从零安装流程,或从损坏的安装中恢复。执行前会要求确认——传入 `FORCE=1` 可跳过确认。之后运行 `make setup` 或启动应用即可重新安装全部内容。⚠️ 此操作会删除你的对话记录和已保存的密钥。 + +### 在功能分支上开发(子模块) + +本仓库是一个超级项目,将每个模块(`frontend`、`backend/core_api`、`backend/core_agent`、`backend/data-vault`)固定(pin)到某个提交。要在模块分支上开发而不污染 `git status` 或与固定版本产生冲突: + +**1. 在(已加入 `.gitignore` 的)`dev.env` 中选择你的分支**(从模板复制): + +```bash +cp dev.env.example dev.env # 然后设置 REF=feat/my-thing(或按模块设置 API_REF=…) +``` + +**2. `make` 会自动读取该配置** —— 一个开关,适用于两种运行方式: + +| 命令 | 作用 | +|---|---| +| `make use` | 按 `dev.env` 中的配置检出所有子模块的分支 | +| `make dev` / `make watch` | 以本地源码热重载方式运行 Electron 应用 | +| `make dev-web` | 以本地源码热重载方式运行网页版 SPA | +| `make server` + `make app` | 从配置的分支(重新)安装桌面服务端,然后启动 | +| `make server-local` + `make app-local` | 从**本地未提交的源码**安装桌面服务端,然后启动 | +| `make pack-local` | 从本地未提交的源码构建 macOS `.app`(无需推送) | +| `make refs` | 显示下一次运行将使用的分支引用 | +| `make baseline` | 将子模块重置为固定的提交版本 | +| `make pin` | 将当前子模块提交记录为超级项目的固定版本(一次明确的提交) | + +子模块配置了 `ignore = all`,因此你在分支上的工作永远不会显示为超级项目的更改——父仓库的 `git status` 始终保持干净。固定版本**只能**通过 `make pin` 变更。完整流程见 [`CLAUDE.md`](CLAUDE.md)。 + +## 随处部署 + +Cowork 的设计支持灵活部署——**云端、VPC、本地部署、离线隔离环境以及混合基础设施**——让你完全掌控自己的基础设施、模型、权限与数据。 + +## 帮助与支持 + +- **提出问题** —— 加入 [Discord 社区](https://mindshub.ai/discord)。 +- **报告 Bug** —— 提交 [GitHub issue](https://github.com/mindsdb/minds/issues),并附上复现步骤。 +- **查阅文档** —— 使用指南、部署说明与 API,见 [docs.mindshub.ai](https://docs.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme)。 +- **企业级 SLA 或定制化部署** —— [联系我们](https://mindshub.ai/contact?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme)。 + +## 🤝 参与贡献 + +Cowork 是开源项目,欢迎任何形式的贡献——代码、集成、文档、Bug 报告与功能建议。阅读[文档](https://docs.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme)完成环境搭建,浏览[已有 issue](https://github.com/mindsdb/minds/issues),也欢迎到 [Discord](https://mindshub.ai/discord) 打个招呼。 + +## 🔒 安全 + +发现安全漏洞?请**不要**创建公开 issue。请通过我们的[安全策略](https://github.com/mindsdb/minds/security)私下提交报告。 + +## 📚 资源 + +- [文档](https://docs.mindshub.ai/?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) +- [博客](https://mindshub.ai/blog?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) +- [品牌指南与媒体资料包](https://mindshub.ai/press-kit?utm_source=github&utm_medium=repo-readme&utm_campaign=minds-readme) +- [Discord 社区](https://mindshub.ai/discord) + +## 📄 许可证 + +本仓库基于 [MIT 许可证](LICENSE) 发布。所捆绑的组件遵循各自的许可证——详情请参阅各子模块仓库。 + +

(返回顶部)

diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 0000000..63c3d52 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,30 @@ +# MindsDB Security Policy + +At MindsDB, we consider the security of our systems a top priority. However, no matter how much effort we put into system security, there can still be vulnerabilities present. +Supported Versions + +MindsDB only offers security patches for the following versions + +| Version | Supported | +| ------- | ------------------ | +| >=23.6.1.1 | :white_check_mark: | + +### Reporting a Vulnerability + +If you discover a security vulnerability, we appreciate your efforts to responsibly disclose your findings by sending an email to hello@mindsdb.com, providing as much detail as you can. Please do not publicly disclose these details without express consent from us. + +Upon receiving your email, our security team will assess and respond to your report. We strive to keep all communication channels open with you to address your report effectively. +Disclosure Policy + +Once we have received and evaluated your vulnerability report, MindsDB commits to: + +* Confirm the receipt of your report +* Assess the vulnerability report to confirm its validity +* Work on a fix and update the impacted versions +* Publicly disclose the vulnerability after it has been addressed, giving credit to the reporter if they wish + +### Comments on this Policy + +If you have any suggestions to improve this policy, please let us know. We are committed to ensuring that our policy works effectively for everyone involved. + +Thank you for helping to make MindsDB safer for everyone. diff --git a/assets/contributions-agreement/entity-contributor.md b/assets/contributions-agreement/entity-contributor.md new file mode 100644 index 0000000..1135f86 --- /dev/null +++ b/assets/contributions-agreement/entity-contributor.md @@ -0,0 +1,93 @@ +# MindsDB, Inc. Contributor License Agreement + +By Submitting a Contribution to a Project, you hereby accept and agree to the following terms and +conditions (this “Agreement”) for your prior, present and future Contributions submitted to MindsDB, Inc. +(“Company”). Except for the licenses granted herein to Company, you reserve all right, title, and interest +in and to your Contributions. + +1. Definitions + + 1.1. “Submit” or “Submitting” is the act of uploading, submitting, transmitting, or distributing code or +other content to any Project, including but not limited to communication on electronic mailing +lists, source code control systems, and issue tracking systems that are managed by, or on behalf +of, the Project for the purpose of discussing and improving that Project. + + 1.2. “Contribution” shall mean the code, documentation, or other original works of authorship, +including any modifications or additions to an existing work, that is Submitted by you to +Company for inclusion in, or documentation of, any of the works, products or projects owned or +managed by Company (each a “Project”). +2. Your Employer. References to “employer” in this Agreement include your employer or anyone else +for whom you are acting in making or Submitting your Contribution, e.g. as a contractor, vendor, or +agent, and any other entity that controls, is controlled by, or is under common control with that entity. +For the purposes of this definition, “control” means (i) the power, direct or indirect, to cause the +direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty +percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. If your +Contribution is made in the course of your work for an employer or your employer has +intellectual property rights in your Contribution by contract or applicable law, you must +secure permission from your employer to make the Contribution before Submitting the +Contribution. In that case, the term “you” in this Agreement will refer to you and the employer +collectively. If you change employers in the future and desire to Submit additional Contributions for +the new employer, then you agree to secure permission from the new employer before Submitting +those Contributions. +3. Originality of Work. You represent and warrant that each of your Contributions is entirely your +original work, and that the Contribution, whether alone or in combination with the Project, will infringe +upon or misappropriate the intellectual property or other rights of any third party. Should you wish to +Submit materials that are not your original work, you may Submit them separately to the Project if you +(i) retain all copyright and license information that was in the materials as you received them, (ii) in +the description accompanying your Contribution, include the phrase “Contribution containing +materials of a third party:” followed by the names of the third party and any licenses or other +restrictions of which you are aware, and (iii) follow any other instructions in the Project’s written +guidelines concerning Contributions. +4. Licenses + + 4.1. Copyright License. You grant Company, and those who receive the Contribution directly or +indirectly from Company, a perpetual, worldwide, non-exclusive, royalty-free, irrevocable license +in the Contribution to reproduce, prepare derivative works of, publicly display, publicly perform, +and distribute the Contribution and such derivative works, and to sublicense any or all of the +foregoing rights to third parties. + + 4.2. Patent License. You grant Company, and those who receive the Contribution directly or indirectly +from Company, a perpetual, worldwide, non-exclusive, royalty-free, irrevocable license under +your patent claims that are necessarily infringed by the Contribution or the combination of the +Contribution with the Project to which it was Submitted to make, have made, use, offer to sell, +sell and import or otherwise dispose of the Contribution alone or with the Project. + + 4.3. Other Rights Reserved. Each party reserves all rights not expressly granted in this Agreement. +No additional licenses or rights whatsoever (including, without limitation, any implied licenses) +are granted by implication, exhaustion, estoppel or otherwise. + +5. Prior Contributions. You agree that if you submitted a Contribution to a Project prior to the Effective +Date (each a “Prior Contribution”), then, regardless of whether you had an agreement in place with +Company governing such Prior Contributions, such Prior Contributions are deemed “Contributions” +hereunder and are hereby licensed to Company pursuant to Section 4 as of the date you Submitted +the Prior Contribution. +6. Representations and Warranties. You represent and warrant that you are legally entitled to grant +the above licenses. You represent and warrant that each of your Contributions is entirely your original +work (except as you may have disclosed in accordance with Section 3 ). You represent and warrant +that you have secured permission from your employer to make the Contribution in cases where your +Contribution is made in the course of your work for your employer or your employer has intellectual +property rights in your Contribution (or any portion thereof) by contract or applicable law. If you are +agreeing to this Agreement on behalf of your employer, you represent and warrant that you have the +necessary authority to bind the listed employer to the obligations contained in this Agreement. You +are not expected to provide support for your Contribution unless you choose to do so. UNLESS +REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING, AND EXCEPT FOR THE +WARRANTIES EXPRESSLY STATED IN SECTIONS 3 AND 6 , THE CONTRIBUTION PROVIDED +UNDER THIS AGREEMENT IS PROVIDED WITHOUT WARRANTY OF ANY KIND, INCLUDING, +BUT NOT LIMITED TO, ANY WARRANTY OF MERCHANTABILITY, OR FITNESS FOR A +PARTICULAR PURPOSE. +7. Notice to Company. You agree to notify Company in writing of any facts or circumstances of which +you later become aware that would make your representations or warranties in this Agreement +inaccurate in any respect. You may contact Company at [EMAIL]. +8. Information about Contributions. You agree that Contributions to Projects and information about +Contributions may be maintained indefinitely and disclosed publicly, including your name and other +information that you submit with your Contribution. +9. Governing Law/Jurisdiction. This Agreement is governed by the laws of the State of California, and +the parties consent to exclusive jurisdiction and venue in the federal courts sitting in the City and +County of San Francisco. The parties waive all defenses of lack of personal jurisdiction and forum +non-conveniens. +10. Entire Agreement/Assignment. This Agreement is the entire agreement between the parties, and +supersedes any and all prior agreements, understandings or communications, written or oral, +between the parties relating to the subject matter hereof, including any of the foregoing as applicable +to Prior Contributions. This Agreement may be freely assigned by Company, without notice to you. +The parties accept and agree to be bound by the terms of this Agreement as of the date of the last +signature below (the “Effective Date”). diff --git a/assets/contributions-agreement/individual-contributor.md b/assets/contributions-agreement/individual-contributor.md new file mode 100644 index 0000000..1135f86 --- /dev/null +++ b/assets/contributions-agreement/individual-contributor.md @@ -0,0 +1,93 @@ +# MindsDB, Inc. Contributor License Agreement + +By Submitting a Contribution to a Project, you hereby accept and agree to the following terms and +conditions (this “Agreement”) for your prior, present and future Contributions submitted to MindsDB, Inc. +(“Company”). Except for the licenses granted herein to Company, you reserve all right, title, and interest +in and to your Contributions. + +1. Definitions + + 1.1. “Submit” or “Submitting” is the act of uploading, submitting, transmitting, or distributing code or +other content to any Project, including but not limited to communication on electronic mailing +lists, source code control systems, and issue tracking systems that are managed by, or on behalf +of, the Project for the purpose of discussing and improving that Project. + + 1.2. “Contribution” shall mean the code, documentation, or other original works of authorship, +including any modifications or additions to an existing work, that is Submitted by you to +Company for inclusion in, or documentation of, any of the works, products or projects owned or +managed by Company (each a “Project”). +2. Your Employer. References to “employer” in this Agreement include your employer or anyone else +for whom you are acting in making or Submitting your Contribution, e.g. as a contractor, vendor, or +agent, and any other entity that controls, is controlled by, or is under common control with that entity. +For the purposes of this definition, “control” means (i) the power, direct or indirect, to cause the +direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty +percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. If your +Contribution is made in the course of your work for an employer or your employer has +intellectual property rights in your Contribution by contract or applicable law, you must +secure permission from your employer to make the Contribution before Submitting the +Contribution. In that case, the term “you” in this Agreement will refer to you and the employer +collectively. If you change employers in the future and desire to Submit additional Contributions for +the new employer, then you agree to secure permission from the new employer before Submitting +those Contributions. +3. Originality of Work. You represent and warrant that each of your Contributions is entirely your +original work, and that the Contribution, whether alone or in combination with the Project, will infringe +upon or misappropriate the intellectual property or other rights of any third party. Should you wish to +Submit materials that are not your original work, you may Submit them separately to the Project if you +(i) retain all copyright and license information that was in the materials as you received them, (ii) in +the description accompanying your Contribution, include the phrase “Contribution containing +materials of a third party:” followed by the names of the third party and any licenses or other +restrictions of which you are aware, and (iii) follow any other instructions in the Project’s written +guidelines concerning Contributions. +4. Licenses + + 4.1. Copyright License. You grant Company, and those who receive the Contribution directly or +indirectly from Company, a perpetual, worldwide, non-exclusive, royalty-free, irrevocable license +in the Contribution to reproduce, prepare derivative works of, publicly display, publicly perform, +and distribute the Contribution and such derivative works, and to sublicense any or all of the +foregoing rights to third parties. + + 4.2. Patent License. You grant Company, and those who receive the Contribution directly or indirectly +from Company, a perpetual, worldwide, non-exclusive, royalty-free, irrevocable license under +your patent claims that are necessarily infringed by the Contribution or the combination of the +Contribution with the Project to which it was Submitted to make, have made, use, offer to sell, +sell and import or otherwise dispose of the Contribution alone or with the Project. + + 4.3. Other Rights Reserved. Each party reserves all rights not expressly granted in this Agreement. +No additional licenses or rights whatsoever (including, without limitation, any implied licenses) +are granted by implication, exhaustion, estoppel or otherwise. + +5. Prior Contributions. You agree that if you submitted a Contribution to a Project prior to the Effective +Date (each a “Prior Contribution”), then, regardless of whether you had an agreement in place with +Company governing such Prior Contributions, such Prior Contributions are deemed “Contributions” +hereunder and are hereby licensed to Company pursuant to Section 4 as of the date you Submitted +the Prior Contribution. +6. Representations and Warranties. You represent and warrant that you are legally entitled to grant +the above licenses. You represent and warrant that each of your Contributions is entirely your original +work (except as you may have disclosed in accordance with Section 3 ). You represent and warrant +that you have secured permission from your employer to make the Contribution in cases where your +Contribution is made in the course of your work for your employer or your employer has intellectual +property rights in your Contribution (or any portion thereof) by contract or applicable law. If you are +agreeing to this Agreement on behalf of your employer, you represent and warrant that you have the +necessary authority to bind the listed employer to the obligations contained in this Agreement. You +are not expected to provide support for your Contribution unless you choose to do so. UNLESS +REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING, AND EXCEPT FOR THE +WARRANTIES EXPRESSLY STATED IN SECTIONS 3 AND 6 , THE CONTRIBUTION PROVIDED +UNDER THIS AGREEMENT IS PROVIDED WITHOUT WARRANTY OF ANY KIND, INCLUDING, +BUT NOT LIMITED TO, ANY WARRANTY OF MERCHANTABILITY, OR FITNESS FOR A +PARTICULAR PURPOSE. +7. Notice to Company. You agree to notify Company in writing of any facts or circumstances of which +you later become aware that would make your representations or warranties in this Agreement +inaccurate in any respect. You may contact Company at [EMAIL]. +8. Information about Contributions. You agree that Contributions to Projects and information about +Contributions may be maintained indefinitely and disclosed publicly, including your name and other +information that you submit with your Contribution. +9. Governing Law/Jurisdiction. This Agreement is governed by the laws of the State of California, and +the parties consent to exclusive jurisdiction and venue in the federal courts sitting in the City and +County of San Francisco. The parties waive all defenses of lack of personal jurisdiction and forum +non-conveniens. +10. Entire Agreement/Assignment. This Agreement is the entire agreement between the parties, and +supersedes any and all prior agreements, understandings or communications, written or oral, +between the parties relating to the subject matter hereof, including any of the foregoing as applicable +to Prior Contributions. This Agreement may be freely assigned by Company, without notice to you. +The parties accept and agree to be bound by the terms of this Agreement as of the date of the last +signature below (the “Effective Date”). diff --git a/assets/contributions-agreement/signatures/cla.json b/assets/contributions-agreement/signatures/cla.json new file mode 100644 index 0000000..b3dabe8 --- /dev/null +++ b/assets/contributions-agreement/signatures/cla.json @@ -0,0 +1,6884 @@ +{ + "signedContributors": [ + { + "name": "StpMax", + "id": 4068133, + "comment_id": 673415233, + "created_at": "2020-08-13T11:11:08Z", + "repoId": 143328315, + "pullRequestNo": 641 + }, + { + "name": "setohe0909", + "id": 4140414, + "comment_id": 678526352, + "created_at": "2020-08-21T21:33:01Z", + "repoId": 143328315, + "pullRequestNo": 661 + }, + { + "name": "divait", + "id": 5004381, + "comment_id": 680038494, + "created_at": "2020-08-25T13:52:00Z", + "repoId": 143328315, + "pullRequestNo": 653 + }, + { + "name": "alejandrovillegas", + "id": 3981512, + "comment_id": 688941967, + "created_at": "2020-09-08T15:08:23Z", + "repoId": 143328315, + "pullRequestNo": 676 + }, + { + "name": "timgates42", + "id": 47873678, + "comment_id": 695058456, + "created_at": "2020-09-18T19:59:32Z", + "repoId": 143328315, + "pullRequestNo": 694 + }, + { + "name": "trewest", + "id": 20286024, + "comment_id": 706550474, + "created_at": "2020-10-10T13:36:24Z", + "repoId": 143328315, + "pullRequestNo": 778 + }, + { + "name": "pwees", + "id": 8236417, + "comment_id": 706577419, + "created_at": "2020-10-10T16:45:18Z", + "repoId": 143328315, + "pullRequestNo": 779 + }, + { + "name": "sergey-mindsdb", + "id": 72136530, + "comment_id": 703506011, + "created_at": "2020-10-05T09:10:36Z", + "repoId": 143328315, + "pullRequestNo": 754 + }, + { + "name": "himadriganguly", + "id": 5839433, + "comment_id": 704267548, + "created_at": "2020-10-06T13:26:12Z", + "repoId": 143328315, + "pullRequestNo": 748 + }, + { + "name": "the-bose", + "id": 30630364, + "comment_id": 704401128, + "created_at": "2020-10-06T16:34:40Z", + "repoId": 143328315, + "pullRequestNo": 745 + }, + { + "name": "pushp1997", + "id": 19623154, + "comment_id": 705505840, + "created_at": "2020-10-08T11:24:31Z", + "repoId": 143328315, + "pullRequestNo": 752 + }, + { + "name": "lucy-ctrl", + "id": 53624811, + "comment_id": 709322356, + "created_at": "2020-10-15T13:24:38Z", + "repoId": 143328315, + "pullRequestNo": 812 + }, + { + "name": "yash2189", + "id": 31548778, + "comment_id": 709406539, + "created_at": "2020-10-15T15:32:44Z", + "repoId": 143328315, + "pullRequestNo": 813 + }, + { + "name": "vinmay", + "id": 3458864, + "comment_id": 711031595, + "created_at": "2020-10-17T15:39:00Z", + "repoId": 143328315, + "pullRequestNo": 825 + }, + { + "name": "lavandosovich", + "id": 15146608, + "comment_id": 711056327, + "created_at": "2020-10-17T17:49:50Z", + "repoId": 143328315, + "pullRequestNo": 827 + }, + { + "name": "krishnaupadhyay3", + "id": 48306199, + "comment_id": 714877342, + "created_at": "2020-10-23T03:00:57Z", + "repoId": 143328315, + "pullRequestNo": 855 + }, + { + "name": "jumc", + "id": 7888514, + "comment_id": 719878984, + "created_at": "2020-10-31T03:55:16Z", + "repoId": 143328315, + "pullRequestNo": 869 + }, + { + "name": "ytannai", + "id": 54846100, + "comment_id": 783821663, + "created_at": "2021-02-23T02:20:32Z", + "repoId": 143328315, + "pullRequestNo": 1025 + }, + { + "name": "deepanshu2506", + "id": 46065564, + "comment_id": 939862825, + "created_at": "2021-10-11T09:41:13Z", + "repoId": 143328315, + "pullRequestNo": 1560 + }, + { + "name": "Shanduur", + "id": 32583062, + "comment_id": 940998090, + "created_at": "2021-10-12T13:09:56Z", + "repoId": 143328315, + "pullRequestNo": 1577 + }, + { + "name": "mrandri19", + "id": 8144521, + "comment_id": 943294499, + "created_at": "2021-10-14T12:08:49Z", + "repoId": 143328315, + "pullRequestNo": 1591 + }, + { + "name": "sumitsawant", + "id": 15681510, + "comment_id": 945671690, + "created_at": "2021-10-18T11:28:46Z", + "repoId": 143328315, + "pullRequestNo": 1620 + }, + { + "name": "abitrolly", + "id": 8781107, + "comment_id": 956255339, + "created_at": "2021-11-01T13:57:04Z", + "repoId": 143328315, + "pullRequestNo": 1742 + }, + { + "name": "pasqualtroncone", + "id": 271477, + "comment_id": 960523952, + "created_at": "2021-11-04T07:46:05Z", + "repoId": 143328315, + "pullRequestNo": 1698 + }, + { + "name": "OriPekelman", + "id": 138636, + "comment_id": 964400511, + "created_at": "2021-11-09T18:03:38Z", + "repoId": 143328315, + "pullRequestNo": 1759 + }, + { + "name": "Yoda-Canada", + "id": 55161917, + "comment_id": 983751321, + "created_at": "2021-12-01T15:25:54Z", + "repoId": 143328315, + "pullRequestNo": 1791 + }, + { + "name": "meisty", + "id": 7602996, + "comment_id": 1083710078, + "created_at": "2022-03-30T22:45:00Z", + "repoId": 143328315, + "pullRequestNo": 2105 + }, + { + "name": "Ricram2", + "id": 24927430, + "comment_id": 1099113018, + "created_at": "2022-04-14T12:01:36Z", + "repoId": 143328315, + "pullRequestNo": 2141 + }, + { + "name": "federico-razzoli", + "id": 497022, + "comment_id": 1100932977, + "created_at": "2022-04-17T19:01:42Z", + "repoId": 143328315, + "pullRequestNo": 2147 + }, + { + "name": "ilia-tsyplenkov", + "id": 16894520, + "comment_id": 1101257533, + "created_at": "2022-04-18T09:26:51Z", + "repoId": 143328315, + "pullRequestNo": 2148 + }, + { + "name": "PWiederspan", + "id": 71568505, + "comment_id": 1111171981, + "created_at": "2022-04-27T15:55:33Z", + "repoId": 143328315, + "pullRequestNo": 2166 + }, + { + "name": "chandrevdw31", + "id": 32901682, + "comment_id": 1111388454, + "created_at": "2022-04-27T19:18:54Z", + "repoId": 143328315, + "pullRequestNo": 2166 + }, + { + "name": "ea-rus", + "id": 8502631, + "comment_id": 1118209976, + "created_at": "2022-05-05T06:13:06Z", + "repoId": 143328315, + "pullRequestNo": 2183 + }, + { + "name": "fromdavelewis", + "id": 613322, + "comment_id": 1119661561, + "created_at": "2022-05-06T14:06:22Z", + "repoId": 143328315, + "pullRequestNo": 2193 + }, + { + "name": "ryanrussell", + "id": 523300, + "comment_id": 1126787872, + "created_at": "2022-05-14T18:13:04Z", + "repoId": 143328315, + "pullRequestNo": 2210 + }, + { + "name": "PrajwalBorkar", + "id": 48290911, + "comment_id": 1131474350, + "created_at": "2022-05-19T09:40:15Z", + "repoId": 143328315, + "pullRequestNo": 2224 + }, + { + "name": "SaumyaBhushan", + "id": 76432998, + "comment_id": 1131579469, + "created_at": "2022-05-19T11:37:48Z", + "repoId": 143328315, + "pullRequestNo": 2229 + }, + { + "name": "garvij", + "id": 34640061, + "comment_id": 1131707390, + "created_at": "2022-05-19T13:40:56Z", + "repoId": 143328315, + "pullRequestNo": 2225 + }, + { + "name": "Max-Miller03", + "id": 71455611, + "comment_id": 1131880424, + "created_at": "2022-05-19T15:35:52Z", + "repoId": 143328315, + "pullRequestNo": 2228 + }, + { + "name": "stemitom", + "id": 65780579, + "comment_id": 1139721337, + "created_at": "2022-05-27T15:24:48Z", + "repoId": 143328315, + "pullRequestNo": 2260 + }, + { + "name": "Rutam21", + "id": 47860497, + "comment_id": 1146337223, + "created_at": "2022-06-03T20:29:31Z", + "repoId": 143328315, + "pullRequestNo": 2294 + }, + { + "name": "Gabriel39", + "id": 37700562, + "comment_id": 1168712777, + "created_at": "2022-06-28T13:17:49Z", + "repoId": 143328315, + "pullRequestNo": 2398 + }, + { + "name": "marks", + "id": 34566, + "comment_id": 1173720067, + "created_at": "2022-07-04T11:43:23Z", + "repoId": 143328315, + "pullRequestNo": 2426 + }, + { + "name": "DataDeus", + "id": 29824592, + "comment_id": 1177519793, + "created_at": "2022-07-07T12:18:47Z", + "repoId": 143328315, + "pullRequestNo": 2433 + }, + { + "name": "DataDeus", + "id": 29824592, + "comment_id": 1177520321, + "created_at": "2022-07-07T12:19:11Z", + "repoId": 143328315, + "pullRequestNo": 2433 + }, + { + "name": "MinuraPunchihewa", + "id": 49385643, + "comment_id": 1177474719, + "created_at": "2022-07-07T11:42:17Z", + "repoId": 143328315, + "pullRequestNo": 2450 + }, + { + "name": "bhaumiksonii", + "id": 60168704, + "comment_id": 1178938890, + "created_at": "2022-07-08T12:35:21Z", + "repoId": 143328315, + "pullRequestNo": 2457 + }, + { + "name": "tino097", + "id": 2707446, + "comment_id": 1180776809, + "created_at": "2022-07-11T19:22:32Z", + "repoId": 143328315, + "pullRequestNo": 2472 + }, + { + "name": "martyna-mindsdb", + "id": 109554435, + "comment_id": 1189395932, + "created_at": "2022-07-19T18:04:31Z", + "repoId": 143328315, + "pullRequestNo": 2532 + }, + { + "name": "David00154", + "id": 56704811, + "comment_id": 1191725956, + "created_at": "2022-07-21T16:58:23Z", + "repoId": 143328315, + "pullRequestNo": 2524 + }, + { + "name": "eskarimov", + "id": 13220923, + "comment_id": 1195228438, + "created_at": "2022-07-26T09:15:52Z", + "repoId": 143328315, + "pullRequestNo": 2557 + }, + { + "name": "chetelev", + "id": 50205654, + "comment_id": 1195577288, + "created_at": "2022-07-26T14:44:24Z", + "repoId": 143328315, + "pullRequestNo": 2575 + }, + { + "name": "nablabits", + "id": 33068707, + "comment_id": 1198477855, + "created_at": "2022-07-28T18:11:52Z", + "repoId": 143328315, + "pullRequestNo": 2576 + }, + { + "name": "rleungx", + "id": 35896542, + "comment_id": 1198847622, + "created_at": "2022-07-29T03:41:19Z", + "repoId": 143328315, + "pullRequestNo": 2522 + }, + { + "name": "saiyerniakhil", + "id": 32711472, + "comment_id": 1199711942, + "created_at": "2022-07-29T16:41:42Z", + "repoId": 143328315, + "pullRequestNo": 2599 + }, + { + "name": "parthiv11", + "id": 75653580, + "comment_id": 1209036255, + "created_at": "2022-08-09T07:50:43Z", + "repoId": 143328315, + "pullRequestNo": 2567 + }, + { + "name": "parthiv11", + "id": 75653580, + "comment_id": 1209038554, + "created_at": "2022-08-09T07:53:11Z", + "repoId": 143328315, + "pullRequestNo": 2567 + }, + { + "name": "vivekthedev", + "id": 71426368, + "comment_id": 1214672054, + "created_at": "2022-08-15T06:38:29Z", + "repoId": 143328315, + "pullRequestNo": 2676 + }, + { + "name": "gulio-python", + "id": 79664602, + "comment_id": 1215016976, + "created_at": "2022-08-15T13:29:56Z", + "repoId": 143328315, + "pullRequestNo": 2680 + }, + { + "name": "fms12", + "id": 68012074, + "comment_id": 1217882172, + "created_at": "2022-08-17T11:25:01Z", + "repoId": 143328315, + "pullRequestNo": 2695 + }, + { + "name": "bachng2017", + "id": 31262506, + "comment_id": 1248787307, + "created_at": "2022-09-16T00:34:19Z", + "repoId": 143328315, + "pullRequestNo": 2928 + }, + { + "name": "bachng2017", + "id": 31262506, + "comment_id": 1248789796, + "created_at": "2022-09-16T00:38:39Z", + "repoId": 143328315, + "pullRequestNo": 2928 + }, + { + "name": "flaneur2020", + "id": 129800, + "comment_id": 1249213750, + "created_at": "2022-09-16T10:44:32Z", + "repoId": 143328315, + "pullRequestNo": 2882 + }, + { + "name": "Temidayo32", + "id": 87539866, + "comment_id": 1251949816, + "created_at": "2022-09-20T07:27:22Z", + "repoId": 143328315, + "pullRequestNo": 2900 + }, + { + "name": "bispaul", + "id": 22766405, + "comment_id": 1253520869, + "created_at": "2022-09-21T10:39:34Z", + "repoId": 143328315, + "pullRequestNo": 2968 + }, + { + "name": "ArmanChand", + "id": 26898623, + "comment_id": 1253740300, + "created_at": "2022-09-21T13:49:08Z", + "repoId": 143328315, + "pullRequestNo": 2966 + }, + { + "name": "Chiamaka", + "id": 2737103, + "comment_id": 1264348992, + "created_at": "2022-10-01T12:20:12Z", + "repoId": 143328315, + "pullRequestNo": 3048 + }, + { + "name": "AM1TB", + "id": 6761018, + "comment_id": 1264457460, + "created_at": "2022-10-01T19:12:23Z", + "repoId": 143328315, + "pullRequestNo": 3050 + }, + { + "name": "sanittawan", + "id": 42918721, + "comment_id": 1264506530, + "created_at": "2022-10-01T23:20:34Z", + "repoId": 143328315, + "pullRequestNo": 3053 + }, + { + "name": "luiserdef", + "id": 9291969, + "comment_id": 1264600128, + "created_at": "2022-10-02T09:56:10Z", + "repoId": 143328315, + "pullRequestNo": 3055 + }, + { + "name": "Ln11211", + "id": 91385411, + "comment_id": 1264601497, + "created_at": "2022-10-02T10:02:50Z", + "repoId": 143328315, + "pullRequestNo": 3058 + }, + { + "name": "donheshanthaka", + "id": 61963664, + "comment_id": 1264614145, + "created_at": "2022-10-02T11:02:27Z", + "repoId": 143328315, + "pullRequestNo": 3059 + }, + { + "name": "MichaelLantz", + "id": 241893, + "comment_id": 1264619803, + "created_at": "2022-10-02T11:27:39Z", + "repoId": 143328315, + "pullRequestNo": 3061 + }, + { + "name": "bilal-aamer", + "id": 52858537, + "comment_id": 1265466831, + "created_at": "2022-10-03T13:47:06Z", + "repoId": 143328315, + "pullRequestNo": 3065 + }, + { + "name": "sudiptog81", + "id": 11232940, + "comment_id": 1267039261, + "created_at": "2022-10-04T13:54:29Z", + "repoId": 143328315, + "pullRequestNo": 3093 + }, + { + "name": "p-mishra1", + "id": 87666586, + "comment_id": 1267868641, + "created_at": "2022-10-05T03:17:34Z", + "repoId": 143328315, + "pullRequestNo": 3097 + }, + { + "name": "Mobasherah12", + "id": 52857890, + "comment_id": 1268391389, + "created_at": "2022-10-05T12:48:33Z", + "repoId": 143328315, + "pullRequestNo": 3122 + }, + { + "name": "Tes-program", + "id": 48647757, + "comment_id": 1268381071, + "created_at": "2022-10-05T12:38:37Z", + "repoId": 143328315, + "pullRequestNo": 3109 + }, + { + "name": "12-malak", + "id": 73274076, + "comment_id": 1268509864, + "created_at": "2022-10-05T14:25:05Z", + "repoId": 143328315, + "pullRequestNo": 3132 + }, + { + "name": "infinity1729", + "id": 52048907, + "comment_id": 1268512448, + "created_at": "2022-10-05T14:26:58Z", + "repoId": 143328315, + "pullRequestNo": 3119 + }, + { + "name": "wenzdey", + "id": 56051809, + "comment_id": 1269196767, + "created_at": "2022-10-06T01:40:24Z", + "repoId": 143328315, + "pullRequestNo": 3112 + }, + { + "name": "alissatroiano", + "id": 56362524, + "comment_id": 1268648146, + "created_at": "2022-10-05T16:16:08Z", + "repoId": 143328315, + "pullRequestNo": 3111 + }, + { + "name": "r-scheele", + "id": 67229938, + "comment_id": 1271144362, + "created_at": "2022-10-07T05:55:29Z", + "repoId": 143328315, + "pullRequestNo": 3176 + }, + { + "name": "dhruv-porwal", + "id": 73400504, + "comment_id": 1271345710, + "created_at": "2022-10-07T09:25:00Z", + "repoId": 143328315, + "pullRequestNo": 3171 + }, + { + "name": "Anu-Ra-g", + "id": 94440065, + "comment_id": 1271348531, + "created_at": "2022-10-07T09:27:46Z", + "repoId": 143328315, + "pullRequestNo": 3177 + }, + { + "name": "Shaun-shaju", + "id": 81917133, + "comment_id": 1271512832, + "created_at": "2022-10-07T12:13:47Z", + "repoId": 143328315, + "pullRequestNo": 3165 + }, + { + "name": "zahyaah", + "id": 72253920, + "comment_id": 1272272946, + "created_at": "2022-10-08T09:07:24Z", + "repoId": 143328315, + "pullRequestNo": 3191 + }, + { + "name": "arpitbhardwaj", + "id": 23013825, + "comment_id": 1272290488, + "created_at": "2022-10-08T10:44:13Z", + "repoId": 143328315, + "pullRequestNo": 3197 + }, + { + "name": "Rounak-28", + "id": 95576871, + "comment_id": 1272346211, + "created_at": "2022-10-08T15:48:48Z", + "repoId": 143328315, + "pullRequestNo": 3212 + }, + { + "name": "aayushibansal2001", + "id": 51708118, + "comment_id": 1272447817, + "created_at": "2022-10-09T03:49:25Z", + "repoId": 143328315, + "pullRequestNo": 3203 + }, + { + "name": "dhaneshragu", + "id": 95169037, + "comment_id": 1272460727, + "created_at": "2022-10-09T05:34:37Z", + "repoId": 143328315, + "pullRequestNo": 3230 + }, + { + "name": "dhaneshragu", + "id": 95169037, + "comment_id": 1272473146, + "created_at": "2022-10-09T07:04:38Z", + "repoId": 143328315, + "pullRequestNo": 3230 + }, + { + "name": "dhaneshragu", + "id": 95169037, + "comment_id": 1272521533, + "created_at": "2022-10-09T11:30:35Z", + "repoId": 143328315, + "pullRequestNo": 3230 + }, + { + "name": "dhaneshragu", + "id": 95169037, + "comment_id": 1272522924, + "created_at": "2022-10-09T11:38:45Z", + "repoId": 143328315, + "pullRequestNo": 3230 + }, + { + "name": "ahamedafri", + "id": 86359752, + "comment_id": 1272553512, + "created_at": "2022-10-09T14:24:32Z", + "repoId": 143328315, + "pullRequestNo": 3235 + }, + { + "name": "f2010126", + "id": 2748210, + "comment_id": 1272555044, + "created_at": "2022-10-09T14:33:12Z", + "repoId": 143328315, + "pullRequestNo": 3231 + }, + { + "name": "Fer-Bar", + "id": 90936639, + "comment_id": 1273391409, + "created_at": "2022-10-10T14:20:28Z", + "repoId": 143328315, + "pullRequestNo": 3262 + }, + { + "name": "Enforcer007", + "id": 6951100, + "comment_id": 1274206700, + "created_at": "2022-10-11T07:23:27Z", + "repoId": 143328315, + "pullRequestNo": 3298 + }, + { + "name": "Artemis6969", + "id": 82315185, + "comment_id": 1274421954, + "created_at": "2022-10-11T09:45:30Z", + "repoId": 143328315, + "pullRequestNo": 3305 + }, + { + "name": "Moddy2024", + "id": 60973906, + "comment_id": 1274634750, + "created_at": "2022-10-11T12:47:06Z", + "repoId": 143328315, + "pullRequestNo": 3309 + }, + { + "name": "ssghait007", + "id": 26434312, + "comment_id": 1274757446, + "created_at": "2022-10-11T14:13:04Z", + "repoId": 143328315, + "pullRequestNo": 3247 + }, + { + "name": "Posterizedsoul", + "id": 84125035, + "comment_id": 1275951611, + "created_at": "2022-10-12T10:36:00Z", + "repoId": 143328315, + "pullRequestNo": 3328 + }, + { + "name": "HarikeshPratapSingh", + "id": 71792788, + "comment_id": 1276407119, + "created_at": "2022-10-12T15:58:47Z", + "repoId": 143328315, + "pullRequestNo": 3107 + }, + { + "name": "SarojWasti", + "id": 69208771, + "comment_id": 1276641600, + "created_at": "2022-10-12T19:27:58Z", + "repoId": 143328315, + "pullRequestNo": 3342 + }, + { + "name": "nehiljain", + "id": 2761999, + "comment_id": 1276896739, + "created_at": "2022-10-13T00:57:53Z", + "repoId": 143328315, + "pullRequestNo": 3301 + }, + { + "name": "HengKevin", + "id": 60089384, + "comment_id": 1279023769, + "created_at": "2022-10-14T13:39:06Z", + "repoId": 143328315, + "pullRequestNo": 3359 + }, + { + "name": "Anupam-USP", + "id": 56446640, + "comment_id": 1278988826, + "created_at": "2022-10-14T13:09:09Z", + "repoId": 143328315, + "pullRequestNo": 3368 + }, + { + "name": "saldanhad", + "id": 115748404, + "comment_id": 1279992753, + "created_at": "2022-10-16T15:31:11Z", + "repoId": 143328315, + "pullRequestNo": 3427 + }, + { + "name": "SachinHatikankar100", + "id": 12583179, + "comment_id": 1280879505, + "created_at": "2022-10-17T13:40:32Z", + "repoId": 143328315, + "pullRequestNo": 3429 + }, + { + "name": "noviicee", + "id": 72334601, + "comment_id": 1280903634, + "created_at": "2022-10-17T13:56:08Z", + "repoId": 143328315, + "pullRequestNo": 3425 + }, + { + "name": "ramonsaraiva", + "id": 5559120, + "comment_id": 1281004158, + "created_at": "2022-10-17T14:58:20Z", + "repoId": 143328315, + "pullRequestNo": 3416 + }, + { + "name": "AyushmaanKaushik", + "id": 76694212, + "comment_id": 1281144332, + "created_at": "2022-10-17T16:32:35Z", + "repoId": 143328315, + "pullRequestNo": 3423 + }, + { + "name": "dahjah", + "id": 20669752, + "comment_id": 1282456267, + "created_at": "2022-10-18T14:06:28Z", + "repoId": 143328315, + "pullRequestNo": 3477 + }, + { + "name": "hritikd3", + "id": 86347286, + "comment_id": 1283888734, + "created_at": "2022-10-19T11:53:57Z", + "repoId": 143328315, + "pullRequestNo": 3490 + }, + { + "name": "Chirag8023", + "id": 84070677, + "comment_id": 1284126635, + "created_at": "2022-10-19T14:40:33Z", + "repoId": 143328315, + "pullRequestNo": 3506 + }, + { + "name": "nmiquan", + "id": 30428258, + "comment_id": 1284151284, + "created_at": "2022-10-19T14:57:35Z", + "repoId": 143328315, + "pullRequestNo": 3500 + }, + { + "name": "yashjain1974", + "id": 69360295, + "comment_id": 1284167959, + "created_at": "2022-10-19T15:09:07Z", + "repoId": 143328315, + "pullRequestNo": 3108 + }, + { + "name": "munyoudoum", + "id": 60089135, + "comment_id": 1284946214, + "created_at": "2022-10-20T05:19:05Z", + "repoId": 143328315, + "pullRequestNo": 3515 + }, + { + "name": "tonyrex99", + "id": 59386507, + "comment_id": 1285265069, + "created_at": "2022-10-20T10:04:04Z", + "repoId": 143328315, + "pullRequestNo": 3494 + }, + { + "name": "Franqsanz", + "id": 44296203, + "comment_id": 1285228330, + "created_at": "2022-10-20T09:34:24Z", + "repoId": 143328315, + "pullRequestNo": 3523 + }, + { + "name": "hridaya423", + "id": 66767013, + "comment_id": 1285962629, + "created_at": "2022-10-20T18:20:03Z", + "repoId": 143328315, + "pullRequestNo": 3535 + }, + { + "name": "dissyulina", + "id": 80319559, + "comment_id": 1286266589, + "created_at": "2022-10-20T23:21:44Z", + "repoId": 143328315, + "pullRequestNo": 3547 + }, + { + "name": "thenishantsapkota", + "id": 60746512, + "comment_id": 1286872977, + "created_at": "2022-10-21T12:05:52Z", + "repoId": 143328315, + "pullRequestNo": 3566 + }, + { + "name": "tomoyanime", + "id": 31934952, + "comment_id": 1287264865, + "created_at": "2022-10-21T17:47:03Z", + "repoId": 143328315, + "pullRequestNo": 3482 + }, + { + "name": "GloriaOkeke", + "id": 104257033, + "comment_id": 1287755228, + "created_at": "2022-10-22T10:30:32Z", + "repoId": 143328315, + "pullRequestNo": 3592 + }, + { + "name": "tushar-sublaik", + "id": 99117094, + "comment_id": 1287878468, + "created_at": "2022-10-22T18:38:16Z", + "repoId": 143328315, + "pullRequestNo": 3593 + }, + { + "name": "rtewari056", + "id": 75976169, + "comment_id": 1288069188, + "created_at": "2022-10-23T09:49:58Z", + "repoId": 143328315, + "pullRequestNo": 3626 + }, + { + "name": "ArnavScripts", + "id": 115481614, + "comment_id": 1287699921, + "created_at": "2022-10-22T10:03:45Z", + "repoId": 143328315, + "pullRequestNo": 3417 + }, + { + "name": "Sayyed-Salman", + "id": 75083770, + "comment_id": 1288085209, + "created_at": "2022-10-23T10:52:48Z", + "repoId": 143328315, + "pullRequestNo": 3614 + }, + { + "name": "thefool76", + "id": 69065938, + "comment_id": 1288109570, + "created_at": "2022-10-23T13:08:45Z", + "repoId": 143328315, + "pullRequestNo": 3599 + }, + { + "name": "NarayanAdithya", + "id": 57533346, + "comment_id": 1290359057, + "created_at": "2022-10-25T10:57:14Z", + "repoId": 143328315, + "pullRequestNo": 3669 + }, + { + "name": "syedzubeen", + "id": 14253061, + "comment_id": 1291074886, + "created_at": "2022-10-25T20:05:34Z", + "repoId": 143328315, + "pullRequestNo": 3658 + }, + { + "name": "Leigh-Ola", + "id": 34160717, + "comment_id": 1292076132, + "created_at": "2022-10-26T13:46:02Z", + "repoId": 143328315, + "pullRequestNo": 3680 + }, + { + "name": "Batmanrvb", + "id": 114692462, + "comment_id": 1292387349, + "created_at": "2022-10-26T17:39:59Z", + "repoId": 143328315, + "pullRequestNo": 3660 + }, + { + "name": "dhruvkej9", + "id": 96516827, + "comment_id": 1293073466, + "created_at": "2022-10-27T06:52:04Z", + "repoId": 143328315, + "pullRequestNo": 3716 + }, + { + "name": "Sarveshk76", + "id": 78719645, + "comment_id": 1293412140, + "created_at": "2022-10-27T11:52:11Z", + "repoId": 143328315, + "pullRequestNo": 3721 + }, + { + "name": "kunal00000", + "id": 92316166, + "comment_id": 1293432557, + "created_at": "2022-10-27T12:10:12Z", + "repoId": 143328315, + "pullRequestNo": 3731 + }, + { + "name": "yagueto", + "id": 48566793, + "comment_id": 1293688943, + "created_at": "2022-10-27T15:15:17Z", + "repoId": 143328315, + "pullRequestNo": 3720 + }, + { + "name": "AdamFodor04", + "id": 98983859, + "comment_id": 1295022798, + "created_at": "2022-10-28T13:47:51Z", + "repoId": 143328315, + "pullRequestNo": 3672 + }, + { + "name": "Pragya2056", + "id": 55945790, + "comment_id": 1295164842, + "created_at": "2022-10-28T15:54:01Z", + "repoId": 143328315, + "pullRequestNo": 3755 + }, + { + "name": "vaishnav-mk", + "id": 84540554, + "comment_id": 1295751062, + "created_at": "2022-10-29T06:39:10Z", + "repoId": 143328315, + "pullRequestNo": 3767 + }, + { + "name": "aaheli8", + "id": 66815283, + "comment_id": 1295863273, + "created_at": "2022-10-29T15:02:31Z", + "repoId": 143328315, + "pullRequestNo": 3793 + }, + { + "name": "Sahil2315", + "id": 97694039, + "comment_id": 1296095174, + "created_at": "2022-10-30T04:01:35Z", + "repoId": 143328315, + "pullRequestNo": 3778 + }, + { + "name": "adityaacse", + "id": 19973475, + "comment_id": 1296208790, + "created_at": "2022-10-30T10:41:07Z", + "repoId": 143328315, + "pullRequestNo": 3809 + }, + { + "name": "harshyadavcs", + "id": 108284583, + "comment_id": 1296231734, + "created_at": "2022-10-30T11:46:25Z", + "repoId": 143328315, + "pullRequestNo": 3831 + }, + { + "name": "Yordaniss", + "id": 68282006, + "comment_id": 1296274931, + "created_at": "2022-10-30T14:37:31Z", + "repoId": 143328315, + "pullRequestNo": 3830 + }, + { + "name": "3t8", + "id": 62209650, + "comment_id": 1296291906, + "created_at": "2022-10-30T16:06:19Z", + "repoId": 143328315, + "pullRequestNo": 3837 + }, + { + "name": "Sakshi-75", + "id": 20265098, + "comment_id": 1296294386, + "created_at": "2022-10-30T16:18:37Z", + "repoId": 143328315, + "pullRequestNo": 3829 + }, + { + "name": "pratik2315", + "id": 77961530, + "comment_id": 1295927092, + "created_at": "2022-10-29T18:23:39Z", + "repoId": 143328315, + "pullRequestNo": 3806 + }, + { + "name": "ShivamGarg2910", + "id": 25713041, + "comment_id": 1296328473, + "created_at": "2022-10-30T19:03:45Z", + "repoId": 143328315, + "pullRequestNo": 3845 + }, + { + "name": "PrakashGatiyala", + "id": 34413515, + "comment_id": 1296334727, + "created_at": "2022-10-30T19:36:15Z", + "repoId": 143328315, + "pullRequestNo": 3849 + }, + { + "name": "arorachirag", + "id": 96038346, + "comment_id": 1296558658, + "created_at": "2022-10-31T05:25:41Z", + "repoId": 143328315, + "pullRequestNo": 3852 + }, + { + "name": "Prajwalrajbasnet", + "id": 44965674, + "comment_id": 1296821321, + "created_at": "2022-10-31T09:27:03Z", + "repoId": 143328315, + "pullRequestNo": 3846 + }, + { + "name": "Smartmind12", + "id": 91927689, + "comment_id": 1297110900, + "created_at": "2022-10-31T13:42:25Z", + "repoId": 143328315, + "pullRequestNo": 3808 + }, + { + "name": "Pranav-yadav", + "id": 55224033, + "comment_id": 1297126939, + "created_at": "2022-10-31T13:52:32Z", + "repoId": 143328315, + "pullRequestNo": 3861 + }, + { + "name": "Prashriya", + "id": 66111954, + "comment_id": 1297140963, + "created_at": "2022-10-31T14:03:19Z", + "repoId": 143328315, + "pullRequestNo": 3862 + }, + { + "name": "Mirza-Hassan", + "id": 17096257, + "comment_id": 1297530041, + "created_at": "2022-10-31T18:56:16Z", + "repoId": 143328315, + "pullRequestNo": 3892 + }, + { + "name": "marcjermainepontiveros-sun", + "id": 109291819, + "comment_id": 1297774090, + "created_at": "2022-10-31T22:35:30Z", + "repoId": 143328315, + "pullRequestNo": 3933 + }, + { + "name": "sebkozlo", + "id": 82809231, + "comment_id": 1297776643, + "created_at": "2022-10-31T22:38:39Z", + "repoId": 143328315, + "pullRequestNo": 3932 + }, + { + "name": "viveknshah", + "id": 7208041, + "comment_id": 1297704148, + "created_at": "2022-10-31T21:24:43Z", + "repoId": 143328315, + "pullRequestNo": 3928 + }, + { + "name": "prathikshetty2002", + "id": 63772910, + "comment_id": 1297678309, + "created_at": "2022-10-31T20:59:07Z", + "repoId": 143328315, + "pullRequestNo": 3900 + }, + { + "name": "matthewtian3", + "id": 114604818, + "comment_id": 1297878855, + "created_at": "2022-11-01T01:11:36Z", + "repoId": 143328315, + "pullRequestNo": 3941 + }, + { + "name": "Nupoor10", + "id": 92589912, + "comment_id": 1298609232, + "created_at": "2022-11-01T14:41:23Z", + "repoId": 143328315, + "pullRequestNo": 3953 + }, + { + "name": "ashishc0d3r", + "id": 107558646, + "comment_id": 1299555567, + "created_at": "2022-11-02T04:35:52Z", + "repoId": 143328315, + "pullRequestNo": 3958 + }, + { + "name": "cronJohn", + "id": 51012201, + "comment_id": 1301319376, + "created_at": "2022-11-02T21:35:18Z", + "repoId": 143328315, + "pullRequestNo": 3934 + }, + { + "name": "redterrum", + "id": 117503732, + "comment_id": 1305654372, + "created_at": "2022-11-07T13:58:00Z", + "repoId": 143328315, + "pullRequestNo": 3982 + }, + { + "name": "allcodesnick", + "id": 62229340, + "comment_id": 1308045502, + "created_at": "2022-11-09T00:56:27Z", + "repoId": 143328315, + "pullRequestNo": 3950 + }, + { + "name": "hanywang2", + "id": 44352119, + "comment_id": 1311931905, + "created_at": "2022-11-11T16:41:00Z", + "repoId": 143328315, + "pullRequestNo": 4022 + }, + { + "name": "eltociear", + "id": 22633385, + "comment_id": 1315482778, + "created_at": "2022-11-15T15:34:10Z", + "repoId": 143328315, + "pullRequestNo": 4053 + }, + { + "name": "Nelson-He", + "id": 9261468, + "comment_id": 1315465143, + "created_at": "2022-11-15T15:21:47Z", + "repoId": 143328315, + "pullRequestNo": 4046 + }, + { + "name": "Nelson-He", + "id": 9261468, + "comment_id": 1316109794, + "created_at": "2022-11-16T00:57:07Z", + "repoId": 143328315, + "pullRequestNo": 4046 + }, + { + "name": "tobias-mintlify", + "id": 110702161, + "comment_id": 1320039275, + "created_at": "2022-11-18T14:07:10Z", + "repoId": 143328315, + "pullRequestNo": 4068 + }, + { + "name": "rituisboy", + "id": 120157746, + "comment_id": 1360839322, + "created_at": "2022-12-21T04:23:42Z", + "repoId": 143328315, + "pullRequestNo": 4229 + }, + { + "name": "ShrutiC-git", + "id": 66940685, + "comment_id": 1365934202, + "created_at": "2022-12-27T14:15:27Z", + "repoId": 143328315, + "pullRequestNo": 4240 + }, + { + "name": "srini047", + "id": 81156510, + "comment_id": 1369139386, + "created_at": "2023-01-02T18:33:16Z", + "repoId": 143328315, + "pullRequestNo": 4259 + }, + { + "name": "muddi900", + "id": 37051110, + "comment_id": 1374047432, + "created_at": "2023-01-06T19:41:08Z", + "repoId": 143328315, + "pullRequestNo": 4272 + }, + { + "name": "kiklidash", + "id": 122103184, + "comment_id": 1380926724, + "created_at": "2023-01-12T19:51:52Z", + "repoId": 143328315, + "pullRequestNo": 4300 + }, + { + "name": "siddarth-patil", + "id": 33809917, + "comment_id": 1384129123, + "created_at": "2023-01-16T14:15:23Z", + "repoId": 143328315, + "pullRequestNo": 4306 + }, + { + "name": "baydre", + "id": 90387891, + "comment_id": 1384324005, + "created_at": "2023-01-16T16:56:29Z", + "repoId": 143328315, + "pullRequestNo": 4294 + }, + { + "name": "idomic", + "id": 11596985, + "comment_id": 1387019798, + "created_at": "2023-01-18T12:53:08Z", + "repoId": 143328315, + "pullRequestNo": 4310 + }, + { + "name": "ItsRoy69", + "id": 78967360, + "comment_id": 1402527793, + "created_at": "2023-01-24T19:57:49Z", + "repoId": 143328315, + "pullRequestNo": 4355 + }, + { + "name": "saaagarsingh", + "id": 85694019, + "comment_id": 1415913993, + "created_at": "2023-02-03T14:03:07Z", + "repoId": 143328315, + "pullRequestNo": 4394 + }, + { + "name": "ratika-12", + "id": 96000038, + "comment_id": 1415985085, + "created_at": "2023-02-03T14:54:15Z", + "repoId": 143328315, + "pullRequestNo": 4389 + }, + { + "name": "techytushar", + "id": 26834658, + "comment_id": 1424227972, + "created_at": "2023-02-09T13:56:13Z", + "repoId": 143328315, + "pullRequestNo": 4439 + }, + { + "name": "dohrisalim", + "id": 104096451, + "comment_id": 1425892267, + "created_at": "2023-02-10T14:33:15Z", + "repoId": 143328315, + "pullRequestNo": 4442 + }, + { + "name": "DuskoAtanasovski", + "id": 57909317, + "comment_id": 1431609622, + "created_at": "2023-02-15T16:06:02Z", + "repoId": 143328315, + "pullRequestNo": 4472 + }, + { + "name": "Ivanncho", + "id": 15248579, + "comment_id": 1431633366, + "created_at": "2023-02-15T16:21:50Z", + "repoId": 143328315, + "pullRequestNo": 4476 + }, + { + "name": "ZepingSun", + "id": 116099481, + "comment_id": 1431929741, + "created_at": "2023-02-15T19:47:51Z", + "repoId": 143328315, + "pullRequestNo": 4464 + }, + { + "name": "Sathvik1007", + "id": 124372859, + "comment_id": 1433290903, + "created_at": "2023-02-16T15:41:59Z", + "repoId": 143328315, + "pullRequestNo": 4487 + }, + { + "name": "ujwalkumar1995", + "id": 20976813, + "comment_id": 1433525919, + "created_at": "2023-02-16T18:26:03Z", + "repoId": 143328315, + "pullRequestNo": 4508 + }, + { + "name": "l0b64", + "id": 57844712, + "comment_id": 1433530938, + "created_at": "2023-02-16T18:29:45Z", + "repoId": 143328315, + "pullRequestNo": 4511 + }, + { + "name": "sammiller06", + "id": 29843907, + "comment_id": 1434776819, + "created_at": "2023-02-17T15:06:52Z", + "repoId": 143328315, + "pullRequestNo": 4398 + }, + { + "name": "seuros", + "id": 2394703, + "comment_id": 1435741796, + "created_at": "2023-02-18T19:05:00Z", + "repoId": 143328315, + "pullRequestNo": 4523 + }, + { + "name": "ktyborowski", + "id": 11791251, + "comment_id": 1435958746, + "created_at": "2023-02-19T11:08:10Z", + "repoId": 143328315, + "pullRequestNo": 4525 + }, + { + "name": "yosileyid", + "id": 14003326, + "comment_id": 1436093948, + "created_at": "2023-02-19T21:06:44Z", + "repoId": 143328315, + "pullRequestNo": 4540 + }, + { + "name": "souravpy", + "id": 90150705, + "comment_id": 1436235252, + "created_at": "2023-02-20T02:52:34Z", + "repoId": 143328315, + "pullRequestNo": 4526 + }, + { + "name": "Phoenix009", + "id": 40738107, + "comment_id": 1436554372, + "created_at": "2023-02-20T08:41:54Z", + "repoId": 143328315, + "pullRequestNo": 4542 + }, + { + "name": "JatinKumar001", + "id": 99121557, + "comment_id": 1438643614, + "created_at": "2023-02-21T15:07:11Z", + "repoId": 143328315, + "pullRequestNo": 4479 + }, + { + "name": "aamirxshaikh", + "id": 56036364, + "comment_id": 1438754007, + "created_at": "2023-02-21T16:18:18Z", + "repoId": 143328315, + "pullRequestNo": 4566 + }, + { + "name": "chriscaper", + "id": 30197476, + "comment_id": 1438821464, + "created_at": "2023-02-21T17:06:46Z", + "repoId": 143328315, + "pullRequestNo": 4510 + }, + { + "name": "sijilo", + "id": 22131919, + "comment_id": 1439670390, + "created_at": "2023-02-22T09:13:02Z", + "repoId": 143328315, + "pullRequestNo": 4608 + }, + { + "name": "sijilo", + "id": 22131919, + "comment_id": 1439672096, + "created_at": "2023-02-22T09:14:15Z", + "repoId": 143328315, + "pullRequestNo": 4608 + }, + { + "name": "apurvagandhi", + "id": 71194410, + "comment_id": 1440470313, + "created_at": "2023-02-22T17:28:10Z", + "repoId": 143328315, + "pullRequestNo": 4616 + }, + { + "name": "likithkun", + "id": 95670018, + "comment_id": 1440428255, + "created_at": "2023-02-22T17:00:17Z", + "repoId": 143328315, + "pullRequestNo": 4493 + }, + { + "name": "Benjamin0203", + "id": 25517478, + "comment_id": 1441043765, + "created_at": "2023-02-23T00:22:02Z", + "repoId": 143328315, + "pullRequestNo": 4626 + }, + { + "name": "omerisildak", + "id": 83889679, + "comment_id": 1441642455, + "created_at": "2023-02-23T12:01:28Z", + "repoId": 143328315, + "pullRequestNo": 4625 + }, + { + "name": "hammerhead", + "id": 218003, + "comment_id": 1441646741, + "created_at": "2023-02-23T12:04:48Z", + "repoId": 143328315, + "pullRequestNo": 4630 + }, + { + "name": "dawei-wang", + "id": 11358567, + "comment_id": 1442220851, + "created_at": "2023-02-23T18:13:24Z", + "repoId": 143328315, + "pullRequestNo": 4624 + }, + { + "name": "meleh0133", + "id": 126195143, + "comment_id": 1442531171, + "created_at": "2023-02-23T22:47:41Z", + "repoId": 143328315, + "pullRequestNo": 4644 + }, + { + "name": "meleh0133", + "id": 126195143, + "comment_id": 1442544981, + "created_at": "2023-02-23T23:02:55Z", + "repoId": 143328315, + "pullRequestNo": 4644 + }, + { + "name": "Mannuel25", + "id": 68563757, + "comment_id": 1443512549, + "created_at": "2023-02-24T11:02:05Z", + "repoId": 143328315, + "pullRequestNo": 4651 + }, + { + "name": "Mannuel25", + "id": 68563757, + "comment_id": 1443515498, + "created_at": "2023-02-24T11:03:27Z", + "repoId": 143328315, + "pullRequestNo": 4651 + }, + { + "name": "seenusnehil", + "id": 80764244, + "comment_id": 1445397528, + "created_at": "2023-02-26T16:04:50Z", + "repoId": 143328315, + "pullRequestNo": 4671 + }, + { + "name": "iyissa", + "id": 80989697, + "comment_id": 1445402839, + "created_at": "2023-02-26T16:29:25Z", + "repoId": 143328315, + "pullRequestNo": 4672 + }, + { + "name": "chadnewham", + "id": 32149188, + "comment_id": 1445481928, + "created_at": "2023-02-26T22:14:43Z", + "repoId": 143328315, + "pullRequestNo": 4653 + }, + { + "name": "samho223", + "id": 70087291, + "comment_id": 1445480300, + "created_at": "2023-02-26T22:07:41Z", + "repoId": 143328315, + "pullRequestNo": 4675 + }, + { + "name": "shivam-dhaka", + "id": 60032159, + "comment_id": 1446259040, + "created_at": "2023-02-27T12:40:23Z", + "repoId": 143328315, + "pullRequestNo": 4673 + }, + { + "name": "Aakarshan-369", + "id": 53165427, + "comment_id": 1446713804, + "created_at": "2023-02-27T17:10:00Z", + "repoId": 143328315, + "pullRequestNo": 4694 + }, + { + "name": "adityakode", + "id": 105551807, + "comment_id": 1446492286, + "created_at": "2023-02-27T15:03:16Z", + "repoId": 143328315, + "pullRequestNo": 4690 + }, + { + "name": "rkmdCodes", + "id": 113243168, + "comment_id": 1446748823, + "created_at": "2023-02-27T17:31:05Z", + "repoId": 143328315, + "pullRequestNo": 4693 + }, + { + "name": "Abuka-Victor", + "id": 84464869, + "comment_id": 1446758667, + "created_at": "2023-02-27T17:38:13Z", + "repoId": 143328315, + "pullRequestNo": 4677 + }, + { + "name": "Psancs05", + "id": 55246586, + "comment_id": 1446892490, + "created_at": "2023-02-27T19:03:05Z", + "repoId": 143328315, + "pullRequestNo": 4695 + }, + { + "name": "kushalnl7", + "id": 64639902, + "comment_id": 1444988032, + "created_at": "2023-02-25T04:30:09Z", + "repoId": 143328315, + "pullRequestNo": 4627 + }, + { + "name": "dorukyy", + "id": 59176827, + "comment_id": 1448585808, + "created_at": "2023-02-28T17:31:37Z", + "repoId": 143328315, + "pullRequestNo": 4716 + }, + { + "name": "dorukyy", + "id": 59176827, + "comment_id": 1448588683, + "created_at": "2023-02-28T17:33:46Z", + "repoId": 143328315, + "pullRequestNo": 4716 + }, + { + "name": "joshuatmyers", + "id": 96846917, + "comment_id": 1450587126, + "created_at": "2023-03-01T17:48:40Z", + "repoId": 143328315, + "pullRequestNo": 4718 + }, + { + "name": "scorcism", + "id": 69761436, + "comment_id": 1451130867, + "created_at": "2023-03-02T01:15:17Z", + "repoId": 143328315, + "pullRequestNo": 4725 + }, + { + "name": "alexriverau", + "id": 103381515, + "comment_id": 1451246682, + "created_at": "2023-03-02T03:33:45Z", + "repoId": 143328315, + "pullRequestNo": 4745 + }, + { + "name": "andy-a-d-nguyen", + "id": 66635918, + "comment_id": 1451235571, + "created_at": "2023-03-02T03:17:13Z", + "repoId": 143328315, + "pullRequestNo": 4744 + }, + { + "name": "neelshah2409", + "id": 71593494, + "comment_id": 1452267629, + "created_at": "2023-03-02T17:44:54Z", + "repoId": 143328315, + "pullRequestNo": 4746 + }, + { + "name": "ancatoza", + "id": 107912056, + "comment_id": 1452789406, + "created_at": "2023-03-03T01:05:53Z", + "repoId": 143328315, + "pullRequestNo": 4674 + }, + { + "name": "geistnine", + "id": 73615329, + "comment_id": 1452584426, + "created_at": "2023-03-02T21:39:17Z", + "repoId": 143328315, + "pullRequestNo": 4772 + }, + { + "name": "lklivingstone", + "id": 74340009, + "comment_id": 1453467137, + "created_at": "2023-03-03T12:33:13Z", + "repoId": 143328315, + "pullRequestNo": 4768 + }, + { + "name": "thecode00", + "id": 72456881, + "comment_id": 1453487371, + "created_at": "2023-03-03T12:51:23Z", + "repoId": 143328315, + "pullRequestNo": 4781 + }, + { + "name": "Samuel-Njoroge", + "id": 108589210, + "comment_id": 1453488977, + "created_at": "2023-03-03T12:52:51Z", + "repoId": 143328315, + "pullRequestNo": 4771 + }, + { + "name": "shyamtawli", + "id": 104145978, + "comment_id": 1453552704, + "created_at": "2023-03-03T13:43:40Z", + "repoId": 143328315, + "pullRequestNo": 4789 + }, + { + "name": "DocKenny", + "id": 29431981, + "comment_id": 1453769843, + "created_at": "2023-03-03T16:16:47Z", + "repoId": 143328315, + "pullRequestNo": 4794 + }, + { + "name": "Raghav-Programmer", + "id": 113235744, + "comment_id": 1454044299, + "created_at": "2023-03-03T19:41:54Z", + "repoId": 143328315, + "pullRequestNo": 4797 + }, + { + "name": "daredevilteja", + "id": 19908328, + "comment_id": 1454507162, + "created_at": "2023-03-04T05:58:59Z", + "repoId": 143328315, + "pullRequestNo": 4803 + }, + { + "name": "daredevilteja", + "id": 19908328, + "comment_id": 1454508549, + "created_at": "2023-03-04T06:00:17Z", + "repoId": 143328315, + "pullRequestNo": 4803 + }, + { + "name": "daredevilteja", + "id": 19908328, + "comment_id": 1454509198, + "created_at": "2023-03-04T06:00:49Z", + "repoId": 143328315, + "pullRequestNo": 4803 + }, + { + "name": "theWolf1198", + "id": 34520953, + "comment_id": 1454545319, + "created_at": "2023-03-04T06:32:08Z", + "repoId": 143328315, + "pullRequestNo": 4804 + }, + { + "name": "ibrijesh", + "id": 41025295, + "comment_id": 1454702416, + "created_at": "2023-03-04T11:08:50Z", + "repoId": 143328315, + "pullRequestNo": 4809 + }, + { + "name": "0xMimir", + "id": 108837858, + "comment_id": 1454916683, + "created_at": "2023-03-04T23:08:32Z", + "repoId": 143328315, + "pullRequestNo": 4800 + }, + { + "name": "akshayosc", + "id": 51105418, + "comment_id": 1455019936, + "created_at": "2023-03-05T08:06:07Z", + "repoId": 143328315, + "pullRequestNo": 4812 + }, + { + "name": "akshayosc", + "id": 51105418, + "comment_id": 1455131682, + "created_at": "2023-03-05T16:02:17Z", + "repoId": 143328315, + "pullRequestNo": 4812 + }, + { + "name": "thinketh19", + "id": 52954931, + "comment_id": 1455138129, + "created_at": "2023-03-05T16:27:03Z", + "repoId": 143328315, + "pullRequestNo": 4812 + }, + { + "name": "programmersoham", + "id": 54547662, + "comment_id": 1455140545, + "created_at": "2023-03-05T16:36:21Z", + "repoId": 143328315, + "pullRequestNo": 4813 + }, + { + "name": "topefolorunso", + "id": 66448986, + "comment_id": 1455856230, + "created_at": "2023-03-06T10:18:17Z", + "repoId": 143328315, + "pullRequestNo": 4814 + }, + { + "name": "harshmange44", + "id": 47944044, + "comment_id": 1455953576, + "created_at": "2023-03-06T11:22:33Z", + "repoId": 143328315, + "pullRequestNo": 4801 + }, + { + "name": "sudip-unb", + "id": 109293125, + "comment_id": 1457023492, + "created_at": "2023-03-06T21:24:22Z", + "repoId": 143328315, + "pullRequestNo": 4824 + }, + { + "name": "ieshreya", + "id": 63795399, + "comment_id": 1457991094, + "created_at": "2023-03-07T11:16:47Z", + "repoId": 143328315, + "pullRequestNo": 4825 + }, + { + "name": "sumitshinde-84", + "id": 110285294, + "comment_id": 1458019350, + "created_at": "2023-03-07T11:40:20Z", + "repoId": 143328315, + "pullRequestNo": 4692 + }, + { + "name": "eren23", + "id": 20106221, + "comment_id": 1459000426, + "created_at": "2023-03-07T23:03:15Z", + "repoId": 143328315, + "pullRequestNo": 4839 + }, + { + "name": "chandanck22", + "id": 35005874, + "comment_id": 1459462047, + "created_at": "2023-03-08T04:46:12Z", + "repoId": 143328315, + "pullRequestNo": 4840 + }, + { + "name": "LeonardoMMFontoura", + "id": 55448826, + "comment_id": 1461065915, + "created_at": "2023-03-09T00:12:50Z", + "repoId": 143328315, + "pullRequestNo": 4867 + }, + { + "name": "LeonardoMMFontoura", + "id": 55448826, + "comment_id": 1461068079, + "created_at": "2023-03-09T00:15:28Z", + "repoId": 143328315, + "pullRequestNo": 4867 + }, + { + "name": "ghulamali16", + "id": 86415692, + "comment_id": 1462072337, + "created_at": "2023-03-09T13:28:43Z", + "repoId": 143328315, + "pullRequestNo": 4877 + }, + { + "name": "ghulamali16", + "id": 86415692, + "comment_id": 1462075587, + "created_at": "2023-03-09T13:31:04Z", + "repoId": 143328315, + "pullRequestNo": 4877 + }, + { + "name": "pugal6", + "id": 100085582, + "comment_id": 1462336638, + "created_at": "2023-03-09T16:10:58Z", + "repoId": 143328315, + "pullRequestNo": 4883 + }, + { + "name": "Sujeendra", + "id": 31568876, + "comment_id": 1462426004, + "created_at": "2023-03-09T17:02:55Z", + "repoId": 143328315, + "pullRequestNo": 4890 + }, + { + "name": "curranConcepts", + "id": 100168862, + "comment_id": 1462801118, + "created_at": "2023-03-09T20:56:16Z", + "repoId": 143328315, + "pullRequestNo": 4891 + }, + { + "name": "Beingfarazkhan", + "id": 97282347, + "comment_id": 1462449498, + "created_at": "2023-03-09T17:19:00Z", + "repoId": 143328315, + "pullRequestNo": 4841 + }, + { + "name": "AtaydeEnrique", + "id": 87588133, + "comment_id": 1463984741, + "created_at": "2023-03-10T15:40:43Z", + "repoId": 143328315, + "pullRequestNo": 4894 + }, + { + "name": "Rehan-stack", + "id": 73068765, + "comment_id": 1464023604, + "created_at": "2023-03-10T16:02:06Z", + "repoId": 143328315, + "pullRequestNo": 4911 + }, + { + "name": "panos-span", + "id": 93033399, + "comment_id": 1464039373, + "created_at": "2023-03-10T16:13:47Z", + "repoId": 143328315, + "pullRequestNo": 4896 + }, + { + "name": "panos-span", + "id": 93033399, + "comment_id": 1464039389, + "created_at": "2023-03-10T16:13:49Z", + "repoId": 143328315, + "pullRequestNo": 4896 + }, + { + "name": "gitatractivo", + "id": 91304909, + "comment_id": 1464195048, + "created_at": "2023-03-10T18:17:09Z", + "repoId": 143328315, + "pullRequestNo": 4920 + }, + { + "name": "manosdell", + "id": 92676187, + "comment_id": 1464459019, + "created_at": "2023-03-10T20:53:57Z", + "repoId": 143328315, + "pullRequestNo": 4924 + }, + { + "name": "Usama-devsinc", + "id": 90912728, + "comment_id": 1464496030, + "created_at": "2023-03-10T21:28:12Z", + "repoId": 143328315, + "pullRequestNo": 4927 + }, + { + "name": "Usama-devsinc", + "id": 90912728, + "comment_id": 1464501726, + "created_at": "2023-03-10T21:34:43Z", + "repoId": 143328315, + "pullRequestNo": 4927 + }, + { + "name": "HussienSayed14", + "id": 94112556, + "comment_id": 1464504523, + "created_at": "2023-03-10T21:37:50Z", + "repoId": 143328315, + "pullRequestNo": 4926 + }, + { + "name": "Aosmankic-AO", + "id": 69410276, + "comment_id": 1464390566, + "created_at": "2023-03-10T20:34:11Z", + "repoId": 143328315, + "pullRequestNo": 4921 + }, + { + "name": "Yasir761", + "id": 74600745, + "comment_id": 1464895807, + "created_at": "2023-03-11T11:59:16Z", + "repoId": 143328315, + "pullRequestNo": 4930 + }, + { + "name": "jeramiahgcoffey", + "id": 84428559, + "comment_id": 1464237750, + "created_at": "2023-03-10T18:45:13Z", + "repoId": 143328315, + "pullRequestNo": 4923 + }, + { + "name": "wanguiwaweru", + "id": 74382189, + "comment_id": 1464934251, + "created_at": "2023-03-11T15:24:25Z", + "repoId": 143328315, + "pullRequestNo": 4931 + }, + { + "name": "AbhiiVops", + "id": 93565422, + "comment_id": 1465252958, + "created_at": "2023-03-12T17:22:40Z", + "repoId": 143328315, + "pullRequestNo": 4932 + }, + { + "name": "Tomiwa-dev", + "id": 78116662, + "comment_id": 1467164250, + "created_at": "2023-03-14T00:27:58Z", + "repoId": 143328315, + "pullRequestNo": 4959 + }, + { + "name": "shakeel-3", + "id": 101501308, + "comment_id": 1467856072, + "created_at": "2023-03-14T10:47:12Z", + "repoId": 143328315, + "pullRequestNo": 4962 + }, + { + "name": "shakeel-3", + "id": 101501308, + "comment_id": 1467862721, + "created_at": "2023-03-14T10:52:00Z", + "repoId": 143328315, + "pullRequestNo": 4962 + }, + { + "name": "IsraelAbebe", + "id": 15804692, + "comment_id": 1467895308, + "created_at": "2023-03-14T11:08:11Z", + "repoId": 143328315, + "pullRequestNo": 4957 + }, + { + "name": "Omokiti", + "id": 44473837, + "comment_id": 1467970548, + "created_at": "2023-03-14T12:00:57Z", + "repoId": 143328315, + "pullRequestNo": 4965 + }, + { + "name": "agarwal-aryan", + "id": 110337320, + "comment_id": 1468609319, + "created_at": "2023-03-14T18:19:25Z", + "repoId": 143328315, + "pullRequestNo": 4982 + }, + { + "name": "Mishrasubha", + "id": 32950636, + "comment_id": 1466790659, + "created_at": "2023-03-13T19:06:00Z", + "repoId": 143328315, + "pullRequestNo": 4955 + }, + { + "name": "Mishrasubha", + "id": 32950636, + "comment_id": 1467414563, + "created_at": "2023-03-14T06:00:15Z", + "repoId": 143328315, + "pullRequestNo": 4955 + }, + { + "name": "Siddh744542", + "id": 71864026, + "comment_id": 1470282260, + "created_at": "2023-03-15T15:45:23Z", + "repoId": 143328315, + "pullRequestNo": 4997 + }, + { + "name": "Sriparno08", + "id": 89148144, + "comment_id": 1471276405, + "created_at": "2023-03-16T04:09:55Z", + "repoId": 143328315, + "pullRequestNo": 5022 + }, + { + "name": "Soumya-Kushwaha", + "id": 87495134, + "comment_id": 1471328266, + "created_at": "2023-03-16T05:11:03Z", + "repoId": 143328315, + "pullRequestNo": 5017 + }, + { + "name": "geoartop", + "id": 93033099, + "comment_id": 1471691117, + "created_at": "2023-03-16T10:30:04Z", + "repoId": 143328315, + "pullRequestNo": 5025 + }, + { + "name": "geoartop", + "id": 93033099, + "comment_id": 1471692631, + "created_at": "2023-03-16T10:30:55Z", + "repoId": 143328315, + "pullRequestNo": 5025 + }, + { + "name": "geoartop", + "id": 93033099, + "comment_id": 1471795208, + "created_at": "2023-03-16T11:39:15Z", + "repoId": 143328315, + "pullRequestNo": 5025 + }, + { + "name": "Gautam-666", + "id": 124668418, + "comment_id": 1471901347, + "created_at": "2023-03-16T12:53:02Z", + "repoId": 143328315, + "pullRequestNo": 5033 + }, + { + "name": "minseonkkim", + "id": 76653033, + "comment_id": 1471946048, + "created_at": "2023-03-16T13:22:53Z", + "repoId": 143328315, + "pullRequestNo": 5023 + }, + { + "name": "Ayaan49", + "id": 64208057, + "comment_id": 1472326446, + "created_at": "2023-03-16T16:41:50Z", + "repoId": 143328315, + "pullRequestNo": 5036 + }, + { + "name": "ReprogramAkash", + "id": 118842768, + "comment_id": 1472433926, + "created_at": "2023-03-16T17:43:34Z", + "repoId": 143328315, + "pullRequestNo": 5037 + }, + { + "name": "revanthsonu", + "id": 40160940, + "comment_id": 1472627956, + "created_at": "2023-03-16T19:31:31Z", + "repoId": 143328315, + "pullRequestNo": 5041 + }, + { + "name": "maarioos123", + "id": 92583644, + "comment_id": 1472634758, + "created_at": "2023-03-16T19:37:31Z", + "repoId": 143328315, + "pullRequestNo": 5039 + }, + { + "name": "haiderRizvii", + "id": 86354776, + "comment_id": 1473677114, + "created_at": "2023-03-17T11:14:00Z", + "repoId": 143328315, + "pullRequestNo": 5055 + }, + { + "name": "rzz0", + "id": 47116081, + "comment_id": 1473759359, + "created_at": "2023-03-17T12:29:39Z", + "repoId": 143328315, + "pullRequestNo": 5048 + }, + { + "name": "Numair-Majid123", + "id": 89653038, + "comment_id": 1473843015, + "created_at": "2023-03-17T13:26:27Z", + "repoId": 143328315, + "pullRequestNo": 5057 + }, + { + "name": "Numair-Majid123", + "id": 89653038, + "comment_id": 1473853910, + "created_at": "2023-03-17T13:34:27Z", + "repoId": 143328315, + "pullRequestNo": 5057 + }, + { + "name": "Srinja333", + "id": 66597192, + "comment_id": 1474028137, + "created_at": "2023-03-17T15:38:40Z", + "repoId": 143328315, + "pullRequestNo": 5049 + }, + { + "name": "theomalikourtis", + "id": 93033176, + "comment_id": 1474459771, + "created_at": "2023-03-17T22:17:55Z", + "repoId": 143328315, + "pullRequestNo": 5047 + }, + { + "name": "vijay-jaisankar", + "id": 56185979, + "comment_id": 1476256729, + "created_at": "2023-03-20T13:40:58Z", + "repoId": 143328315, + "pullRequestNo": 5077 + }, + { + "name": "rorybakerfmr", + "id": 124181551, + "comment_id": 1476324466, + "created_at": "2023-03-20T14:21:04Z", + "repoId": 143328315, + "pullRequestNo": 4655 + }, + { + "name": "marsidmali", + "id": 93339789, + "comment_id": 1476369017, + "created_at": "2023-03-20T14:47:20Z", + "repoId": 143328315, + "pullRequestNo": 5070 + }, + { + "name": "SrushtiSapkale", + "id": 73685894, + "comment_id": 1476395448, + "created_at": "2023-03-20T15:02:13Z", + "repoId": 143328315, + "pullRequestNo": 5071 + }, + { + "name": "ryw", + "id": 4283, + "comment_id": 1477089921, + "created_at": "2023-03-20T23:38:52Z", + "repoId": 143328315, + "pullRequestNo": 5095 + }, + { + "name": "vijaybirju", + "id": 59472284, + "comment_id": 1478371527, + "created_at": "2023-03-21T18:10:47Z", + "repoId": 143328315, + "pullRequestNo": 5108 + }, + { + "name": "yurihwang", + "id": 87630326, + "comment_id": 1478086576, + "created_at": "2023-03-21T15:51:24Z", + "repoId": 143328315, + "pullRequestNo": 5114 + }, + { + "name": "sjericlee", + "id": 107772123, + "comment_id": 1478405735, + "created_at": "2023-03-21T18:37:19Z", + "repoId": 143328315, + "pullRequestNo": 5116 + }, + { + "name": "SumitBikram", + "id": 44345533, + "comment_id": 1478435872, + "created_at": "2023-03-21T19:02:01Z", + "repoId": 143328315, + "pullRequestNo": 5127 + }, + { + "name": "benw10-1", + "id": 26154180, + "comment_id": 1478865246, + "created_at": "2023-03-22T03:18:03Z", + "repoId": 143328315, + "pullRequestNo": 5104 + }, + { + "name": "yenper", + "id": 86003362, + "comment_id": 1478989418, + "created_at": "2023-03-22T06:36:42Z", + "repoId": 143328315, + "pullRequestNo": 5125 + }, + { + "name": "shreyashghadge11", + "id": 55745865, + "comment_id": 1479049454, + "created_at": "2023-03-22T07:45:06Z", + "repoId": 143328315, + "pullRequestNo": 5143 + }, + { + "name": "shreyashghadge11", + "id": 55745865, + "comment_id": 1479052598, + "created_at": "2023-03-22T07:48:20Z", + "repoId": 143328315, + "pullRequestNo": 5143 + }, + { + "name": "Ajneesh21", + "id": 76419381, + "comment_id": 1479037063, + "created_at": "2023-03-22T07:30:44Z", + "repoId": 143328315, + "pullRequestNo": 5141 + }, + { + "name": "minnayu", + "id": 69655024, + "comment_id": 1478931764, + "created_at": "2023-03-22T05:19:14Z", + "repoId": 143328315, + "pullRequestNo": 5140 + }, + { + "name": "MJMcNazir", + "id": 17390624, + "comment_id": 1479123094, + "created_at": "2023-03-22T08:47:49Z", + "repoId": 143328315, + "pullRequestNo": 5142 + }, + { + "name": "mohsinipk", + "id": 85103318, + "comment_id": 1479398254, + "created_at": "2023-03-22T11:34:20Z", + "repoId": 143328315, + "pullRequestNo": 5146 + }, + { + "name": "gozie11", + "id": 51960769, + "comment_id": 1479407761, + "created_at": "2023-03-22T11:43:09Z", + "repoId": 143328315, + "pullRequestNo": 5151 + }, + { + "name": "rishabh-gurbani", + "id": 27919652, + "comment_id": 1479542553, + "created_at": "2023-03-22T13:09:21Z", + "repoId": 143328315, + "pullRequestNo": 5159 + }, + { + "name": "imvisp", + "id": 75424375, + "comment_id": 1479684387, + "created_at": "2023-03-22T14:37:14Z", + "repoId": 143328315, + "pullRequestNo": 5161 + }, + { + "name": "Sugoto", + "id": 60142374, + "comment_id": 1480831408, + "created_at": "2023-03-23T09:08:08Z", + "repoId": 143328315, + "pullRequestNo": 5168 + }, + { + "name": "arimallick", + "id": 116898892, + "comment_id": 1481033239, + "created_at": "2023-03-23T11:36:29Z", + "repoId": 143328315, + "pullRequestNo": 5167 + }, + { + "name": "eskayML", + "id": 71832907, + "comment_id": 1481097940, + "created_at": "2023-03-23T12:20:47Z", + "repoId": 143328315, + "pullRequestNo": 5165 + }, + { + "name": "VG-1", + "id": 77708101, + "comment_id": 1481114921, + "created_at": "2023-03-23T12:32:05Z", + "repoId": 143328315, + "pullRequestNo": 5166 + }, + { + "name": "rahul-darmula", + "id": 95768746, + "comment_id": 1481400461, + "created_at": "2023-03-23T15:27:24Z", + "repoId": 143328315, + "pullRequestNo": 5169 + }, + { + "name": "IAmP33l", + "id": 99437270, + "comment_id": 1481838811, + "created_at": "2023-03-23T20:18:20Z", + "repoId": 143328315, + "pullRequestNo": 5186 + }, + { + "name": "sergiloupa", + "id": 93870667, + "comment_id": 1482813648, + "created_at": "2023-03-24T13:38:58Z", + "repoId": 143328315, + "pullRequestNo": 5163 + }, + { + "name": "yash7raut", + "id": 73844713, + "comment_id": 1483745768, + "created_at": "2023-03-25T06:58:35Z", + "repoId": 143328315, + "pullRequestNo": 5207 + }, + { + "name": "rohit-rambade", + "id": 86614477, + "comment_id": 1483790692, + "created_at": "2023-03-25T10:37:39Z", + "repoId": 143328315, + "pullRequestNo": 5204 + }, + { + "name": "kvaithin", + "id": 68995267, + "comment_id": 1483286637, + "created_at": "2023-03-24T19:08:28Z", + "repoId": 143328315, + "pullRequestNo": 5205 + }, + { + "name": "Bluesparx", + "id": 116333715, + "comment_id": 1484220592, + "created_at": "2023-03-26T20:53:41Z", + "repoId": 143328315, + "pullRequestNo": 5215 + }, + { + "name": "Goketech", + "id": 105242931, + "comment_id": 1485001799, + "created_at": "2023-03-27T11:48:45Z", + "repoId": 143328315, + "pullRequestNo": 5217 + }, + { + "name": "Joel-hanson", + "id": 17215044, + "comment_id": 1484478849, + "created_at": "2023-03-27T04:38:41Z", + "repoId": 143328315, + "pullRequestNo": 5213 + }, + { + "name": "c0d33ngr", + "id": 106184818, + "comment_id": 1485707969, + "created_at": "2023-03-27T19:00:09Z", + "repoId": 143328315, + "pullRequestNo": 5225 + }, + { + "name": "lokytech5", + "id": 110813568, + "comment_id": 1485828869, + "created_at": "2023-03-27T20:35:46Z", + "repoId": 143328315, + "pullRequestNo": 5096 + }, + { + "name": "Fayezkhan1", + "id": 102750759, + "comment_id": 1486276212, + "created_at": "2023-03-28T06:15:21Z", + "repoId": 143328315, + "pullRequestNo": 5237 + }, + { + "name": "Fayezkhan1", + "id": 102750759, + "comment_id": 1486277853, + "created_at": "2023-03-28T06:17:21Z", + "repoId": 143328315, + "pullRequestNo": 5237 + }, + { + "name": "ethanruhe", + "id": 7217817, + "comment_id": 1486232157, + "created_at": "2023-03-28T05:18:55Z", + "repoId": 143328315, + "pullRequestNo": 5236 + }, + { + "name": "piyushyadav1617", + "id": 72244570, + "comment_id": 1488301752, + "created_at": "2023-03-29T10:01:40Z", + "repoId": 143328315, + "pullRequestNo": 5260 + }, + { + "name": "dhavall13", + "id": 55317768, + "comment_id": 1488306801, + "created_at": "2023-03-29T10:05:05Z", + "repoId": 143328315, + "pullRequestNo": 5263 + }, + { + "name": "manulpatel", + "id": 77568048, + "comment_id": 1488374039, + "created_at": "2023-03-29T10:53:00Z", + "repoId": 143328315, + "pullRequestNo": 5269 + }, + { + "name": "dsukruth", + "id": 43529945, + "comment_id": 1488269310, + "created_at": "2023-03-29T09:37:52Z", + "repoId": 143328315, + "pullRequestNo": 5262 + }, + { + "name": "munnokd", + "id": 81804004, + "comment_id": 1488443908, + "created_at": "2023-03-29T11:39:41Z", + "repoId": 143328315, + "pullRequestNo": 5275 + }, + { + "name": "ashish-lgtm", + "id": 80253741, + "comment_id": 1488514354, + "created_at": "2023-03-29T12:30:43Z", + "repoId": 143328315, + "pullRequestNo": 5284 + }, + { + "name": "ColbyJax19", + "id": 107650551, + "comment_id": 1488932203, + "created_at": "2023-03-29T16:33:48Z", + "repoId": 143328315, + "pullRequestNo": 5289 + }, + { + "name": "lotyszm", + "id": 2004150, + "comment_id": 1490348978, + "created_at": "2023-03-30T13:55:10Z", + "repoId": 143328315, + "pullRequestNo": 5310 + }, + { + "name": "g-s-eire", + "id": 126164066, + "comment_id": 1488882090, + "created_at": "2023-03-29T15:54:25Z", + "repoId": 143328315, + "pullRequestNo": 5288 + }, + { + "name": "hilaryoung", + "id": 62809466, + "comment_id": 1490630828, + "created_at": "2023-03-30T16:58:58Z", + "repoId": 143328315, + "pullRequestNo": 5297 + }, + { + "name": "jeeteshgour1000", + "id": 70055934, + "comment_id": 1490657445, + "created_at": "2023-03-30T17:18:08Z", + "repoId": 143328315, + "pullRequestNo": 5319 + }, + { + "name": "kickyvivi", + "id": 32842559, + "comment_id": 1490831507, + "created_at": "2023-03-30T19:34:00Z", + "repoId": 143328315, + "pullRequestNo": 5322 + }, + { + "name": "Abdullah-Alamodi", + "id": 111984526, + "comment_id": 1491760531, + "created_at": "2023-03-31T11:14:05Z", + "repoId": 143328315, + "pullRequestNo": 5309 + }, + { + "name": "ShruAgarwal", + "id": 82811717, + "comment_id": 1491870596, + "created_at": "2023-03-31T12:43:03Z", + "repoId": 143328315, + "pullRequestNo": 5331 + }, + { + "name": "HighnessAtharva", + "id": 68660002, + "comment_id": 1491976820, + "created_at": "2023-03-31T14:03:57Z", + "repoId": 143328315, + "pullRequestNo": 5333 + }, + { + "name": "haojunsong-08", + "id": 84302343, + "comment_id": 1491868018, + "created_at": "2023-03-31T12:40:43Z", + "repoId": 143328315, + "pullRequestNo": 5326 + }, + { + "name": "haojunsong-08", + "id": 84302343, + "comment_id": 1491987727, + "created_at": "2023-03-31T14:11:19Z", + "repoId": 143328315, + "pullRequestNo": 5326 + }, + { + "name": "alemendoza-v", + "id": 31571759, + "comment_id": 1492193353, + "created_at": "2023-03-31T16:02:26Z", + "repoId": 143328315, + "pullRequestNo": 5343 + }, + { + "name": "Navinkhandeparkar", + "id": 29151172, + "comment_id": 1492245325, + "created_at": "2023-03-31T16:36:58Z", + "repoId": 143328315, + "pullRequestNo": 5350 + }, + { + "name": "Navinkhandeparkar", + "id": 29151172, + "comment_id": 1492423033, + "created_at": "2023-03-31T18:31:33Z", + "repoId": 143328315, + "pullRequestNo": 5350 + }, + { + "name": "tarunsamanta2k20", + "id": 55488549, + "comment_id": 1492716635, + "created_at": "2023-03-31T23:23:50Z", + "repoId": 143328315, + "pullRequestNo": 5299 + }, + { + "name": "jainam-r", + "id": 69905498, + "comment_id": 1492945711, + "created_at": "2023-04-01T11:38:35Z", + "repoId": 143328315, + "pullRequestNo": 5308 + }, + { + "name": "sagi403", + "id": 95089762, + "comment_id": 1492963718, + "created_at": "2023-04-01T13:00:06Z", + "repoId": 143328315, + "pullRequestNo": 5381 + }, + { + "name": "sagi403", + "id": 95089762, + "comment_id": 1492964521, + "created_at": "2023-04-01T13:01:34Z", + "repoId": 143328315, + "pullRequestNo": 5381 + }, + { + "name": "happysingh222", + "id": 70437883, + "comment_id": 1493257179, + "created_at": "2023-04-02T07:46:50Z", + "repoId": 143328315, + "pullRequestNo": 5386 + }, + { + "name": "happysingh222", + "id": 70437883, + "comment_id": 1493257286, + "created_at": "2023-04-02T07:47:25Z", + "repoId": 143328315, + "pullRequestNo": 5386 + }, + { + "name": "ankeshmahto", + "id": 111229464, + "comment_id": 1493260946, + "created_at": "2023-04-02T08:07:23Z", + "repoId": 143328315, + "pullRequestNo": 5387 + }, + { + "name": "ankeshmahto", + "id": 111229464, + "comment_id": 1493261029, + "created_at": "2023-04-02T08:07:52Z", + "repoId": 143328315, + "pullRequestNo": 5387 + }, + { + "name": "MohdFaisalBidda", + "id": 96825384, + "comment_id": 1493291420, + "created_at": "2023-04-02T10:28:20Z", + "repoId": 143328315, + "pullRequestNo": 5388 + }, + { + "name": "MohdFaisalBidda", + "id": 96825384, + "comment_id": 1493291935, + "created_at": "2023-04-02T10:31:04Z", + "repoId": 143328315, + "pullRequestNo": 5388 + }, + { + "name": "RakeshEpi247", + "id": 111109173, + "comment_id": 1493297271, + "created_at": "2023-04-02T10:52:44Z", + "repoId": 143328315, + "pullRequestNo": 5348 + }, + { + "name": "rajshukla1102", + "id": 67179616, + "comment_id": 1493406849, + "created_at": "2023-04-02T18:15:28Z", + "repoId": 143328315, + "pullRequestNo": 5383 + }, + { + "name": "anay-deshpande", + "id": 72355546, + "comment_id": 1493408950, + "created_at": "2023-04-02T18:26:08Z", + "repoId": 143328315, + "pullRequestNo": 5382 + }, + { + "name": "sjdex", + "id": 110608231, + "comment_id": 1493885802, + "created_at": "2023-04-03T08:19:24Z", + "repoId": 143328315, + "pullRequestNo": 5380 + }, + { + "name": "saif-rehman-1", + "id": 86648367, + "comment_id": 1493951688, + "created_at": "2023-04-03T09:06:07Z", + "repoId": 143328315, + "pullRequestNo": 5261 + }, + { + "name": "rohan472000", + "id": 96521078, + "comment_id": 1495462798, + "created_at": "2023-04-04T07:12:50Z", + "repoId": 143328315, + "pullRequestNo": 5421 + }, + { + "name": "aia", + "id": 535247, + "comment_id": 1497974640, + "created_at": "2023-04-05T18:59:03Z", + "repoId": 143328315, + "pullRequestNo": 5474 + }, + { + "name": "swapn652", + "id": 70851202, + "comment_id": 1498876147, + "created_at": "2023-04-06T10:53:55Z", + "repoId": 143328315, + "pullRequestNo": 5449 + }, + { + "name": "nmicra", + "id": 4868504, + "comment_id": 1499341353, + "created_at": "2023-04-06T16:41:36Z", + "repoId": 143328315, + "pullRequestNo": 5214 + }, + { + "name": "2170chm", + "id": 70702777, + "comment_id": 1500509481, + "created_at": "2023-04-07T17:59:24Z", + "repoId": 143328315, + "pullRequestNo": 5508 + }, + { + "name": "arnavdeshpande1", + "id": 49182627, + "comment_id": 1503133594, + "created_at": "2023-04-11T11:09:46Z", + "repoId": 143328315, + "pullRequestNo": 5545 + }, + { + "name": "Christinanik251", + "id": 93385939, + "comment_id": 1503516983, + "created_at": "2023-04-11T14:50:04Z", + "repoId": 143328315, + "pullRequestNo": 5576 + }, + { + "name": "inclinedadarsh", + "id": 84132532, + "comment_id": 1503665310, + "created_at": "2023-04-11T15:55:42Z", + "repoId": 143328315, + "pullRequestNo": 5580 + }, + { + "name": "rishavganguly007", + "id": 79499308, + "comment_id": 1503781842, + "created_at": "2023-04-11T17:02:02Z", + "repoId": 143328315, + "pullRequestNo": 5581 + }, + { + "name": "pranavvp16", + "id": 94780581, + "comment_id": 1503887215, + "created_at": "2023-04-11T18:28:40Z", + "repoId": 143328315, + "pullRequestNo": 5543 + }, + { + "name": "harshkanani204", + "id": 75885610, + "comment_id": 1503783198, + "created_at": "2023-04-11T17:03:04Z", + "repoId": 143328315, + "pullRequestNo": 5582 + }, + { + "name": "harshkanani204", + "id": 75885610, + "comment_id": 1504732313, + "created_at": "2023-04-12T06:27:49Z", + "repoId": 143328315, + "pullRequestNo": 5582 + }, + { + "name": "vedantag17", + "id": 118207011, + "comment_id": 1506951856, + "created_at": "2023-04-13T13:18:46Z", + "repoId": 143328315, + "pullRequestNo": 5608 + }, + { + "name": "Smyja", + "id": 20070770, + "comment_id": 1507123333, + "created_at": "2023-04-13T14:57:44Z", + "repoId": 143328315, + "pullRequestNo": 5611 + }, + { + "name": "aditi-sharma-limelab", + "id": 60054740, + "comment_id": 1508951406, + "created_at": "2023-04-14T16:52:54Z", + "repoId": 143328315, + "pullRequestNo": 5624 + }, + { + "name": "Zeesky-code", + "id": 71593672, + "comment_id": 1511106897, + "created_at": "2023-04-17T10:40:53Z", + "repoId": 143328315, + "pullRequestNo": 5662 + }, + { + "name": "gauriimaheshwarii", + "id": 100439627, + "comment_id": 1511007130, + "created_at": "2023-04-17T09:28:27Z", + "repoId": 143328315, + "pullRequestNo": 5660 + }, + { + "name": "shubham-singh-748", + "id": 88304238, + "comment_id": 1511133979, + "created_at": "2023-04-17T11:02:58Z", + "repoId": 143328315, + "pullRequestNo": 5633 + }, + { + "name": "hacked-netizen", + "id": 76107260, + "comment_id": 1510434420, + "created_at": "2023-04-16T17:10:12Z", + "repoId": 143328315, + "pullRequestNo": 5654 + }, + { + "name": "lewisbec", + "id": 91163066, + "comment_id": 1511854243, + "created_at": "2023-04-17T18:08:26Z", + "repoId": 143328315, + "pullRequestNo": 5679 + }, + { + "name": "Santhoshmani1", + "id": 119673958, + "comment_id": 1512281051, + "created_at": "2023-04-18T00:40:54Z", + "repoId": 143328315, + "pullRequestNo": 5678 + }, + { + "name": "tauseefmohammed2", + "id": 35351464, + "comment_id": 1512929744, + "created_at": "2023-04-18T11:40:33Z", + "repoId": 143328315, + "pullRequestNo": 5699 + }, + { + "name": "Manthan1313Github", + "id": 20395595, + "comment_id": 1513187115, + "created_at": "2023-04-18T13:45:12Z", + "repoId": 143328315, + "pullRequestNo": 5703 + }, + { + "name": "Lougarou", + "id": 4313217, + "comment_id": 1513339261, + "created_at": "2023-04-18T15:14:36Z", + "repoId": 143328315, + "pullRequestNo": 5579 + }, + { + "name": "nakul010", + "id": 98902181, + "comment_id": 1513390350, + "created_at": "2023-04-18T15:44:53Z", + "repoId": 143328315, + "pullRequestNo": 5712 + }, + { + "name": "nakul010", + "id": 98902181, + "comment_id": 1513501507, + "created_at": "2023-04-18T16:56:39Z", + "repoId": 143328315, + "pullRequestNo": 5712 + }, + { + "name": "PotuRevanth", + "id": 98310054, + "comment_id": 1514370574, + "created_at": "2023-04-19T08:53:42Z", + "repoId": 143328315, + "pullRequestNo": 5675 + }, + { + "name": "eswarijayakumar", + "id": 8630933, + "comment_id": 1513377381, + "created_at": "2023-04-18T15:36:46Z", + "repoId": 143328315, + "pullRequestNo": 5711 + }, + { + "name": "1nayeeyan", + "id": 34377026, + "comment_id": 1514659391, + "created_at": "2023-04-19T12:35:46Z", + "repoId": 143328315, + "pullRequestNo": 5725 + }, + { + "name": "vaibhavmishra4g", + "id": 89067345, + "comment_id": 1514811604, + "created_at": "2023-04-19T14:13:24Z", + "repoId": 143328315, + "pullRequestNo": 5693 + }, + { + "name": "harikishantk", + "id": 58771359, + "comment_id": 1514868957, + "created_at": "2023-04-19T14:44:58Z", + "repoId": 143328315, + "pullRequestNo": 5106 + }, + { + "name": "roy9495", + "id": 98920199, + "comment_id": 1514915197, + "created_at": "2023-04-19T15:13:45Z", + "repoId": 143328315, + "pullRequestNo": 5729 + }, + { + "name": "SwasthikBangera", + "id": 37939646, + "comment_id": 1514998749, + "created_at": "2023-04-19T16:08:47Z", + "repoId": 143328315, + "pullRequestNo": 5715 + }, + { + "name": "senali-d", + "id": 52546856, + "comment_id": 1516121604, + "created_at": "2023-04-20T10:54:40Z", + "repoId": 143328315, + "pullRequestNo": 5733 + }, + { + "name": "sanzib", + "id": 37778465, + "comment_id": 1516574080, + "created_at": "2023-04-20T15:54:38Z", + "repoId": 143328315, + "pullRequestNo": 5735 + }, + { + "name": "nik132-eng", + "id": 77881638, + "comment_id": 1517690805, + "created_at": "2023-04-21T11:36:08Z", + "repoId": 143328315, + "pullRequestNo": 5746 + }, + { + "name": "tcchawla", + "id": 75406794, + "comment_id": 1518189774, + "created_at": "2023-04-21T18:22:39Z", + "repoId": 143328315, + "pullRequestNo": 5756 + }, + { + "name": "natbibi", + "id": 58271566, + "comment_id": 1518450472, + "created_at": "2023-04-22T00:56:53Z", + "repoId": 143328315, + "pullRequestNo": 5763 + }, + { + "name": "jgirish23", + "id": 76240891, + "comment_id": 1519761794, + "created_at": "2023-04-24T09:45:27Z", + "repoId": 143328315, + "pullRequestNo": 5761 + }, + { + "name": "Monish-VR", + "id": 119118249, + "comment_id": 1520242373, + "created_at": "2023-04-24T14:14:42Z", + "repoId": 143328315, + "pullRequestNo": 5775 + }, + { + "name": "asrvd", + "id": 68690233, + "comment_id": 1520329658, + "created_at": "2023-04-24T14:51:29Z", + "repoId": 143328315, + "pullRequestNo": 5773 + }, + { + "name": "karthiknadar1204", + "id": 95973644, + "comment_id": 1520501952, + "created_at": "2023-04-24T16:42:38Z", + "repoId": 143328315, + "pullRequestNo": 5779 + }, + { + "name": "KenmogneThimotee", + "id": 44063958, + "comment_id": 1523089798, + "created_at": "2023-04-26T09:28:15Z", + "repoId": 143328315, + "pullRequestNo": 5783 + }, + { + "name": "HarshDeep61034", + "id": 121210012, + "comment_id": 1523238809, + "created_at": "2023-04-26T11:10:15Z", + "repoId": 143328315, + "pullRequestNo": 5804 + }, + { + "name": "snorfyang", + "id": 68773271, + "comment_id": 1523277958, + "created_at": "2023-04-26T11:42:50Z", + "repoId": 143328315, + "pullRequestNo": 5811 + }, + { + "name": "MUHSINeth", + "id": 101365717, + "comment_id": 1523688211, + "created_at": "2023-04-26T16:12:22Z", + "repoId": 143328315, + "pullRequestNo": 5818 + }, + { + "name": "Ashwin-developer12", + "id": 96196095, + "comment_id": 1523707714, + "created_at": "2023-04-26T16:25:15Z", + "repoId": 143328315, + "pullRequestNo": 5820 + }, + { + "name": "Ashwin-developer12", + "id": 96196095, + "comment_id": 1523709825, + "created_at": "2023-04-26T16:26:05Z", + "repoId": 143328315, + "pullRequestNo": 5820 + }, + { + "name": "wu-ming233", + "id": 68354436, + "comment_id": 1523707464, + "created_at": "2023-04-26T16:25:10Z", + "repoId": 143328315, + "pullRequestNo": 5821 + }, + { + "name": "wu-ming233", + "id": 68354436, + "comment_id": 1523714305, + "created_at": "2023-04-26T16:27:48Z", + "repoId": 143328315, + "pullRequestNo": 5821 + }, + { + "name": "tungbq", + "id": 85242618, + "comment_id": 1523693326, + "created_at": "2023-04-26T16:15:59Z", + "repoId": 143328315, + "pullRequestNo": 5819 + }, + { + "name": "tungbq", + "id": 85242618, + "comment_id": 1523694457, + "created_at": "2023-04-26T16:16:31Z", + "repoId": 143328315, + "pullRequestNo": 5819 + }, + { + "name": "Ambareen09", + "id": 64471630, + "comment_id": 1523900398, + "created_at": "2023-04-26T18:57:33Z", + "repoId": 143328315, + "pullRequestNo": 5826 + }, + { + "name": "neonbhai", + "id": 64629613, + "comment_id": 1523907072, + "created_at": "2023-04-26T19:02:43Z", + "repoId": 143328315, + "pullRequestNo": 5822 + }, + { + "name": "anubhav1206", + "id": 53504460, + "comment_id": 1525006363, + "created_at": "2023-04-27T07:44:53Z", + "repoId": 143328315, + "pullRequestNo": 5815 + }, + { + "name": "Osos3006", + "id": 43725885, + "comment_id": 1525268461, + "created_at": "2023-04-27T09:33:21Z", + "repoId": 143328315, + "pullRequestNo": 5835 + }, + { + "name": "Osos3006", + "id": 43725885, + "comment_id": 1525269959, + "created_at": "2023-04-27T09:34:00Z", + "repoId": 143328315, + "pullRequestNo": 5835 + }, + { + "name": "dscardona", + "id": 89112552, + "comment_id": 1525666874, + "created_at": "2023-04-27T13:07:26Z", + "repoId": 143328315, + "pullRequestNo": 5828 + }, + { + "name": "xeniumcode", + "id": 76689618, + "comment_id": 1525511651, + "created_at": "2023-04-27T11:17:52Z", + "repoId": 143328315, + "pullRequestNo": 5836 + }, + { + "name": "tanbirali", + "id": 124070023, + "comment_id": 1525731791, + "created_at": "2023-04-27T13:50:31Z", + "repoId": 143328315, + "pullRequestNo": 5824 + }, + { + "name": "TinaSay", + "id": 36473933, + "comment_id": 1525889179, + "created_at": "2023-04-27T15:20:25Z", + "repoId": 143328315, + "pullRequestNo": 5850 + }, + { + "name": "shashuat", + "id": 72076441, + "comment_id": 1525928852, + "created_at": "2023-04-27T15:44:21Z", + "repoId": 143328315, + "pullRequestNo": 5851 + }, + { + "name": "shashuat", + "id": 72076441, + "comment_id": 1525932182, + "created_at": "2023-04-27T15:46:53Z", + "repoId": 143328315, + "pullRequestNo": 5851 + }, + { + "name": "aaryahjolia", + "id": 82600388, + "comment_id": 1526147605, + "created_at": "2023-04-27T18:34:00Z", + "repoId": 143328315, + "pullRequestNo": 5858 + }, + { + "name": "gabcomby", + "id": 83326462, + "comment_id": 1526431457, + "created_at": "2023-04-27T20:49:57Z", + "repoId": 143328315, + "pullRequestNo": 5860 + }, + { + "name": "gabcomby", + "id": 83326462, + "comment_id": 1526477134, + "created_at": "2023-04-27T21:09:29Z", + "repoId": 143328315, + "pullRequestNo": 5860 + }, + { + "name": "PalAditya", + "id": 25523604, + "comment_id": 1526280889, + "created_at": "2023-04-27T19:43:56Z", + "repoId": 143328315, + "pullRequestNo": 5859 + }, + { + "name": "rafiya2003", + "id": 117273131, + "comment_id": 1527216211, + "created_at": "2023-04-28T08:54:44Z", + "repoId": 143328315, + "pullRequestNo": 5855 + }, + { + "name": "starvader13", + "id": 87145811, + "comment_id": 1527313332, + "created_at": "2023-04-28T10:03:23Z", + "repoId": 143328315, + "pullRequestNo": 5866 + }, + { + "name": "unnatixg", + "id": 127731723, + "comment_id": 1527551241, + "created_at": "2023-04-28T13:17:37Z", + "repoId": 143328315, + "pullRequestNo": 5871 + }, + { + "name": "J0SAL", + "id": 52382282, + "comment_id": 1527664568, + "created_at": "2023-04-28T14:35:13Z", + "repoId": 143328315, + "pullRequestNo": 5879 + }, + { + "name": "ayesha-firdaus", + "id": 122397747, + "comment_id": 1527825195, + "created_at": "2023-04-28T16:48:52Z", + "repoId": 143328315, + "pullRequestNo": 5868 + }, + { + "name": "AaronTrinh", + "id": 40454392, + "comment_id": 1528516622, + "created_at": "2023-04-29T02:31:53Z", + "repoId": 143328315, + "pullRequestNo": 5886 + }, + { + "name": "TheGuyD", + "id": 66018160, + "comment_id": 1528716401, + "created_at": "2023-04-29T08:25:48Z", + "repoId": 143328315, + "pullRequestNo": 5880 + }, + { + "name": "fsrur", + "id": 78866167, + "comment_id": 1527911592, + "created_at": "2023-04-28T18:03:53Z", + "repoId": 143328315, + "pullRequestNo": 5883 + }, + { + "name": "iamv1n", + "id": 83384807, + "comment_id": 1527870117, + "created_at": "2023-04-28T17:23:59Z", + "repoId": 143328315, + "pullRequestNo": 5882 + }, + { + "name": "FahadRahman912", + "id": 128897563, + "comment_id": 1528720586, + "created_at": "2023-04-29T08:43:54Z", + "repoId": 143328315, + "pullRequestNo": 5881 + }, + { + "name": "Nyx1on", + "id": 75667684, + "comment_id": 1529054057, + "created_at": "2023-04-30T15:28:04Z", + "repoId": 143328315, + "pullRequestNo": 5829 + }, + { + "name": "MOHDNEHALKHAN", + "id": 125626654, + "comment_id": 1529561621, + "created_at": "2023-05-01T10:32:53Z", + "repoId": 143328315, + "pullRequestNo": 5896 + }, + { + "name": "mohamed-elfiky", + "id": 26282714, + "comment_id": 1529688635, + "created_at": "2023-05-01T13:01:55Z", + "repoId": 143328315, + "pullRequestNo": 5907 + }, + { + "name": "Noel6161131110", + "id": 75027970, + "comment_id": 1529849002, + "created_at": "2023-05-01T15:41:56Z", + "repoId": 143328315, + "pullRequestNo": 5908 + }, + { + "name": "pranit-yawalkar", + "id": 64571514, + "comment_id": 1530799476, + "created_at": "2023-05-02T02:57:45Z", + "repoId": 143328315, + "pullRequestNo": 5912 + }, + { + "name": "RohanJacob23", + "id": 97782641, + "comment_id": 1531104605, + "created_at": "2023-05-02T08:50:52Z", + "repoId": 143328315, + "pullRequestNo": 5916 + }, + { + "name": "leonardoLavagna", + "id": 91341004, + "comment_id": 1531153347, + "created_at": "2023-05-02T09:21:10Z", + "repoId": 143328315, + "pullRequestNo": 5926 + }, + { + "name": "raghavaraghav3", + "id": 76058090, + "comment_id": 1531174066, + "created_at": "2023-05-02T09:38:15Z", + "repoId": 143328315, + "pullRequestNo": 5927 + }, + { + "name": "sasidhar244", + "id": 130732240, + "comment_id": 1531194350, + "created_at": "2023-05-02T09:54:13Z", + "repoId": 143328315, + "pullRequestNo": 5929 + }, + { + "name": "Abhishek-1337", + "id": 65114993, + "comment_id": 1531184410, + "created_at": "2023-05-02T09:46:39Z", + "repoId": 143328315, + "pullRequestNo": 5928 + }, + { + "name": "Darlio88", + "id": 82585827, + "comment_id": 1531542000, + "created_at": "2023-05-02T14:04:38Z", + "repoId": 143328315, + "pullRequestNo": 5930 + }, + { + "name": "SebastianJames55", + "id": 57470688, + "comment_id": 1531558735, + "created_at": "2023-05-02T14:14:13Z", + "repoId": 143328315, + "pullRequestNo": 5936 + }, + { + "name": "SebastianJames55", + "id": 57470688, + "comment_id": 1531589167, + "created_at": "2023-05-02T14:32:02Z", + "repoId": 143328315, + "pullRequestNo": 5936 + }, + { + "name": "alvarohghg", + "id": 61513412, + "comment_id": 1531591685, + "created_at": "2023-05-02T14:33:37Z", + "repoId": 143328315, + "pullRequestNo": 5931 + }, + { + "name": "harshalself", + "id": 119789631, + "comment_id": 1531630287, + "created_at": "2023-05-02T14:57:26Z", + "repoId": 143328315, + "pullRequestNo": 5938 + }, + { + "name": "roberanegussie", + "id": 47657043, + "comment_id": 1531790668, + "created_at": "2023-05-02T16:36:52Z", + "repoId": 143328315, + "pullRequestNo": 5933 + }, + { + "name": "holierthanthou35", + "id": 114186531, + "comment_id": 1531685541, + "created_at": "2023-05-02T15:33:12Z", + "repoId": 143328315, + "pullRequestNo": 5941 + }, + { + "name": "holierthanthou35", + "id": 114186531, + "comment_id": 1531960242, + "created_at": "2023-05-02T18:35:59Z", + "repoId": 143328315, + "pullRequestNo": 5941 + }, + { + "name": "tayyab-ilyas", + "id": 110786036, + "comment_id": 1532318824, + "created_at": "2023-05-03T00:43:59Z", + "repoId": 143328315, + "pullRequestNo": 5946 + }, + { + "name": "tayyab-ilyas", + "id": 110786036, + "comment_id": 1532319190, + "created_at": "2023-05-03T00:44:47Z", + "repoId": 143328315, + "pullRequestNo": 5946 + }, + { + "name": "DSKHOT", + "id": 1442207, + "comment_id": 1532445962, + "created_at": "2023-05-03T04:38:06Z", + "repoId": 143328315, + "pullRequestNo": 5943 + }, + { + "name": "ByronHan333", + "id": 31353811, + "comment_id": 1532320974, + "created_at": "2023-05-03T00:46:23Z", + "repoId": 143328315, + "pullRequestNo": 5947 + }, + { + "name": "sreekeshiyer", + "id": 67017933, + "comment_id": 1525030885, + "created_at": "2023-04-27T07:55:50Z", + "repoId": 143328315, + "pullRequestNo": 5780 + }, + { + "name": "yusharth", + "id": 57184245, + "comment_id": 1532903284, + "created_at": "2023-05-03T12:02:16Z", + "repoId": 143328315, + "pullRequestNo": 5952 + }, + { + "name": "IshaanAdarsh", + "id": 100434702, + "comment_id": 1533213556, + "created_at": "2023-05-03T15:09:29Z", + "repoId": 143328315, + "pullRequestNo": 5968 + }, + { + "name": "gantanikhilraj", + "id": 112814295, + "comment_id": 1533352851, + "created_at": "2023-05-03T16:33:24Z", + "repoId": 143328315, + "pullRequestNo": 5969 + }, + { + "name": "Saksham093", + "id": 69385787, + "comment_id": 1533368760, + "created_at": "2023-05-03T16:46:01Z", + "repoId": 143328315, + "pullRequestNo": 5970 + }, + { + "name": "Benjie-E", + "id": 90060865, + "comment_id": 1533882932, + "created_at": "2023-05-03T23:36:44Z", + "repoId": 143328315, + "pullRequestNo": 5976 + }, + { + "name": "sid2002CN", + "id": 97500802, + "comment_id": 1534025518, + "created_at": "2023-05-04T03:09:16Z", + "repoId": 143328315, + "pullRequestNo": 5948 + }, + { + "name": "sajdakabir", + "id": 86569763, + "comment_id": 1534099927, + "created_at": "2023-05-04T05:06:54Z", + "repoId": 143328315, + "pullRequestNo": 5975 + }, + { + "name": "KaitoMizukami", + "id": 108565894, + "comment_id": 1534120507, + "created_at": "2023-05-04T05:38:22Z", + "repoId": 143328315, + "pullRequestNo": 5977 + }, + { + "name": "KaitoMizukami", + "id": 108565894, + "comment_id": 1534121373, + "created_at": "2023-05-04T05:39:51Z", + "repoId": 143328315, + "pullRequestNo": 5977 + }, + { + "name": "1ce-one", + "id": 101406636, + "comment_id": 1534087247, + "created_at": "2023-05-04T04:41:18Z", + "repoId": 143328315, + "pullRequestNo": 5978 + }, + { + "name": "kshitiz305", + "id": 38988779, + "comment_id": 1534290675, + "created_at": "2023-05-04T08:28:57Z", + "repoId": 143328315, + "pullRequestNo": 5981 + }, + { + "name": "kshitiz305", + "id": 38988779, + "comment_id": 1534294344, + "created_at": "2023-05-04T08:30:33Z", + "repoId": 143328315, + "pullRequestNo": 5981 + }, + { + "name": "Debajyati", + "id": 127122455, + "comment_id": 1533658123, + "created_at": "2023-05-03T20:02:03Z", + "repoId": 143328315, + "pullRequestNo": 5972 + }, + { + "name": "mit-27", + "id": 63452683, + "comment_id": 1535139598, + "created_at": "2023-05-04T17:22:09Z", + "repoId": 143328315, + "pullRequestNo": 5995 + }, + { + "name": "mit-27", + "id": 63452683, + "comment_id": 1535160514, + "created_at": "2023-05-04T17:37:54Z", + "repoId": 143328315, + "pullRequestNo": 5995 + }, + { + "name": "pinkadotted", + "id": 75001982, + "comment_id": 1535069083, + "created_at": "2023-05-04T16:46:45Z", + "repoId": 143328315, + "pullRequestNo": 5994 + }, + { + "name": "risanpaul04", + "id": 107168898, + "comment_id": 1535663750, + "created_at": "2023-05-05T03:53:52Z", + "repoId": 143328315, + "pullRequestNo": 5974 + }, + { + "name": "JWeinberg2", + "id": 48491245, + "comment_id": 1535947186, + "created_at": "2023-05-05T08:59:34Z", + "repoId": 143328315, + "pullRequestNo": 5862 + }, + { + "name": "Murithijoshua", + "id": 37470288, + "comment_id": 1536201918, + "created_at": "2023-05-05T12:39:15Z", + "repoId": 143328315, + "pullRequestNo": 6004 + }, + { + "name": "chintu-1p", + "id": 109347119, + "comment_id": 1536257657, + "created_at": "2023-05-05T13:23:49Z", + "repoId": 143328315, + "pullRequestNo": 6005 + }, + { + "name": "captain0jay", + "id": 72175165, + "comment_id": 1536362546, + "created_at": "2023-05-05T14:39:15Z", + "repoId": 143328315, + "pullRequestNo": 6008 + }, + { + "name": "Cyber-Machine", + "id": 60005585, + "comment_id": 1537107341, + "created_at": "2023-05-06T10:04:03Z", + "repoId": 143328315, + "pullRequestNo": 6014 + }, + { + "name": "Cyber-Machine", + "id": 60005585, + "comment_id": 1537107723, + "created_at": "2023-05-06T10:05:56Z", + "repoId": 143328315, + "pullRequestNo": 6014 + }, + { + "name": "HahaBill", + "id": 32552798, + "comment_id": 1537260338, + "created_at": "2023-05-07T01:15:17Z", + "repoId": 143328315, + "pullRequestNo": 6018 + }, + { + "name": "rodnjes", + "id": 10062427, + "comment_id": 1537105530, + "created_at": "2023-05-06T09:55:12Z", + "repoId": 143328315, + "pullRequestNo": 6013 + }, + { + "name": "ScoobyP", + "id": 132776204, + "comment_id": 1537280161, + "created_at": "2023-05-07T03:37:20Z", + "repoId": 143328315, + "pullRequestNo": 6019 + }, + { + "name": "R-Yash", + "id": 94122883, + "comment_id": 1537409265, + "created_at": "2023-05-07T11:06:35Z", + "repoId": 143328315, + "pullRequestNo": 6022 + }, + { + "name": "R-Yash", + "id": 94122883, + "comment_id": 1537991507, + "created_at": "2023-05-08T08:50:13Z", + "repoId": 143328315, + "pullRequestNo": 6022 + }, + { + "name": "kaustubh-s1", + "id": 82315953, + "comment_id": 1537065281, + "created_at": "2023-05-06T06:22:41Z", + "repoId": 143328315, + "pullRequestNo": 6011 + }, + { + "name": "viniciusdsouza", + "id": 93347278, + "comment_id": 1538276254, + "created_at": "2023-05-08T12:25:58Z", + "repoId": 143328315, + "pullRequestNo": 6015 + }, + { + "name": "Jayeshparsnani", + "id": 59903769, + "comment_id": 1538660824, + "created_at": "2023-05-08T16:08:16Z", + "repoId": 143328315, + "pullRequestNo": 6020 + }, + { + "name": "RodriguezRob", + "id": 122117829, + "comment_id": 1538887809, + "created_at": "2023-05-08T19:01:32Z", + "repoId": 143328315, + "pullRequestNo": 6033 + }, + { + "name": "pierizvi", + "id": 98248598, + "comment_id": 1539470570, + "created_at": "2023-05-09T06:06:58Z", + "repoId": 143328315, + "pullRequestNo": 6034 + }, + { + "name": "jayesh-RN", + "id": 100137975, + "comment_id": 1543643810, + "created_at": "2023-05-11T09:20:45Z", + "repoId": 143328315, + "pullRequestNo": 6068 + }, + { + "name": "imrraaj", + "id": 71687258, + "comment_id": 1543691391, + "created_at": "2023-05-11T09:52:05Z", + "repoId": 143328315, + "pullRequestNo": 6072 + }, + { + "name": "vishalj0501", + "id": 92500255, + "comment_id": 1543901192, + "created_at": "2023-05-11T12:24:19Z", + "repoId": 143328315, + "pullRequestNo": 6069 + }, + { + "name": "adarsh-007", + "id": 35254020, + "comment_id": 1543941781, + "created_at": "2023-05-11T12:50:48Z", + "repoId": 143328315, + "pullRequestNo": 6098 + }, + { + "name": "Karan-Rajesh-Nair", + "id": 91654325, + "comment_id": 1544272617, + "created_at": "2023-05-11T16:06:55Z", + "repoId": 143328315, + "pullRequestNo": 6102 + }, + { + "name": "DeVcB13d", + "id": 98108853, + "comment_id": 1545065464, + "created_at": "2023-05-12T03:44:50Z", + "repoId": 143328315, + "pullRequestNo": 6104 + }, + { + "name": "hoipranav", + "id": 118387989, + "comment_id": 1545997949, + "created_at": "2023-05-12T16:27:30Z", + "repoId": 143328315, + "pullRequestNo": 6115 + }, + { + "name": "hoipranav", + "id": 118387989, + "comment_id": 1546025484, + "created_at": "2023-05-12T16:53:46Z", + "repoId": 143328315, + "pullRequestNo": 6115 + }, + { + "name": "Anandprabhu530", + "id": 97842562, + "comment_id": 1546658541, + "created_at": "2023-05-13T13:55:43Z", + "repoId": 143328315, + "pullRequestNo": 6118 + }, + { + "name": "Anandprabhu530", + "id": 97842562, + "comment_id": 1546659014, + "created_at": "2023-05-13T13:58:19Z", + "repoId": 143328315, + "pullRequestNo": 6118 + }, + { + "name": "Greatvictory24", + "id": 106877846, + "comment_id": 1546700506, + "created_at": "2023-05-13T16:05:40Z", + "repoId": 143328315, + "pullRequestNo": 6119 + }, + { + "name": "Greatvictory24", + "id": 106877846, + "comment_id": 1546706708, + "created_at": "2023-05-13T16:38:26Z", + "repoId": 143328315, + "pullRequestNo": 6119 + }, + { + "name": "TanayPawar", + "id": 133385300, + "comment_id": 1546709093, + "created_at": "2023-05-13T16:52:00Z", + "repoId": 143328315, + "pullRequestNo": 6120 + }, + { + "name": "TanayPawar", + "id": 133385300, + "comment_id": 1546709957, + "created_at": "2023-05-13T16:56:54Z", + "repoId": 143328315, + "pullRequestNo": 6120 + }, + { + "name": "Athesh007", + "id": 106463254, + "comment_id": 1547637043, + "created_at": "2023-05-15T10:57:22Z", + "repoId": 143328315, + "pullRequestNo": 6125 + }, + { + "name": "Athesh007", + "id": 106463254, + "comment_id": 1547637633, + "created_at": "2023-05-15T10:57:47Z", + "repoId": 143328315, + "pullRequestNo": 6125 + }, + { + "name": "Hip-po", + "id": 91091565, + "comment_id": 1548196886, + "created_at": "2023-05-15T16:42:31Z", + "repoId": 143328315, + "pullRequestNo": 6132 + }, + { + "name": "Hip-po", + "id": 91091565, + "comment_id": 1548199033, + "created_at": "2023-05-15T16:44:12Z", + "repoId": 143328315, + "pullRequestNo": 6132 + }, + { + "name": "energyperformer", + "id": 95025181, + "comment_id": 1548198976, + "created_at": "2023-05-15T16:44:09Z", + "repoId": 143328315, + "pullRequestNo": 6131 + }, + { + "name": "energyperformer", + "id": 95025181, + "comment_id": 1548204086, + "created_at": "2023-05-15T16:48:09Z", + "repoId": 143328315, + "pullRequestNo": 6131 + }, + { + "name": "abhisek-1221", + "id": 110292494, + "comment_id": 1549684170, + "created_at": "2023-05-16T13:32:24Z", + "repoId": 143328315, + "pullRequestNo": 6147 + }, + { + "name": "jajjibhai008", + "id": 86868918, + "comment_id": 1549736860, + "created_at": "2023-05-16T14:00:15Z", + "repoId": 143328315, + "pullRequestNo": 6145 + }, + { + "name": "AfaqShuaib09", + "id": 78806673, + "comment_id": 1550348046, + "created_at": "2023-05-16T20:53:57Z", + "repoId": 143328315, + "pullRequestNo": 6154 + }, + { + "name": "AfaqShuaib09", + "id": 78806673, + "comment_id": 1550354430, + "created_at": "2023-05-16T20:59:25Z", + "repoId": 143328315, + "pullRequestNo": 6154 + }, + { + "name": "giriprasathd", + "id": 68489853, + "comment_id": 1551120336, + "created_at": "2023-05-17T10:11:58Z", + "repoId": 143328315, + "pullRequestNo": 6163 + }, + { + "name": "giriprasathd", + "id": 68489853, + "comment_id": 1551147455, + "created_at": "2023-05-17T10:33:28Z", + "repoId": 143328315, + "pullRequestNo": 6163 + }, + { + "name": "makingsurgeon", + "id": 44074295, + "comment_id": 1550185160, + "created_at": "2023-05-16T18:45:31Z", + "repoId": 143328315, + "pullRequestNo": 6153 + }, + { + "name": "Ayobami6", + "id": 91608325, + "comment_id": 1553396576, + "created_at": "2023-05-18T17:38:19Z", + "repoId": 143328315, + "pullRequestNo": 6108 + }, + { + "name": "sumeetmpatil", + "id": 134072418, + "comment_id": 1554720501, + "created_at": "2023-05-19T15:00:25Z", + "repoId": 143328315, + "pullRequestNo": 6197 + }, + { + "name": "sumeetmpatil", + "id": 134072418, + "comment_id": 1554721598, + "created_at": "2023-05-19T15:01:13Z", + "repoId": 143328315, + "pullRequestNo": 6197 + }, + { + "name": "uuserf16", + "id": 130486698, + "comment_id": 1554747978, + "created_at": "2023-05-19T15:22:08Z", + "repoId": 143328315, + "pullRequestNo": 6198 + }, + { + "name": "deepakchethan", + "id": 20895544, + "comment_id": 1555408449, + "created_at": "2023-05-20T01:16:12Z", + "repoId": 143328315, + "pullRequestNo": 6202 + }, + { + "name": "mrkirthi-24", + "id": 53830546, + "comment_id": 1556068207, + "created_at": "2023-05-21T02:40:46Z", + "repoId": 143328315, + "pullRequestNo": 6207 + }, + { + "name": "mrkirthi-24", + "id": 53830546, + "comment_id": 1556068457, + "created_at": "2023-05-21T02:43:15Z", + "repoId": 143328315, + "pullRequestNo": 6207 + }, + { + "name": "smugii23", + "id": 133549747, + "comment_id": 1556027278, + "created_at": "2023-05-20T22:12:14Z", + "repoId": 143328315, + "pullRequestNo": 6206 + }, + { + "name": "simonkowalski1", + "id": 114826808, + "comment_id": 1556800342, + "created_at": "2023-05-22T08:45:46Z", + "repoId": 143328315, + "pullRequestNo": 6205 + }, + { + "name": "ya-sh-vardh-an", + "id": 111492054, + "comment_id": 1557062147, + "created_at": "2023-05-22T11:37:49Z", + "repoId": 143328315, + "pullRequestNo": 6209 + }, + { + "name": "codescalper", + "id": 92156721, + "comment_id": 1557078532, + "created_at": "2023-05-22T11:50:25Z", + "repoId": 143328315, + "pullRequestNo": 6211 + }, + { + "name": "DeltaProxima", + "id": 84025216, + "comment_id": 1557134790, + "created_at": "2023-05-22T12:28:33Z", + "repoId": 143328315, + "pullRequestNo": 6215 + }, + { + "name": "KetchupCodes", + "id": 81970610, + "comment_id": 1557385652, + "created_at": "2023-05-22T15:04:29Z", + "repoId": 143328315, + "pullRequestNo": 6217 + }, + { + "name": "RanvirChoudhary", + "id": 70624837, + "comment_id": 1557470851, + "created_at": "2023-05-22T15:52:26Z", + "repoId": 143328315, + "pullRequestNo": 6214 + }, + { + "name": "bornpsyche", + "id": 87824832, + "comment_id": 1559150005, + "created_at": "2023-05-23T12:01:20Z", + "repoId": 143328315, + "pullRequestNo": 6232 + }, + { + "name": "SandipGyawali", + "id": 66510112, + "comment_id": 1559249006, + "created_at": "2023-05-23T12:48:35Z", + "repoId": 143328315, + "pullRequestNo": 6218 + }, + { + "name": "abidurrahman11", + "id": 85896969, + "comment_id": 1559710421, + "created_at": "2023-05-23T15:49:20Z", + "repoId": 143328315, + "pullRequestNo": 6247 + }, + { + "name": "dhanpalrajpurohit", + "id": 43945901, + "comment_id": 1559805890, + "created_at": "2023-05-23T16:42:50Z", + "repoId": 143328315, + "pullRequestNo": 6249 + }, + { + "name": "aayush1204", + "id": 50989118, + "comment_id": 1561232064, + "created_at": "2023-05-24T14:08:04Z", + "repoId": 143328315, + "pullRequestNo": 6253 + }, + { + "name": "Nithin1728", + "id": 73475105, + "comment_id": 1561165760, + "created_at": "2023-05-24T13:34:36Z", + "repoId": 143328315, + "pullRequestNo": 6257 + }, + { + "name": "AyanDas348", + "id": 53610626, + "comment_id": 1561859363, + "created_at": "2023-05-24T20:05:49Z", + "repoId": 143328315, + "pullRequestNo": 6265 + }, + { + "name": "Anuraag-CH", + "id": 48093039, + "comment_id": 1561458825, + "created_at": "2023-05-24T15:58:53Z", + "repoId": 143328315, + "pullRequestNo": 6262 + }, + { + "name": "Anuraag-CH", + "id": 48093039, + "comment_id": 1561461125, + "created_at": "2023-05-24T15:59:51Z", + "repoId": 143328315, + "pullRequestNo": 6262 + }, + { + "name": "level14taken", + "id": 60062160, + "comment_id": 1562726064, + "created_at": "2023-05-25T11:16:43Z", + "repoId": 143328315, + "pullRequestNo": 6277 + }, + { + "name": "Sai-Suraj-27", + "id": 87087741, + "comment_id": 1562767928, + "created_at": "2023-05-25T11:50:11Z", + "repoId": 143328315, + "pullRequestNo": 6278 + }, + { + "name": "Coollaitar", + "id": 94162491, + "comment_id": 1562795568, + "created_at": "2023-05-25T12:10:06Z", + "repoId": 143328315, + "pullRequestNo": 6280 + }, + { + "name": "iriteshmishra", + "id": 96378085, + "comment_id": 1563194617, + "created_at": "2023-05-25T16:31:56Z", + "repoId": 143328315, + "pullRequestNo": 6284 + }, + { + "name": "nitheesh-daram", + "id": 54185106, + "comment_id": 1563216149, + "created_at": "2023-05-25T16:49:36Z", + "repoId": 143328315, + "pullRequestNo": 6287 + }, + { + "name": "frankiefab100", + "id": 46662771, + "comment_id": 1563418300, + "created_at": "2023-05-25T19:41:32Z", + "repoId": 143328315, + "pullRequestNo": 6288 + }, + { + "name": "rafskov", + "id": 25858030, + "comment_id": 1563823515, + "created_at": "2023-05-26T05:18:57Z", + "repoId": 143328315, + "pullRequestNo": 6293 + }, + { + "name": "mjtc1985", + "id": 25988639, + "comment_id": 1564090221, + "created_at": "2023-05-26T09:24:39Z", + "repoId": 143328315, + "pullRequestNo": 6301 + }, + { + "name": "vishal-sharma-369", + "id": 106011641, + "comment_id": 1564235772, + "created_at": "2023-05-26T11:16:05Z", + "repoId": 143328315, + "pullRequestNo": 6309 + }, + { + "name": "sunny0625", + "id": 76521579, + "comment_id": 1564591866, + "created_at": "2023-05-26T15:49:05Z", + "repoId": 143328315, + "pullRequestNo": 6315 + }, + { + "name": "nipunagarwal4235", + "id": 30228372, + "comment_id": 1564846738, + "created_at": "2023-05-26T19:40:35Z", + "repoId": 143328315, + "pullRequestNo": 6308 + }, + { + "name": "Aidan-G24", + "id": 78376342, + "comment_id": 1564908848, + "created_at": "2023-05-26T20:26:41Z", + "repoId": 143328315, + "pullRequestNo": 6290 + }, + { + "name": "marita2p", + "id": 17964497, + "comment_id": 1564940854, + "created_at": "2023-05-26T20:55:39Z", + "repoId": 143328315, + "pullRequestNo": 6317 + }, + { + "name": "suyogbud", + "id": 77386152, + "comment_id": 1566122973, + "created_at": "2023-05-28T12:35:04Z", + "repoId": 143328315, + "pullRequestNo": 6326 + }, + { + "name": "dishasatani", + "id": 93484193, + "comment_id": 1566142958, + "created_at": "2023-05-28T13:34:09Z", + "repoId": 143328315, + "pullRequestNo": 6327 + }, + { + "name": "yashpandey06", + "id": 97700473, + "comment_id": 1566204132, + "created_at": "2023-05-28T17:16:50Z", + "repoId": 143328315, + "pullRequestNo": 6329 + }, + { + "name": "viktoriussuwandi", + "id": 68414300, + "comment_id": 1566118888, + "created_at": "2023-05-28T12:19:40Z", + "repoId": 143328315, + "pullRequestNo": 6325 + }, + { + "name": "viktoriussuwandi", + "id": 68414300, + "comment_id": 1566124062, + "created_at": "2023-05-28T12:38:08Z", + "repoId": 143328315, + "pullRequestNo": 6325 + }, + { + "name": "viktoriussuwandi", + "id": 68414300, + "comment_id": 1566724245, + "created_at": "2023-05-29T08:03:07Z", + "repoId": 143328315, + "pullRequestNo": 6325 + }, + { + "name": "Unknownsentinel193", + "id": 63234449, + "comment_id": 1566161219, + "created_at": "2023-05-28T14:44:23Z", + "repoId": 143328315, + "pullRequestNo": 6328 + }, + { + "name": "chirag1718", + "id": 96980290, + "comment_id": 1567090764, + "created_at": "2023-05-29T12:41:46Z", + "repoId": 143328315, + "pullRequestNo": 6334 + }, + { + "name": "chirag1718", + "id": 96980290, + "comment_id": 1567168373, + "created_at": "2023-05-29T13:54:45Z", + "repoId": 143328315, + "pullRequestNo": 6334 + }, + { + "name": "iMPERIAL18", + "id": 70432088, + "comment_id": 1567164377, + "created_at": "2023-05-29T13:50:56Z", + "repoId": 143328315, + "pullRequestNo": 6333 + }, + { + "name": "BabaYaga1221", + "id": 86480450, + "comment_id": 1567492179, + "created_at": "2023-05-29T20:30:41Z", + "repoId": 143328315, + "pullRequestNo": 6324 + }, + { + "name": "Louiza02", + "id": 73340055, + "comment_id": 1568035760, + "created_at": "2023-05-30T08:54:28Z", + "repoId": 143328315, + "pullRequestNo": 6350 + }, + { + "name": "Aishwarya1396", + "id": 28436835, + "comment_id": 1568278608, + "created_at": "2023-05-30T11:36:24Z", + "repoId": 143328315, + "pullRequestNo": 6354 + }, + { + "name": "chandrakethan27", + "id": 90309231, + "comment_id": 1568505847, + "created_at": "2023-05-30T14:10:01Z", + "repoId": 143328315, + "pullRequestNo": 6371 + }, + { + "name": "chandrakethan27", + "id": 90309231, + "comment_id": 1568516092, + "created_at": "2023-05-30T14:16:06Z", + "repoId": 143328315, + "pullRequestNo": 6371 + }, + { + "name": "TheCodingDan", + "id": 125370749, + "comment_id": 1568611087, + "created_at": "2023-05-30T15:08:22Z", + "repoId": 143328315, + "pullRequestNo": 6370 + }, + { + "name": "JanaganSaravanan", + "id": 122015383, + "comment_id": 1568627140, + "created_at": "2023-05-30T15:18:15Z", + "repoId": 143328315, + "pullRequestNo": 6364 + }, + { + "name": "NikitaArd", + "id": 57872055, + "comment_id": 1568951414, + "created_at": "2023-05-30T19:18:20Z", + "repoId": 143328315, + "pullRequestNo": 6372 + }, + { + "name": "mosecund", + "id": 73141122, + "comment_id": 1569243266, + "created_at": "2023-05-30T22:58:37Z", + "repoId": 143328315, + "pullRequestNo": 6345 + }, + { + "name": "shravankshenoy", + "id": 29670290, + "comment_id": 1568783901, + "created_at": "2023-05-30T17:09:16Z", + "repoId": 143328315, + "pullRequestNo": 6373 + }, + { + "name": "warlegend24", + "id": 96477955, + "comment_id": 1570274440, + "created_at": "2023-05-31T13:48:39Z", + "repoId": 143328315, + "pullRequestNo": 6385 + }, + { + "name": "haiderzaidi07", + "id": 100717066, + "comment_id": 1571909048, + "created_at": "2023-06-01T11:53:05Z", + "repoId": 143328315, + "pullRequestNo": 6390 + }, + { + "name": "Himasnhu-AT", + "id": 117301124, + "comment_id": 1572034448, + "created_at": "2023-06-01T13:14:55Z", + "repoId": 143328315, + "pullRequestNo": 6408 + }, + { + "name": "Sekinat-oyero", + "id": 58215188, + "comment_id": 1572076381, + "created_at": "2023-06-01T13:41:00Z", + "repoId": 143328315, + "pullRequestNo": 6394 + }, + { + "name": "osubeav", + "id": 46883882, + "comment_id": 1572207636, + "created_at": "2023-06-01T14:52:37Z", + "repoId": 143328315, + "pullRequestNo": 6402 + }, + { + "name": "ChetanChoudhary007", + "id": 134824444, + "comment_id": 1572264225, + "created_at": "2023-06-01T15:25:12Z", + "repoId": 143328315, + "pullRequestNo": 6415 + }, + { + "name": "Mohiit70", + "id": 120316966, + "comment_id": 1572302741, + "created_at": "2023-06-01T15:47:12Z", + "repoId": 143328315, + "pullRequestNo": 6392 + }, + { + "name": "srilakshmipotnuru", + "id": 84777615, + "comment_id": 1572330330, + "created_at": "2023-06-01T16:04:01Z", + "repoId": 143328315, + "pullRequestNo": 6416 + }, + { + "name": "Maiz27", + "id": 91534137, + "comment_id": 1572433991, + "created_at": "2023-06-01T17:00:28Z", + "repoId": 143328315, + "pullRequestNo": 6388 + }, + { + "name": "puhung", + "id": 74637475, + "comment_id": 1572562774, + "created_at": "2023-06-01T18:16:03Z", + "repoId": 143328315, + "pullRequestNo": 6397 + }, + { + "name": "ankit-dahal", + "id": 86546199, + "comment_id": 1573428654, + "created_at": "2023-06-02T09:24:41Z", + "repoId": 143328315, + "pullRequestNo": 6424 + }, + { + "name": "CountGermain", + "id": 134556666, + "comment_id": 1573729687, + "created_at": "2023-06-02T13:23:46Z", + "repoId": 143328315, + "pullRequestNo": 6353 + }, + { + "name": "AMK9978", + "id": 35371206, + "comment_id": 1573810571, + "created_at": "2023-06-02T14:14:22Z", + "repoId": 143328315, + "pullRequestNo": 6432 + }, + { + "name": "AMK9978", + "id": 35371206, + "comment_id": 1573820018, + "created_at": "2023-06-02T14:20:45Z", + "repoId": 143328315, + "pullRequestNo": 6432 + }, + { + "name": "psmail147", + "id": 35422444, + "comment_id": 1573860372, + "created_at": "2023-06-02T14:48:51Z", + "repoId": 143328315, + "pullRequestNo": 6430 + }, + { + "name": "ananyabhat29", + "id": 114275490, + "comment_id": 1573935632, + "created_at": "2023-06-02T15:34:09Z", + "repoId": 143328315, + "pullRequestNo": 6433 + }, + { + "name": "klorine28", + "id": 111317991, + "comment_id": 1574066145, + "created_at": "2023-06-02T17:18:17Z", + "repoId": 143328315, + "pullRequestNo": 6435 + }, + { + "name": "mecitsemerci", + "id": 36036391, + "comment_id": 1574084208, + "created_at": "2023-06-02T17:33:52Z", + "repoId": 143328315, + "pullRequestNo": 6436 + }, + { + "name": "mitulghediya", + "id": 121938832, + "comment_id": 1574141344, + "created_at": "2023-06-02T18:24:03Z", + "repoId": 143328315, + "pullRequestNo": 6426 + }, + { + "name": "AD748", + "id": 97102484, + "comment_id": 1577127094, + "created_at": "2023-06-05T16:40:02Z", + "repoId": 143328315, + "pullRequestNo": 6458 + }, + { + "name": "Ganderse", + "id": 93227573, + "comment_id": 1577208145, + "created_at": "2023-06-05T17:39:58Z", + "repoId": 143328315, + "pullRequestNo": 6460 + }, + { + "name": "Ganderse", + "id": 93227573, + "comment_id": 1577209377, + "created_at": "2023-06-05T17:41:02Z", + "repoId": 143328315, + "pullRequestNo": 6460 + }, + { + "name": "MahenderPoshaboina", + "id": 75716439, + "comment_id": 1577289352, + "created_at": "2023-06-05T18:44:52Z", + "repoId": 143328315, + "pullRequestNo": 6462 + }, + { + "name": "MahenderPoshaboina", + "id": 75716439, + "comment_id": 1577302296, + "created_at": "2023-06-05T18:55:58Z", + "repoId": 143328315, + "pullRequestNo": 6462 + }, + { + "name": "AhmedHHamdy", + "id": 82416131, + "comment_id": 1577432423, + "created_at": "2023-06-05T20:30:15Z", + "repoId": 143328315, + "pullRequestNo": 6391 + }, + { + "name": "jssonx", + "id": 113316112, + "comment_id": 1577248890, + "created_at": "2023-06-05T18:10:06Z", + "repoId": 143328315, + "pullRequestNo": 6461 + }, + { + "name": "CYBWEBALI", + "id": 88965204, + "comment_id": 1578397630, + "created_at": "2023-06-06T10:32:00Z", + "repoId": 143328315, + "pullRequestNo": 6468 + }, + { + "name": "pravintargaryen", + "id": 96950453, + "comment_id": 1578395625, + "created_at": "2023-06-06T10:31:34Z", + "repoId": 143328315, + "pullRequestNo": 6459 + }, + { + "name": "NishitSingh2023", + "id": 43803790, + "comment_id": 1578072325, + "created_at": "2023-06-06T07:25:50Z", + "repoId": 143328315, + "pullRequestNo": 6465 + }, + { + "name": "nitin-pandita", + "id": 91310284, + "comment_id": 1578565469, + "created_at": "2023-06-06T11:38:49Z", + "repoId": 143328315, + "pullRequestNo": 6440 + }, + { + "name": "nayangoyal", + "id": 101893656, + "comment_id": 1578636904, + "created_at": "2023-06-06T12:05:39Z", + "repoId": 143328315, + "pullRequestNo": 6473 + }, + { + "name": "themoonrider", + "id": 76418181, + "comment_id": 1578807105, + "created_at": "2023-06-06T13:49:39Z", + "repoId": 143328315, + "pullRequestNo": 6451 + }, + { + "name": "sudoevans", + "id": 75899973, + "comment_id": 1579084506, + "created_at": "2023-06-06T16:24:55Z", + "repoId": 143328315, + "pullRequestNo": 6478 + }, + { + "name": "anjali29singh", + "id": 94233830, + "comment_id": 1579809140, + "created_at": "2023-06-07T03:15:57Z", + "repoId": 143328315, + "pullRequestNo": 6476 + }, + { + "name": "RenatBl", + "id": 45810272, + "comment_id": 1580800302, + "created_at": "2023-06-07T13:18:01Z", + "repoId": 143328315, + "pullRequestNo": 6492 + }, + { + "name": "anurag-rajawat", + "id": 94977678, + "comment_id": 1582061762, + "created_at": "2023-06-08T07:39:20Z", + "repoId": 143328315, + "pullRequestNo": 6498 + }, + { + "name": "shaad00", + "id": 124558510, + "comment_id": 1582654960, + "created_at": "2023-06-08T14:13:35Z", + "repoId": 143328315, + "pullRequestNo": 6510 + }, + { + "name": "shaad00", + "id": 124558510, + "comment_id": 1582656953, + "created_at": "2023-06-08T14:14:46Z", + "repoId": 143328315, + "pullRequestNo": 6510 + }, + { + "name": "karthikmurali60", + "id": 30801730, + "comment_id": 1583106155, + "created_at": "2023-06-08T18:02:20Z", + "repoId": 143328315, + "pullRequestNo": 6497 + }, + { + "name": "kunaljubce", + "id": 34453918, + "comment_id": 1584576039, + "created_at": "2023-06-09T13:27:58Z", + "repoId": 143328315, + "pullRequestNo": 6517 + }, + { + "name": "Saurav-Pant", + "id": 103263909, + "comment_id": 1585431872, + "created_at": "2023-06-10T02:35:12Z", + "repoId": 143328315, + "pullRequestNo": 6526 + }, + { + "name": "Pawel1894", + "id": 45789222, + "comment_id": 1586882650, + "created_at": "2023-06-12T08:54:37Z", + "repoId": 143328315, + "pullRequestNo": 6495 + }, + { + "name": "ansarisaqlain987", + "id": 35418972, + "comment_id": 1586922303, + "created_at": "2023-06-12T09:11:28Z", + "repoId": 143328315, + "pullRequestNo": 6525 + }, + { + "name": "gajeshbhat", + "id": 16153045, + "comment_id": 1585773825, + "created_at": "2023-06-10T19:02:29Z", + "repoId": 143328315, + "pullRequestNo": 6539 + }, + { + "name": "gajeshbhat", + "id": 16153045, + "comment_id": 1586955470, + "created_at": "2023-06-12T09:31:03Z", + "repoId": 143328315, + "pullRequestNo": 6539 + }, + { + "name": "alperentahta", + "id": 35815814, + "comment_id": 1587648467, + "created_at": "2023-06-12T16:13:26Z", + "repoId": 143328315, + "pullRequestNo": 6555 + }, + { + "name": "ayushrathore111", + "id": 94514710, + "comment_id": 1590627262, + "created_at": "2023-06-14T07:26:47Z", + "repoId": 143328315, + "pullRequestNo": 6532 + }, + { + "name": "Devazc", + "id": 122866331, + "comment_id": 1590549856, + "created_at": "2023-06-14T06:24:39Z", + "repoId": 143328315, + "pullRequestNo": 6587 + }, + { + "name": "akj2018", + "id": 43956935, + "comment_id": 1593813121, + "created_at": "2023-06-15T22:44:19Z", + "repoId": 143328315, + "pullRequestNo": 6596 + }, + { + "name": "truskovskiyk", + "id": 7893705, + "comment_id": 1594494194, + "created_at": "2023-06-16T10:55:59Z", + "repoId": 143328315, + "pullRequestNo": 6620 + }, + { + "name": "Aman123lug", + "id": 94223645, + "comment_id": 1594700571, + "created_at": "2023-06-16T13:44:38Z", + "repoId": 143328315, + "pullRequestNo": 6546 + }, + { + "name": "AggelosK26", + "id": 72800362, + "comment_id": 1597121991, + "created_at": "2023-06-19T12:43:33Z", + "repoId": 143328315, + "pullRequestNo": 6630 + }, + { + "name": "AggelosK26", + "id": 72800362, + "comment_id": 1597125002, + "created_at": "2023-06-19T12:45:50Z", + "repoId": 143328315, + "pullRequestNo": 6630 + }, + { + "name": "Swpn0neel", + "id": 121167506, + "comment_id": 1597156617, + "created_at": "2023-06-19T13:04:47Z", + "repoId": 143328315, + "pullRequestNo": 6631 + }, + { + "name": "atharva-satpute", + "id": 55058959, + "comment_id": 1598042942, + "created_at": "2023-06-20T03:01:39Z", + "repoId": 143328315, + "pullRequestNo": 6624 + }, + { + "name": "msc9169", + "id": 43228162, + "comment_id": 1606355175, + "created_at": "2023-06-26T00:23:51Z", + "repoId": 143328315, + "pullRequestNo": 6665 + }, + { + "name": "KrithinK", + "id": 96982839, + "comment_id": 1604522301, + "created_at": "2023-06-23T16:31:22Z", + "repoId": 143328315, + "pullRequestNo": 6661 + }, + { + "name": "Shadowpii", + "id": 61053926, + "comment_id": 1607629798, + "created_at": "2023-06-26T14:39:18Z", + "repoId": 143328315, + "pullRequestNo": 6674 + }, + { + "name": "PetNuke", + "id": 135397995, + "comment_id": 1607818467, + "created_at": "2023-06-26T16:22:59Z", + "repoId": 143328315, + "pullRequestNo": 6480 + }, + { + "name": "shaswat-satyam", + "id": 70892928, + "comment_id": 1607956137, + "created_at": "2023-06-26T17:54:57Z", + "repoId": 143328315, + "pullRequestNo": 6679 + }, + { + "name": "avibhawnani", + "id": 88795320, + "comment_id": 1609194686, + "created_at": "2023-06-27T10:05:16Z", + "repoId": 143328315, + "pullRequestNo": 6688 + }, + { + "name": "voronov007", + "id": 2511018, + "comment_id": 1609225700, + "created_at": "2023-06-27T10:26:27Z", + "repoId": 143328315, + "pullRequestNo": 6689 + }, + { + "name": "voronov007", + "id": 2511018, + "comment_id": 1609231550, + "created_at": "2023-06-27T10:30:33Z", + "repoId": 143328315, + "pullRequestNo": 6689 + }, + { + "name": "saakshiraut28", + "id": 61418965, + "comment_id": 1609419535, + "created_at": "2023-06-27T12:37:30Z", + "repoId": 143328315, + "pullRequestNo": 6683 + }, + { + "name": "optrudra", + "id": 72190416, + "comment_id": 1609439713, + "created_at": "2023-06-27T12:50:26Z", + "repoId": 143328315, + "pullRequestNo": 6682 + }, + { + "name": "Rhythm-08", + "id": 64489317, + "comment_id": 1609735359, + "created_at": "2023-06-27T15:21:41Z", + "repoId": 143328315, + "pullRequestNo": 6681 + }, + { + "name": "AdarPeleg", + "id": 113725510, + "comment_id": 1611335332, + "created_at": "2023-06-28T12:45:27Z", + "repoId": 143328315, + "pullRequestNo": 6710 + }, + { + "name": "ndurumo254", + "id": 51784725, + "comment_id": 1611490086, + "created_at": "2023-06-28T14:11:40Z", + "repoId": 143328315, + "pullRequestNo": 6711 + }, + { + "name": "ItIsOHM", + "id": 62976081, + "comment_id": 1611804792, + "created_at": "2023-06-28T17:19:40Z", + "repoId": 143328315, + "pullRequestNo": 6715 + }, + { + "name": "KelvinBrannonJr", + "id": 26827701, + "comment_id": 1612006596, + "created_at": "2023-06-28T19:44:42Z", + "repoId": 143328315, + "pullRequestNo": 6717 + }, + { + "name": "chenikabukes", + "id": 93630152, + "comment_id": 1612013981, + "created_at": "2023-06-28T19:51:27Z", + "repoId": 143328315, + "pullRequestNo": 6712 + }, + { + "name": "ScriptHound", + "id": 24416779, + "comment_id": 1612826609, + "created_at": "2023-06-29T10:32:49Z", + "repoId": 143328315, + "pullRequestNo": 6720 + }, + { + "name": "dgit11", + "id": 31642783, + "comment_id": 1612084812, + "created_at": "2023-06-28T20:47:30Z", + "repoId": 143328315, + "pullRequestNo": 6716 + }, + { + "name": "mariareedstrom", + "id": 74778527, + "comment_id": 1611796457, + "created_at": "2023-06-28T17:13:07Z", + "repoId": 143328315, + "pullRequestNo": 6714 + }, + { + "name": "mehboobali98", + "id": 57248707, + "comment_id": 1611825264, + "created_at": "2023-06-28T17:36:27Z", + "repoId": 143328315, + "pullRequestNo": 6713 + }, + { + "name": "Baka-14", + "id": 73593914, + "comment_id": 1613785519, + "created_at": "2023-06-29T20:42:58Z", + "repoId": 143328315, + "pullRequestNo": 6718 + }, + { + "name": "jayminwest", + "id": 28354219, + "comment_id": 1613588111, + "created_at": "2023-06-29T18:00:51Z", + "repoId": 143328315, + "pullRequestNo": 6727 + }, + { + "name": "jinzu1996", + "id": 91796302, + "comment_id": 1615277182, + "created_at": "2023-06-30T23:36:58Z", + "repoId": 143328315, + "pullRequestNo": 6737 + }, + { + "name": "jinzu1996", + "id": 91796302, + "comment_id": 1615277982, + "created_at": "2023-06-30T23:39:21Z", + "repoId": 143328315, + "pullRequestNo": 6737 + }, + { + "name": "singh1203", + "id": 72030498, + "comment_id": 1618931117, + "created_at": "2023-07-03T17:39:10Z", + "repoId": 143328315, + "pullRequestNo": 6740 + }, + { + "name": "singh1203", + "id": 72030498, + "comment_id": 1618932874, + "created_at": "2023-07-03T17:40:43Z", + "repoId": 143328315, + "pullRequestNo": 6740 + }, + { + "name": "salimcodes", + "id": 64667212, + "comment_id": 1620311226, + "created_at": "2023-07-04T14:05:02Z", + "repoId": 143328315, + "pullRequestNo": 6744 + }, + { + "name": "rajenderthota", + "id": 8196242, + "comment_id": 1620594260, + "created_at": "2023-07-04T18:09:08Z", + "repoId": 143328315, + "pullRequestNo": 6752 + }, + { + "name": "Rythm18", + "id": 95532666, + "comment_id": 1623575885, + "created_at": "2023-07-06T12:13:41Z", + "repoId": 143328315, + "pullRequestNo": 6786 + }, + { + "name": "Crawfish-h", + "id": 67644623, + "comment_id": 1624449692, + "created_at": "2023-07-06T23:57:54Z", + "repoId": 143328315, + "pullRequestNo": 6729 + }, + { + "name": "Movindu01", + "id": 95605710, + "comment_id": 1627352354, + "created_at": "2023-07-08T14:36:07Z", + "repoId": 143328315, + "pullRequestNo": 6754 + }, + { + "name": "MichaelDacanay", + "id": 18317412, + "comment_id": 1634157401, + "created_at": "2023-07-13T12:28:23Z", + "repoId": 143328315, + "pullRequestNo": 6820 + }, + { + "name": "SAPNILPATEL", + "id": 87861899, + "comment_id": 1635607227, + "created_at": "2023-07-14T09:51:32Z", + "repoId": 143328315, + "pullRequestNo": 6844 + }, + { + "name": "rmaceissoft", + "id": 476427, + "comment_id": 1638484578, + "created_at": "2023-07-17T16:33:26Z", + "repoId": 143328315, + "pullRequestNo": 6748 + }, + { + "name": "jeffchuber", + "id": 891664, + "comment_id": 1640477857, + "created_at": "2023-07-18T15:41:19Z", + "repoId": 143328315, + "pullRequestNo": 6868 + }, + { + "name": "ludovicolc", + "id": 105851039, + "comment_id": 1655408815, + "created_at": "2023-07-28T09:54:46Z", + "repoId": 143328315, + "pullRequestNo": 6972 + }, + { + "name": "pieterhumphrey", + "id": 959913, + "comment_id": 1668124066, + "created_at": "2023-08-07T15:45:51Z", + "repoId": 143328315, + "pullRequestNo": 7004 + }, + { + "name": "0o001", + "id": 4294069, + "comment_id": 1686460763, + "created_at": "2023-08-21T14:39:40Z", + "repoId": 143328315, + "pullRequestNo": 7136 + }, + { + "name": "Mr-Destructive", + "id": 40317114, + "comment_id": 1687999549, + "created_at": "2023-08-22T11:23:57Z", + "repoId": 143328315, + "pullRequestNo": 7158 + }, + { + "name": "mayank2130", + "id": 124957319, + "comment_id": 1691483434, + "created_at": "2023-08-24T11:14:30Z", + "repoId": 143328315, + "pullRequestNo": 7168 + }, + { + "name": "truesoni", + "id": 75825350, + "comment_id": 1710273590, + "created_at": "2023-09-07T14:39:19Z", + "repoId": 143328315, + "pullRequestNo": 7271 + }, + { + "name": "work-mohit", + "id": 46566524, + "comment_id": 1737336052, + "created_at": "2023-09-27T12:51:27Z", + "repoId": 143328315, + "pullRequestNo": 7430 + }, + { + "name": "harshavardhan-b20", + "id": 113964278, + "comment_id": 1742944565, + "created_at": "2023-10-02T12:42:07Z", + "repoId": 143328315, + "pullRequestNo": 7464 + }, + { + "name": "Better-Boy", + "id": 19553184, + "comment_id": 1744676015, + "created_at": "2023-10-03T10:25:39Z", + "repoId": 143328315, + "pullRequestNo": 7494 + }, + { + "name": "issamarabi", + "id": 82658709, + "comment_id": 1746578691, + "created_at": "2023-10-04T10:22:44Z", + "repoId": 143328315, + "pullRequestNo": 7524 + }, + { + "name": "aditya-azad", + "id": 26451004, + "comment_id": 1746841960, + "created_at": "2023-10-04T13:06:21Z", + "repoId": 143328315, + "pullRequestNo": 7527 + }, + { + "name": "Daddypastor", + "id": 68669639, + "comment_id": 1747294240, + "created_at": "2023-10-04T16:55:51Z", + "repoId": 143328315, + "pullRequestNo": 7548 + }, + { + "name": "abhijitpal1247", + "id": 69110711, + "comment_id": 1747633831, + "created_at": "2023-10-04T21:00:31Z", + "repoId": 143328315, + "pullRequestNo": 7551 + }, + { + "name": "yellow-raven", + "id": 38894627, + "comment_id": 1749451317, + "created_at": "2023-10-05T18:41:09Z", + "repoId": 143328315, + "pullRequestNo": 7581 + }, + { + "name": "pavloshushkov", + "id": 23094949, + "comment_id": 1749081468, + "created_at": "2023-10-05T14:58:30Z", + "repoId": 143328315, + "pullRequestNo": 7534 + }, + { + "name": "AvaterClasher", + "id": 116944847, + "comment_id": 1750724664, + "created_at": "2023-10-06T13:56:17Z", + "repoId": 143328315, + "pullRequestNo": 7591 + }, + { + "name": "VrajPatelGitHub", + "id": 98619871, + "comment_id": 1751722521, + "created_at": "2023-10-07T14:10:18Z", + "repoId": 143328315, + "pullRequestNo": 7613 + }, + { + "name": "maulanaakbardj", + "id": 67249292, + "comment_id": 1752051579, + "created_at": "2023-10-08T15:13:28Z", + "repoId": 143328315, + "pullRequestNo": 7632 + }, + { + "name": "DidierRLopes", + "id": 25267873, + "comment_id": 1753255602, + "created_at": "2023-10-09T15:46:18Z", + "repoId": 143328315, + "pullRequestNo": 7621 + }, + { + "name": "jspisak", + "id": 11398925, + "comment_id": 1753230583, + "created_at": "2023-10-09T15:30:20Z", + "repoId": 143328315, + "pullRequestNo": 7642 + }, + { + "name": "rojin254", + "id": 46747837, + "comment_id": 1755262658, + "created_at": "2023-10-10T12:16:18Z", + "repoId": 143328315, + "pullRequestNo": 7666 + }, + { + "name": "rabroldan", + "id": 141264553, + "comment_id": 1757819682, + "created_at": "2023-10-11T14:29:50Z", + "repoId": 143328315, + "pullRequestNo": 7685 + }, + { + "name": "HarshDeswal", + "id": 94471009, + "comment_id": 1759474270, + "created_at": "2023-10-12T12:04:06Z", + "repoId": 143328315, + "pullRequestNo": 7721 + }, + { + "name": "dalalvarun", + "id": 70593335, + "comment_id": 1762784009, + "created_at": "2023-10-14T10:04:33Z", + "repoId": 143328315, + "pullRequestNo": 7771 + }, + { + "name": "Tanmai2002", + "id": 40868910, + "comment_id": 1762922920, + "created_at": "2023-10-14T13:55:45Z", + "repoId": 143328315, + "pullRequestNo": 7767 + }, + { + "name": "Sohlar", + "id": 14099196, + "comment_id": 1763041882, + "created_at": "2023-10-14T17:01:52Z", + "repoId": 143328315, + "pullRequestNo": 7772 + }, + { + "name": "craigouma", + "id": 113303653, + "comment_id": 1764588923, + "created_at": "2023-10-16T14:20:45Z", + "repoId": 143328315, + "pullRequestNo": 7808 + }, + { + "name": "HarshMN2345", + "id": 127186841, + "comment_id": 1764615656, + "created_at": "2023-10-16T14:33:54Z", + "repoId": 143328315, + "pullRequestNo": 7785 + }, + { + "name": "ajratnam", + "id": 90889682, + "comment_id": 1764777864, + "created_at": "2023-10-16T15:47:38Z", + "repoId": 143328315, + "pullRequestNo": 7795 + }, + { + "name": "toastx", + "id": 85751209, + "comment_id": 1764893368, + "created_at": "2023-10-16T16:55:49Z", + "repoId": 143328315, + "pullRequestNo": 7821 + }, + { + "name": "Anush008", + "id": 46051506, + "comment_id": 1766206413, + "created_at": "2023-10-17T11:18:15Z", + "repoId": 143328315, + "pullRequestNo": 7833 + }, + { + "name": "SusheelThapa", + "id": 83917129, + "comment_id": 1766568137, + "created_at": "2023-10-17T14:44:35Z", + "repoId": 143328315, + "pullRequestNo": 7830 + }, + { + "name": "Kamalesh-Seervi", + "id": 107933310, + "comment_id": 1766220546, + "created_at": "2023-10-17T11:27:59Z", + "repoId": 143328315, + "pullRequestNo": 7829 + }, + { + "name": "someshfengde", + "id": 42097653, + "comment_id": 1768753259, + "created_at": "2023-10-18T15:37:22Z", + "repoId": 143328315, + "pullRequestNo": 7841 + }, + { + "name": "elizabethsiegle", + "id": 8932430, + "comment_id": 1771333756, + "created_at": "2023-10-19T16:28:57Z", + "repoId": 143328315, + "pullRequestNo": 7881 + }, + { + "name": "Aadish1233", + "id": 120332757, + "comment_id": 1771501789, + "created_at": "2023-10-19T18:24:59Z", + "repoId": 143328315, + "pullRequestNo": 7885 + }, + { + "name": "adeyinkaezra123", + "id": 65364356, + "comment_id": 1772476267, + "created_at": "2023-10-20T10:20:35Z", + "repoId": 143328315, + "pullRequestNo": 7919 + }, + { + "name": "SrijanSahaySrivastava", + "id": 70461251, + "comment_id": 1774173313, + "created_at": "2023-10-22T19:03:48Z", + "repoId": 143328315, + "pullRequestNo": 7960 + }, + { + "name": "nehaal10", + "id": 72294250, + "comment_id": 1774302753, + "created_at": "2023-10-23T01:42:11Z", + "repoId": 143328315, + "pullRequestNo": 7971 + }, + { + "name": "ritwickrajmakhal", + "id": 100060023, + "comment_id": 1777022399, + "created_at": "2023-10-24T11:26:51Z", + "repoId": 143328315, + "pullRequestNo": 8030 + }, + { + "name": "Ayush-Prabhu", + "id": 126278585, + "comment_id": 1777032268, + "created_at": "2023-10-24T11:34:07Z", + "repoId": 143328315, + "pullRequestNo": 7939 + }, + { + "name": "mobley-trent", + "id": 67474838, + "comment_id": 1780736181, + "created_at": "2023-10-26T09:21:21Z", + "repoId": 143328315, + "pullRequestNo": 8082 + }, + { + "name": "libklein", + "id": 42714034, + "comment_id": 1781622552, + "created_at": "2023-10-26T18:20:11Z", + "repoId": 143328315, + "pullRequestNo": 7968 + }, + { + "name": "syed-m-osama", + "id": 83537384, + "comment_id": 1782256362, + "created_at": "2023-10-27T04:05:10Z", + "repoId": 143328315, + "pullRequestNo": 7799 + }, + { + "name": "faria-karim-porna", + "id": 67676724, + "comment_id": 1785212924, + "created_at": "2023-10-30T13:35:00Z", + "repoId": 143328315, + "pullRequestNo": 8182 + }, + { + "name": "jason136", + "id": 33842515, + "comment_id": 1786481743, + "created_at": "2023-10-31T05:39:06Z", + "repoId": 143328315, + "pullRequestNo": 8170 + }, + { + "name": "bustedware", + "id": 7598211, + "comment_id": 1785116450, + "created_at": "2023-10-30T12:46:04Z", + "repoId": 143328315, + "pullRequestNo": 8163 + }, + { + "name": "minakshisharma197", + "id": 184736207, + "comment_id": 2413433683, + "created_at": "2024-10-15T09:55:40Z", + "repoId": 143328315, + "pullRequestNo": 9865 + }, + { + "name": "divyakhatiyan", + "id": 141419850, + "comment_id": 2417330560, + "created_at": "2024-10-16T16:28:34Z", + "repoId": 143328315, + "pullRequestNo": 9899 + }, + { + "name": "Sekhar-Kumar-Dash", + "id": 119131588, + "comment_id": 2419495274, + "created_at": "2024-10-17T13:05:15Z", + "repoId": 143328315, + "pullRequestNo": 9914 + }, + { + "name": "kom-senapati", + "id": 92045934, + "comment_id": 2423485137, + "created_at": "2024-10-19T02:28:49Z", + "repoId": 143328315, + "pullRequestNo": 9807 + }, + { + "name": "RiyanaD", + "id": 117534139, + "comment_id": 2420766574, + "created_at": "2024-10-17T22:54:53Z", + "repoId": 143328315, + "pullRequestNo": 9427 + }, + { + "name": "narengogi", + "id": 47327611, + "comment_id": 2296396377, + "created_at": "2024-08-19T11:55:54Z", + "repoId": 143328315, + "pullRequestNo": 9641 + }, + { + "name": "PatLittle", + "id": 31454591, + "comment_id": 2425743649, + "created_at": "2024-10-21T06:49:47Z", + "repoId": 143328315, + "pullRequestNo": 9962 + }, + { + "name": "panoskyriakis", + "id": 134383572, + "comment_id": 2317914456, + "created_at": "2024-08-29T14:39:56Z", + "repoId": 143328315, + "pullRequestNo": 9654 + }, + { + "name": "lucas-koontz", + "id": 7515210, + "comment_id": 2428585608, + "created_at": "2024-10-22T08:19:54Z", + "repoId": 143328315, + "pullRequestNo": 9976 + }, + { + "name": "Tryxns", + "id": 10586708, + "comment_id": 2433530462, + "created_at": "2024-10-23T21:51:00Z", + "repoId": 143328315, + "pullRequestNo": 9975 + }, + { + "name": "DhanushNehru", + "id": 22955675, + "comment_id": 2438155935, + "created_at": "2024-10-25T15:40:09Z", + "repoId": 143328315, + "pullRequestNo": 10047 + }, + { + "name": "TalaatHasanin", + "id": 105648065, + "comment_id": 2439488990, + "created_at": "2024-10-26T10:54:04Z", + "repoId": 143328315, + "pullRequestNo": 9726 + }, + { + "name": "AkashJana18", + "id": 103350981, + "comment_id": 2442254462, + "created_at": "2024-10-28T17:52:47Z", + "repoId": 143328315, + "pullRequestNo": 10073 + }, + { + "name": "prajwal-pai77", + "id": 108796209, + "comment_id": 2445980761, + "created_at": "2024-10-30T06:33:47Z", + "repoId": 143328315, + "pullRequestNo": 10039 + }, + { + "name": "JanumalaAkhilendra", + "id": 82641474, + "comment_id": 2446791257, + "created_at": "2024-10-30T11:43:16Z", + "repoId": 143328315, + "pullRequestNo": 10051 + }, + { + "name": "herjanice", + "id": 72483795, + "comment_id": 2370891577, + "created_at": "2024-09-24T10:33:26Z", + "repoId": 143328315, + "pullRequestNo": 9727 + }, + { + "name": "mabderrahim", + "id": 20402768, + "comment_id": 2377340466, + "created_at": "2024-09-26T15:48:00Z", + "repoId": 143328315, + "pullRequestNo": 9727 + }, + { + "name": "mohamed-abderrahim3", + "id": 183199390, + "comment_id": 2380593605, + "created_at": "2024-09-28T10:19:38Z", + "repoId": 143328315, + "pullRequestNo": 9727 + }, + { + "name": "chuangyeshuo", + "id": 14370480, + "comment_id": 2449017804, + "created_at": "2024-10-31T05:05:38Z", + "repoId": 143328315, + "pullRequestNo": 10099 + }, + { + "name": "md-abid-hussain", + "id": 101964499, + "comment_id": 2449303679, + "created_at": "2024-10-31T08:26:54Z", + "repoId": 143328315, + "pullRequestNo": 10100 + }, + { + "name": "poisonvine", + "id": 179939949, + "comment_id": 2408223847, + "created_at": "2024-10-11T23:08:39Z", + "repoId": 143328315, + "pullRequestNo": 9833 + }, + { + "name": "code-vine", + "id": 95056519, + "comment_id": 2408235943, + "created_at": "2024-10-11T23:31:03Z", + "repoId": 143328315, + "pullRequestNo": 9833 + }, + { + "name": "poisonvine", + "id": 179939949, + "comment_id": 2463687190, + "created_at": "2024-11-08T03:30:34Z", + "repoId": 143328315, + "pullRequestNo": 9833 + }, + { + "name": "vishwamartur", + "id": 64204611, + "comment_id": 2480506920, + "created_at": "2024-11-16T10:24:05Z", + "repoId": 143328315, + "pullRequestNo": 10176 + }, + { + "name": "UTSAVS26", + "id": 119779889, + "comment_id": 2482548112, + "created_at": "2024-11-18T10:15:35Z", + "repoId": 143328315, + "pullRequestNo": 10182 + }, + { + "name": "fshabashev", + "id": 6548211, + "comment_id": 2482924022, + "created_at": "2024-11-18T12:36:59Z", + "repoId": 143328315, + "pullRequestNo": 10153 + }, + { + "name": "GTgyani206", + "id": 128274569, + "comment_id": 2407637789, + "created_at": "2024-10-11T15:20:07Z", + "repoId": 143328315, + "pullRequestNo": 9832 + }, + { + "name": "QuantumPlumber", + "id": 44450703, + "comment_id": 2521508302, + "created_at": "2024-12-05T21:39:15Z", + "repoId": 143328315, + "pullRequestNo": 10243 + }, + { + "name": "Abdusshh", + "id": 101020733, + "comment_id": 2525127867, + "created_at": "2024-12-07T13:40:48Z", + "repoId": 143328315, + "pullRequestNo": 10253 + }, + { + "name": "cliffordp", + "id": 1812179, + "comment_id": 2540449382, + "created_at": "2024-12-13T03:21:48Z", + "repoId": 143328315, + "pullRequestNo": 10285 + }, + { + "name": "abhirajadhikary06", + "id": 171187625, + "comment_id": 2563775672, + "created_at": "2024-12-27T14:55:52Z", + "repoId": 143328315, + "pullRequestNo": 10331 + }, + { + "name": "jbrass", + "id": 125982, + "comment_id": 2587312474, + "created_at": "2025-01-13T14:50:21Z", + "repoId": 143328315, + "pullRequestNo": 10355 + }, + { + "name": "dj013", + "id": 47425755, + "comment_id": 2593267189, + "created_at": "2025-01-15T15:43:10Z", + "repoId": 143328315, + "pullRequestNo": 10371 + }, + { + "name": "juliette0704", + "id": 91728573, + "comment_id": 2609377887, + "created_at": "2025-01-23T10:01:31Z", + "repoId": 143328315, + "pullRequestNo": 10395 + }, + { + "name": "ivancastanop", + "id": 107499323, + "comment_id": 2598203208, + "created_at": "2025-01-17T11:55:12Z", + "repoId": 143328315, + "pullRequestNo": 10379 + }, + { + "name": "rdonato", + "id": 128521, + "comment_id": 2643683251, + "created_at": "2025-02-07T18:22:51Z", + "repoId": 143328315, + "pullRequestNo": 10444 + }, + { + "name": "SoNiC-HeRE", + "id": 96797205, + "comment_id": 2654003700, + "created_at": "2025-02-12T15:10:05Z", + "repoId": 143328315, + "pullRequestNo": 10460 + }, + { + "name": "guspan-tanadi", + "id": 36249910, + "comment_id": 2675814807, + "created_at": "2025-02-21T23:28:45Z", + "repoId": 143328315, + "pullRequestNo": 10465 + }, + { + "name": "arashaomrani", + "id": 20032520, + "comment_id": 2705110135, + "created_at": "2025-03-06T22:46:52Z", + "repoId": 143328315, + "pullRequestNo": 10544 + }, + { + "name": "kevinrawal", + "id": 84058124, + "comment_id": 2708288010, + "created_at": "2025-03-08T13:33:56Z", + "repoId": 143328315, + "pullRequestNo": 10550 + }, + { + "name": "MR901", + "id": 20877166, + "comment_id": 2788354723, + "created_at": "2025-04-09T05:54:32Z", + "repoId": 143328315, + "pullRequestNo": 10681 + }, + { + "name": "pnewsam", + "id": 22651415, + "comment_id": 2813745881, + "created_at": "2025-04-17T18:35:55Z", + "repoId": 143328315, + "pullRequestNo": 10736 + }, + { + "name": "emmanuel-ferdman", + "id": 35470921, + "comment_id": 2816053850, + "created_at": "2025-04-18T19:17:39Z", + "repoId": 143328315, + "pullRequestNo": 10739 + }, + { + "name": "Konstantinos-10", + "id": 161840728, + "comment_id": 2833463268, + "created_at": "2025-04-27T13:35:09Z", + "repoId": 143328315, + "pullRequestNo": 10761 + }, + { + "name": "NikosLaspias", + "id": 148558723, + "comment_id": 2834255670, + "created_at": "2025-04-28T07:38:11Z", + "repoId": 143328315, + "pullRequestNo": 10760 + }, + { + "name": "jzs1997", + "id": 29564670, + "comment_id": 2840686847, + "created_at": "2025-04-30T03:07:12Z", + "repoId": 143328315, + "pullRequestNo": 10776 + }, + { + "name": "HarshaVardhanMannem", + "id": 144146034, + "comment_id": 2896453670, + "created_at": "2025-05-21T03:28:49Z", + "repoId": 143328315, + "pullRequestNo": 10861 + }, + { + "name": "arun-prasath2005", + "id": 84761066, + "comment_id": 2906488930, + "created_at": "2025-05-24T06:10:22Z", + "repoId": 143328315, + "pullRequestNo": 10882 + }, + { + "name": "vmanikanta07", + "id": 117996904, + "comment_id": 2906811274, + "created_at": "2025-05-24T12:37:42Z", + "repoId": 143328315, + "pullRequestNo": 10885 + }, + { + "name": "omerc7", + "id": 32813109, + "comment_id": 2908711653, + "created_at": "2025-05-26T06:34:46Z", + "repoId": 143328315, + "pullRequestNo": 10895 + }, + { + "name": "trickster026", + "id": 212937700, + "comment_id": 2910591816, + "created_at": "2025-05-26T20:34:08Z", + "repoId": 143328315, + "pullRequestNo": 10903 + }, + { + "name": "ivanvza", + "id": 8543825, + "comment_id": 2911844022, + "created_at": "2025-05-27T09:31:36Z", + "repoId": 143328315, + "pullRequestNo": 10900 + }, + { + "name": "Joystonm", + "id": 116254639, + "comment_id": 2965183033, + "created_at": "2025-06-12T05:37:40Z", + "repoId": 143328315, + "pullRequestNo": 11070 + }, + { + "name": "noname4life", + "id": 77653287, + "comment_id": 2983573198, + "created_at": "2025-06-18T10:07:09Z", + "repoId": 143328315, + "pullRequestNo": 11117 + }, + { + "name": "D1m7asis", + "id": 80602676, + "comment_id": 2985345244, + "created_at": "2025-06-18T18:42:15Z", + "repoId": 143328315, + "pullRequestNo": 11124 + }, + { + "name": "Alex-xd", + "id": 11256006, + "comment_id": 2999207900, + "created_at": "2025-06-24T07:50:23Z", + "repoId": 143328315, + "pullRequestNo": 11160 + }, + { + "name": "PriyanshuPz", + "id": 112266318, + "comment_id": 3000590454, + "created_at": "2025-06-24T13:51:44Z", + "repoId": 143328315, + "pullRequestNo": 11163 + }, + { + "name": "rawathemant246", + "id": 99639231, + "comment_id": 2999067598, + "created_at": "2025-06-24T06:59:35Z", + "repoId": 143328315, + "pullRequestNo": 11159 + }, + { + "name": "aryanmalik-iet", + "id": 187411120, + "comment_id": 3007270696, + "created_at": "2025-06-26T06:24:35Z", + "repoId": 143328315, + "pullRequestNo": 11186 + }, + { + "name": "iabhi4", + "id": 61010675, + "comment_id": 3017197726, + "created_at": "2025-06-29T22:22:14Z", + "repoId": 143328315, + "pullRequestNo": 11212 + }, + { + "name": "dotWee", + "id": 8060356, + "comment_id": 3072932250, + "created_at": "2025-07-15T09:45:05Z", + "repoId": 143328315, + "pullRequestNo": 11300 + }, + { + "name": "buallen", + "id": 54055907, + "comment_id": 3078683990, + "created_at": "2025-07-16T13:40:32Z", + "repoId": 143328315, + "pullRequestNo": 11234 + }, + { + "name": "Raahim-Lone", + "id": 175012415, + "comment_id": 3120439531, + "created_at": "2025-07-25T21:35:44Z", + "repoId": 143328315, + "pullRequestNo": 11365 + }, + { + "name": "kaizenjinco", + "id": 78314961, + "comment_id": 3124537097, + "created_at": "2025-07-27T16:53:30Z", + "repoId": 143328315, + "pullRequestNo": 11367 + }, + { + "name": "huang-x-h", + "id": 381860, + "comment_id": 3132498852, + "created_at": "2025-07-29T13:16:29Z", + "repoId": 143328315, + "pullRequestNo": 11126 + }, + { + "name": "aperepel", + "id": 119367, + "comment_id": 3137657308, + "created_at": "2025-07-30T20:03:35Z", + "repoId": 143328315, + "pullRequestNo": 11385 + }, + { + "name": "abhayasr", + "id": 108477628, + "comment_id": 3164476409, + "created_at": "2025-08-07T14:39:49Z", + "repoId": 143328315, + "pullRequestNo": 11291 + }, + { + "name": "logan-mo", + "id": 63550599, + "comment_id": 3167373652, + "created_at": "2025-08-08T10:27:53Z", + "repoId": 143328315, + "pullRequestNo": 11414 + }, + { + "name": "kylediaz", + "id": 35979917, + "comment_id": 3180690963, + "created_at": "2025-08-12T19:21:02Z", + "repoId": 143328315, + "pullRequestNo": 11427 + }, + { + "name": "Kenxpx", + "id": 155082290, + "comment_id": 3194287003, + "created_at": "2025-08-17T10:15:06Z", + "repoId": 143328315, + "pullRequestNo": 11450 + }, + { + "name": "Nancy9ice", + "id": 103530451, + "comment_id": 3197557060, + "created_at": "2025-08-18T16:11:20Z", + "repoId": 143328315, + "pullRequestNo": 11453 + }, + { + "name": "Matvey-Kuk", + "id": 3284841, + "comment_id": 3197947416, + "created_at": "2025-08-18T18:18:26Z", + "repoId": 143328315, + "pullRequestNo": 11452 + }, + { + "name": "louisneal", + "id": 47094728, + "comment_id": 3222541351, + "created_at": "2025-08-26T04:06:55Z", + "repoId": 143328315, + "pullRequestNo": 11478 + }, + { + "name": "sejubar", + "id": 154475559, + "comment_id": 3240009269, + "created_at": "2025-08-31T09:59:19Z", + "repoId": 143328315, + "pullRequestNo": 11495 + }, + { + "name": "sudsmenon", + "id": 11342520, + "comment_id": 3250743797, + "created_at": "2025-09-03T20:48:18Z", + "repoId": 143328315, + "pullRequestNo": 11510 + }, + { + "name": "TaniyaKatigar", + "id": 214086943, + "comment_id": 3262560837, + "created_at": "2025-09-06T16:30:40Z", + "repoId": 143328315, + "pullRequestNo": 11530 + }, + { + "name": "GeorgeGithiri5", + "id": 46107866, + "comment_id": 3269367783, + "created_at": "2025-09-09T07:49:06Z", + "repoId": 143328315, + "pullRequestNo": 11541 + }, + { + "name": "gauiPPP", + "id": 43440362, + "comment_id": 3284159007, + "created_at": "2025-09-12T07:46:21Z", + "repoId": 143328315, + "pullRequestNo": 11554 + }, + { + "name": "morningman", + "id": 2899462, + "comment_id": 3293544413, + "created_at": "2025-09-15T19:07:52Z", + "repoId": 143328315, + "pullRequestNo": 11574 + }, + { + "name": "sadiqkhzn", + "id": 24961132, + "comment_id": 3312201690, + "created_at": "2025-09-19T13:26:49Z", + "repoId": 143328315, + "pullRequestNo": 11596 + }, + { + "name": "yumosx", + "id": 141902143, + "comment_id": 3322908961, + "created_at": "2025-09-23T08:21:07Z", + "repoId": 143328315, + "pullRequestNo": 11605 + }, + { + "name": "aimurphy", + "id": 36110273, + "comment_id": 3335211124, + "created_at": "2025-09-25T17:38:00Z", + "repoId": 143328315, + "pullRequestNo": 11618 + }, + { + "name": "richardokonicha", + "id": 48168290, + "comment_id": 3346750889, + "created_at": "2025-09-29T12:48:00Z", + "repoId": 143328315, + "pullRequestNo": 11552 + }, + { + "name": "vigbav36", + "id": 90998381, + "comment_id": 3361788337, + "created_at": "2025-10-02T15:24:35Z", + "repoId": 143328315, + "pullRequestNo": 11666 + }, + { + "name": "yashisthebatman", + "id": 149709821, + "comment_id": 3364470461, + "created_at": "2025-10-03T06:48:03Z", + "repoId": 143328315, + "pullRequestNo": 11676 + }, + { + "name": "survivant", + "id": 191879, + "comment_id": 3369115643, + "created_at": "2025-10-05T15:02:15Z", + "repoId": 143328315, + "pullRequestNo": 11684 + }, + { + "name": "Sai-Sravya-Thumati", + "id": 64857617, + "comment_id": 3370705793, + "created_at": "2025-10-06T09:31:16Z", + "repoId": 143328315, + "pullRequestNo": 11686 + }, + { + "name": "cclauss", + "id": 3709715, + "comment_id": 3364277206, + "created_at": "2025-10-03T05:08:38Z", + "repoId": 143328315, + "pullRequestNo": 11673 + }, + { + "name": "ParasNingune", + "id": 153178176, + "comment_id": 3388187853, + "created_at": "2025-10-10T03:48:32Z", + "repoId": 143328315, + "pullRequestNo": 11703 + }, + { + "name": "HarshitR2004", + "id": 159914116, + "comment_id": 3388359328, + "created_at": "2025-10-10T05:37:12Z", + "repoId": 143328315, + "pullRequestNo": 11704 + }, + { + "name": "Nirzak", + "id": 11460645, + "comment_id": 3393522813, + "created_at": "2025-10-11T17:20:41Z", + "repoId": 143328315, + "pullRequestNo": 11726 + }, + { + "name": "faizan842", + "id": 91795555, + "comment_id": 3407632893, + "created_at": "2025-10-15T17:55:57Z", + "repoId": 143328315, + "pullRequestNo": 11748 + }, + { + "name": "AhmadYasser1", + "id": 77586860, + "comment_id": 3419161297, + "created_at": "2025-10-19T02:48:49Z", + "repoId": 143328315, + "pullRequestNo": 11766 + }, + { + "name": "Nikhil172913832", + "id": 140622713, + "comment_id": 3443931056, + "created_at": "2025-10-24T16:13:14Z", + "repoId": 143328315, + "pullRequestNo": 11786 + }, + { + "name": "jiaqicheng1998", + "id": 65794980, + "comment_id": 3459506446, + "created_at": "2025-10-29T03:48:36Z", + "repoId": 143328315, + "pullRequestNo": 11793 + }, + { + "name": "Aashish079", + "id": 106550372, + "comment_id": 3461223031, + "created_at": "2025-10-29T12:19:16Z", + "repoId": 143328315, + "pullRequestNo": 11812 + }, + { + "name": "guddu-debasis", + "id": 167549811, + "comment_id": 3463419567, + "created_at": "2025-10-29T19:15:44Z", + "repoId": 143328315, + "pullRequestNo": 11821 + }, + { + "name": "jeis4wpi", + "id": 42679190, + "comment_id": 3467642515, + "created_at": "2025-10-30T11:55:54Z", + "repoId": 143328315, + "pullRequestNo": 11822 + }, + { + "name": "ak4shravikumar", + "id": 189372043, + "comment_id": 3469119609, + "created_at": "2025-10-30T17:15:30Z", + "repoId": 143328315, + "pullRequestNo": 11828 + }, + { + "name": "rajesh-adk-137", + "id": 89499267, + "comment_id": 3470873094, + "created_at": "2025-10-31T00:51:14Z", + "repoId": 143328315, + "pullRequestNo": 11835 + }, + { + "name": "KrishThakur23", + "id": 214495511, + "comment_id": 3475330781, + "created_at": "2025-11-01T01:05:56Z", + "repoId": 143328315, + "pullRequestNo": 11841 + }, + { + "name": "ritoban23", + "id": 124308320, + "comment_id": 3476917215, + "created_at": "2025-11-01T22:16:42Z", + "repoId": 143328315, + "pullRequestNo": 11843 + }, + { + "name": "bala-ceg", + "id": 70808619, + "comment_id": 3478836423, + "created_at": "2025-11-03T04:05:40Z", + "repoId": 143328315, + "pullRequestNo": 11844 + }, + { + "name": "HamoonDBA", + "id": 3939424, + "comment_id": 3499521731, + "created_at": "2025-11-06T21:49:51Z", + "repoId": 143328315, + "pullRequestNo": 11858 + }, + { + "name": "md-ziauddin", + "id": 29926473, + "comment_id": 3533762471, + "created_at": "2025-11-14T17:15:19Z", + "repoId": 143328315, + "pullRequestNo": 11888 + }, + { + "name": "suman-X", + "id": 137594910, + "comment_id": 3534136586, + "created_at": "2025-11-14T18:54:22Z", + "repoId": 143328315, + "pullRequestNo": 11890 + }, + { + "name": "suman-X", + "id": 137594910, + "comment_id": 3534230691, + "created_at": "2025-11-14T19:21:59Z", + "repoId": 143328315, + "pullRequestNo": 11890 + }, + { + "name": "SyedaAnshrahGillani", + "id": 90501474, + "comment_id": 3616952272, + "created_at": "2025-12-05T13:33:42Z", + "repoId": 143328315, + "pullRequestNo": 11973 + }, + { + "name": "neversettle17-101", + "id": 41864816, + "comment_id": 3620426556, + "created_at": "2025-12-06T13:56:57Z", + "repoId": 143328315, + "pullRequestNo": 11975 + }, + { + "name": "duskobogdanovski", + "id": 21080468, + "comment_id": 3656079267, + "created_at": "2025-12-15T14:55:07Z", + "repoId": 143328315, + "pullRequestNo": 12013 + }, + { + "name": "kelvinvelasquez-SDE", + "id": 112011775, + "comment_id": 3675658408, + "created_at": "2025-12-19T16:19:32Z", + "repoId": 143328315, + "pullRequestNo": 12029 + }, + { + "name": "PPeitsch", + "id": 88450637, + "comment_id": 3704693294, + "created_at": "2026-01-02T07:50:33Z", + "repoId": 143328315, + "pullRequestNo": 12048 + }, + { + "name": "SachinMyadam", + "id": 110909093, + "comment_id": 3716118688, + "created_at": "2026-01-06T20:02:10Z", + "repoId": 143328315, + "pullRequestNo": 12054 + }, + { + "name": "xuwei95", + "id": 18109811, + "comment_id": 3723114411, + "created_at": "2026-01-08T10:01:14Z", + "repoId": 143328315, + "pullRequestNo": 12063 + }, + { + "name": "Nandha-kumar-S", + "id": 85221220, + "comment_id": 3727602927, + "created_at": "2026-01-09T07:52:10Z", + "repoId": 143328315, + "pullRequestNo": 12082 + }, + { + "name": "Sweetdevil144", + "id": 117591942, + "comment_id": 3761427133, + "created_at": "2026-01-16T19:12:39Z", + "repoId": 143328315, + "pullRequestNo": 12110 + }, + { + "name": "Sriram-B-Srivatsa", + "id": 144884365, + "comment_id": 3765374596, + "created_at": "2026-01-18T14:51:54Z", + "repoId": 143328315, + "pullRequestNo": 12113 + }, + { + "name": "zhaojinxin409", + "id": 5874804, + "comment_id": 3771260955, + "created_at": "2026-01-20T06:34:45Z", + "repoId": 143328315, + "pullRequestNo": 12122 + }, + { + "name": "murataslan1", + "id": 78961478, + "comment_id": 3784602307, + "created_at": "2026-01-22T14:06:33Z", + "repoId": 143328315, + "pullRequestNo": 12004 + }, + { + "name": "C1ARKGABLE", + "id": 13039858, + "comment_id": 3792661007, + "created_at": "2026-01-23T21:53:19Z", + "repoId": 143328315, + "pullRequestNo": 11988 + }, + { + "name": "AndrewFarley", + "id": 470163, + "comment_id": 3801391357, + "created_at": "2026-01-26T19:40:00Z", + "repoId": 143328315, + "pullRequestNo": 12123 + }, + { + "name": "007slm", + "id": 1670036, + "comment_id": 3803635367, + "created_at": "2026-01-27T07:48:21Z", + "repoId": 143328315, + "pullRequestNo": 12155 + }, + { + "name": "C0staTin", + "id": 12409467, + "comment_id": 3812795861, + "created_at": "2026-01-28T17:36:00Z", + "repoId": 143328315, + "pullRequestNo": 12151 + }, + { + "name": "Amogh-2404", + "id": 114862749, + "comment_id": 3814926744, + "created_at": "2026-01-29T02:00:24Z", + "repoId": 143328315, + "pullRequestNo": 12167 + }, + { + "name": "themavik", + "id": 179817126, + "comment_id": 3936291923, + "created_at": "2026-02-20T17:50:39Z", + "repoId": 143328315, + "pullRequestNo": 12213 + }, + { + "name": "ianu82", + "id": 86010258, + "comment_id": 3973995110, + "created_at": "2026-02-27T16:55:27Z", + "repoId": 143328315, + "pullRequestNo": 12251 + }, + { + "name": "Mirza-Samad-Ahmed-Baig", + "id": 89132160, + "comment_id": 4054729064, + "created_at": "2026-03-13T12:24:17Z", + "repoId": 143328315, + "pullRequestNo": 12290 + }, + { + "name": "Krishnav1237", + "id": 147693159, + "comment_id": 4061239564, + "created_at": "2026-03-14T19:45:50Z", + "repoId": 143328315, + "pullRequestNo": 12294 + }, + { + "name": "StefanTrsunov", + "id": 91495981, + "comment_id": 4070493719, + "created_at": "2026-03-16T20:45:48Z", + "repoId": 143328315, + "pullRequestNo": 12297 + }, + { + "name": "Tzsapphire", + "id": 209363831, + "comment_id": 4106737895, + "created_at": "2026-03-22T18:27:23Z", + "repoId": 143328315, + "pullRequestNo": 12317 + }, + { + "name": "jnMetaCode", + "id": 12096460, + "comment_id": 4111619407, + "created_at": "2026-03-23T15:43:15Z", + "repoId": 143328315, + "pullRequestNo": 12279 + } + ] +} \ No newline at end of file diff --git a/dev.env.example b/dev.env.example new file mode 100644 index 0000000..a88883e --- /dev/null +++ b/dev.env.example @@ -0,0 +1,20 @@ +# Per-developer module-branch selection. Copy to `dev.env` (gitignored) and +# set the branch(es) you're working on. `make use` checks them out; `make dev` +# / `make dev-web` (local source) follow them, and `make server` / `make app` +# install the matching Electron desktop server. +# +# cp dev.env.example dev.env +# # edit, then: +# make use && make dev # local-source dev on your branches +# # or for the desktop app on your branch's server: +# make server && make app +# +# Leave unset to track `main`. + +# All modules on one branch: +# REF=feat/my-thing + +# …or override per module (these win over REF): +# FRONTEND_REF=feat/ui-thing +# API_REF=feat/server-thing +# AGENT_REF=feat/agent-thing diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..2532528 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,37 @@ +services: + api: + build: + context: . + dockerfile: docker/api.Dockerfile + environment: + COWORK_SERVER_HOST: "0.0.0.0" + COWORK_SERVER_PORT: "26866" + DATABASE_URI: "sqlite:////home/cowork/.cowork/cowork.db" + # ANTON_ANTHROPIC_API_KEY: "sk-ant-..." + volumes: + - cowork-data:/home/cowork/.cowork + ports: + - "26866:26866" + restart: unless-stopped + healthcheck: + test: ["CMD", "python", "-c", + "import urllib.request,sys; sys.exit(0 if urllib.request.urlopen('http://127.0.0.1:26866/health',timeout=3).status==200 else 1)"] + interval: 30s + timeout: 5s + start_period: 20s + retries: 3 + + web: + build: + context: . + dockerfile: docker/web.Dockerfile + ports: + - "3000:80" + depends_on: + api: + condition: service_healthy + restart: unless-stopped + +volumes: + cowork-data: + driver: local diff --git a/docker/api.Dockerfile b/docker/api.Dockerfile new file mode 100644 index 0000000..a1f4a6d --- /dev/null +++ b/docker/api.Dockerfile @@ -0,0 +1,38 @@ +FROM python:3.12-slim AS builder + +RUN pip install uv --no-cache-dir + +WORKDIR /src +COPY backend/core_agent/ ./core_agent/ +COPY backend/core_api/ ./core_api/ + +RUN python -m venv /opt/venv && \ + /opt/venv/bin/pip install uv --no-cache-dir && \ + /opt/venv/bin/uv pip install ./core_agent ./core_api + +FROM python:3.12-slim AS runtime + +LABEL org.opencontainers.image.title="cowork-api" +LABEL org.opencontainers.image.source="https://github.com/mindsdb/minds-platform" + +RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates \ + && rm -rf /var/lib/apt/lists/* \ + && useradd -m -u 1000 -s /bin/bash cowork + +COPY --from=builder /opt/venv /opt/venv +ENV PATH="/opt/venv/bin:$PATH" \ + PYTHONUNBUFFERED=1 \ + COWORK_SERVER_HOST=0.0.0.0 \ + COWORK_SERVER_PORT=26866 + +RUN mkdir -p /home/cowork/.cowork && chown cowork:cowork /home/cowork/.cowork + +USER cowork + +EXPOSE 26866 + +HEALTHCHECK --interval=30s --timeout=5s --start-period=20s --retries=3 \ + CMD python -c "import urllib.request,sys; \ +sys.exit(0 if urllib.request.urlopen('http://127.0.0.1:26866/health',timeout=3).status==200 else 1)" + +CMD ["cowork-server"] diff --git a/docker/nginx.conf b/docker/nginx.conf new file mode 100644 index 0000000..4b5895b --- /dev/null +++ b/docker/nginx.conf @@ -0,0 +1,18 @@ +server { + listen 80; + root /usr/share/nginx/html; + index index.html; + + location /v1/ { + proxy_pass http://api:26866; + proxy_http_version 1.1; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_read_timeout 120s; + } + + location / { + try_files $uri $uri/ /index.html; + } +} diff --git a/docker/web.Dockerfile b/docker/web.Dockerfile new file mode 100644 index 0000000..d07667c --- /dev/null +++ b/docker/web.Dockerfile @@ -0,0 +1,17 @@ +FROM node:22-slim AS builder + +WORKDIR /build +COPY frontend/package.json frontend/package-lock.json ./ +RUN npm ci --ignore-scripts +COPY frontend/ ./ +RUN npm run build:web + +FROM nginx:alpine AS runtime + +LABEL org.opencontainers.image.title="cowork-web" +LABEL org.opencontainers.image.source="https://github.com/mindsdb/minds-platform" + +COPY --from=builder /build/dist/renderer-web/ /usr/share/nginx/html/ +COPY docker/nginx.conf /etc/nginx/conf.d/default.conf + +EXPOSE 80 diff --git a/docs/api.html b/docs/api.html new file mode 100644 index 0000000..bf49c15 --- /dev/null +++ b/docs/api.html @@ -0,0 +1,1488 @@ + + + + +API Reference — Minds Cowork Docs + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
API Reference
+

REST API

+

+ The Cowork server exposes a versioned REST API at /api/v1. + All endpoints return JSON. +

+ + +
+ + + + + + + + + + + + + + + N + + + + N + + + + N + + + + N + + + + + + 1 + + + + N + 1 + + + + N + + + + N + + + + triggers + + + + + + + 0..N + + + + + + + + Project + central workspace + + + + + + Connector + independent + + + + + + Conversation + + = Task + + + + + + Artifact + + mini app + + + + + + Schedule + + + + + + File + + + + + + Response + + + + + + Scratchpad + ephemeral draft + + + + + + Cell + code · md · output + + + + + + Memory + global or project + + + + + + Skill + global + + + + + usable within + + + + LEGEND + + + + owns 1..N + + + + optional / triggers + + + independent / global + + + usable within / 0..N + +
+ +
+ Base URL + http://localhost:26866/api/v1 +
+ + +
+

Responses

+

Stream AI responses from the agent. Compatible with the OpenAI Responses API shape.

+ +

Response object

+
+
json
+
{
+  "id":              "resp_abc123",
+  "conversation_id": "conv_xyz",
+  "input":           "Summarise last week's sales data",
+  "output":          [{ "type": "text", "text": "Here is the summary..." }],
+  "status":          "completed",  // "in_progress" | "completed" | "failed"
+  "model":           "claude-opus-4-8",
+  "usage":           { "input_tokens": 120, "output_tokens": 340 },
+  "created_at":      "2026-06-11T10:00:00Z"
+}
+
+ +
+
+ POST + /responses + Create a streaming response +
+
+

Body

+ + + + + + +
conversation_idstringrequiredID of the conversation to append the response to.
inputstringrequiredUser message text.
streambooleanoptionalDefault true. Return server-sent events. Set to false for a single JSON response.
modelstringoptionalOverride the agent model for this turn. Defaults to the project setting.
skill_idsstring[]optionalSkill IDs to activate for this turn.
+
+
curl
+
curl -X POST http://localhost:26866/api/v1/responses \
+  -H "Content-Type: application/json" \
+  -d '{"conversation_id":"conv_xyz","input":"Summarise last week'\''s sales data","stream":true}'
+
+
+
+ +
+
+ GET + /responses/in-flight-list + List active streams +
+
+

Query parameters

+ + +
conversation_idstringoptionalFilter to a specific conversation.
+
+
+ +
+
+ GET + /responses/in-flight + Check a specific in-flight stream +
+
+

Query parameters

+ + +
conversation_idstringrequiredConversation whose active stream to retrieve.
+
+
+
+ + +
+

Conversations

+

Manage conversation threads. Each conversation holds an ordered list of messages. Conversations and Tasks are the same concept — every task is a conversation with a goal and an assigned agent. The API uses both terms interchangeably.

+ +

Conversation object

+
+
json
+
{
+  "id":           "conv_abc123",
+  "project_id":   "proj_xyz",           // null if not project-scoped
+  "title":        "Q2 analysis",
+  "goal":         "Analyse Q2 revenue by region",  // task prompt, optional
+  "status":       "active",             // "active" | "archived"
+  "created_at":   "2026-06-11T10:00:00Z",
+  "updated_at":   "2026-06-11T10:04:12Z"
+}
+
+ +
+
+ GET + /conversations + List conversations +
+
+

Query parameters

+ + + + + +
project_idstringoptionalFilter to a specific project.
statusstringoptionalactive or archived. Returns all if omitted.
limitintegeroptionalMax results to return. Default 50, max 200.
offsetintegeroptionalPagination offset. Default 0.
+
+
+ +
+
+ POST + /conversations + Create a conversation +
+
+

Body

+ + + + +
project_idstringoptionalAttach to a project.
titlestringoptionalHuman-readable name. Auto-generated from the first message if omitted.
goalstringoptionalTask prompt or goal that frames the conversation for the agent.
+
+
curl
+
curl -X POST http://localhost:26866/api/v1/conversations \
+  -H "Content-Type: application/json" \
+  -d '{"project_id":"proj_xyz","title":"Q2 analysis","goal":"Analyse Q2 revenue by region"}'
+
+
+
+ +
+
+ GET + /conversations/{id} + Get a conversation +
+
+

Path parameters

+ + +
idstringrequiredConversation ID.
+
+
+ +
+
+ PATCH + /conversations/{id} + Update title, goal, or status +
+
+

Body

+ + + + +
titlestringoptionalNew title.
goalstringoptionalUpdated task goal.
statusstringoptionalactive or archived.
+
+
+ +
+
+ GET + /conversations/{id}/items + Get messages in a conversation +
+
+

Returns an ordered array of message items. Each item has role (user or assistant), content, and created_at.

+

Query parameters

+ + + +
limitintegeroptionalDefault 100.
beforestringoptionalReturn items before this item ID (cursor pagination).
+
+
+ +
+
+ DELETE + /conversations/{id} + Delete a conversation and all its messages +
+
+
+ + +
+

Projects

+

Projects are workspaces that group conversations, files, and artifacts.

+ +

Project object

+
+
json
+
{
+  "id":             "proj_abc123",
+  "name":           "Sales Automation",
+  "description":    "Weekly reporting flows",
+  "connector_ids":  ["conn_001", "conn_002"],
+  "skill_ids":      ["skill_abc"],
+  "created_at":     "2026-06-11T10:00:00Z",
+  "updated_at":     "2026-06-11T10:00:00Z"
+}
+
+ +
+
+ GET + /projects + List all projects +
+
+

Query parameters

+ + + +
limitintegeroptionalDefault 50.
offsetintegeroptionalDefault 0.
+
+
+ +
+
+ POST + /projects + Create a project +
+
+

Body

+ + + + + +
namestringrequiredDisplay name for the project.
descriptionstringoptionalShort description shown in the UI.
connector_idsstring[]optionalData source connections available within this project.
skill_idsstring[]optionalGlobal skills to activate for all conversations in this project.
+
+
curl
+
curl -X POST http://localhost:26866/api/v1/projects \
+  -H "Content-Type: application/json" \
+  -d '{"name":"Sales Automation","description":"Weekly reporting flows","connector_ids":["conn_001"]}'
+
+
+
+ +
+
+ PATCH + /projects/{id} + Update a project +
+
+

Body

+ + + + + +
namestringoptional
descriptionstringoptional
connector_idsstring[]optionalReplaces the current list.
skill_idsstring[]optionalReplaces the current list.
+
+
+ +
+
+ DELETE + /projects/{id} + Delete a project and all its contents +
+
+
+ + +
+

Artifacts

+

Artifacts are mini apps — web apps, dashboards, reports, and documents generated by the agent and hosted within a project. Each artifact belongs to a project.

+ +

Artifact object

+
+
json
+
{
+  "id":          "art_abc123",
+  "project_id":  "proj_xyz",
+  "title":       "Sales Dashboard",
+  "type":        "app",      // "app" | "report" | "doc" | "dashboard"
+  "path":        "sales_dashboard/index.html",  // relative path within project
+  "created_at":  "2026-06-11T10:00:00Z",
+  "updated_at":  "2026-06-11T10:00:00Z"
+}
+
+ +
+
+ GET + /artifacts + List artifacts +
+
+

Query parameters

+ + + + +
project_idstringoptionalFilter to a project.
typestringoptionalapp, report, doc, or dashboard.
limitintegeroptionalDefault 50.
+
+
+ +
+
+ GET + /artifacts/preview + Preview an artifact by path +
+
+

Query parameters

+ + + +
pathstringrequiredRelative artifact path, e.g. sales_dashboard/index.html.
project_idstringrequiredProject that owns the artifact.
+
+
+ +
+
+ POST + /artifacts/open + Open an artifact in the desktop shell +
+
+

Body

+ + +
artifact_idstringrequiredArtifact to open in the Electron window.
+
+
+ +
+
+ GET + /artifacts/serve/{project_id}/{path} + Serve a raw artifact file +
+
+

Path parameters

+ + + +
project_idstringrequiredProject ID.
pathstringrequiredFile path within the artifact, e.g. index.html or assets/chart.js.
+
+
+
+ + +
+

Schedules

+

Run tasks on a cron schedule. Schedules belong to a project and trigger a conversation or workflow automatically.

+ +

Schedule object

+
+
json
+
{
+  "id":              "sched_abc123",
+  "project_id":      "proj_xyz",
+  "cron":            "0 9 * * 1",       // standard 5-field cron expression
+  "timezone":        "America/New_York",
+  "prompt":          "Generate weekly sales digest",
+  "conversation_id": null,             // null = create new conversation each run
+  "status":          "active",         // "active" | "paused"
+  "last_run_at":     "2026-06-09T09:00:00Z",
+  "next_run_at":     "2026-06-16T09:00:00Z",
+  "created_at":      "2026-06-01T00:00:00Z"
+}
+
+ +
+
+ GET + /schedules + List schedules +
+
+

Query parameters

+ + + +
project_idstringoptionalFilter to a project.
statusstringoptionalactive or paused.
+
+
+ +
+
+ POST + /schedules + Create a schedule +
+
+

Body

+ + + + + + +
project_idstringrequiredProject this schedule belongs to.
cronstringrequiredStandard 5-field cron expression, e.g. "0 9 * * 1" = every Monday at 09:00.
promptstringrequiredTask the agent runs at each scheduled time.
timezonestringoptionalIANA timezone. Default UTC.
conversation_idstringoptionalAppend each run to an existing conversation. If omitted, a new conversation is created per run.
+
+
curl
+
curl -X POST http://localhost:26866/api/v1/schedules \
+  -H "Content-Type: application/json" \
+  -d '{"project_id":"proj_xyz","cron":"0 9 * * 1","prompt":"Generate weekly sales digest","timezone":"America/New_York"}'
+
+
+
+ +
+
+ PATCH + /schedules/{id} + Update a schedule +
+
+

Body

+ + + + + +
cronstringoptionalNew cron expression.
promptstringoptionalUpdated task prompt.
timezonestringoptionalNew timezone.
statusstringoptionalactive or paused.
+
+
+ +
+
+ POST + /schedules/{id}/run + Trigger a schedule immediately +
+
+ +
+
+ DELETE + /schedules/{id} + Delete a schedule +
+
+
+ + +
+

Files

+

Upload and manage files that the agent can read, search, and reference. Files can be attached to a project or to individual conversations.

+ +

File object

+
+
json
+
{
+  "id":              "file_abc123",
+  "name":            "Q2-report.pdf",
+  "mime_type":       "application/pdf",
+  "size":            204800,           // bytes
+  "project_id":      "proj_xyz",       // null if conversation-scoped only
+  "conversation_id": null,             // null if project-scoped only
+  "created_at":      "2026-06-11T10:00:00Z"
+}
+
+ +
+
+ GET + /files + List files +
+
+

Query parameters

+ + + +
project_idstringoptionalFilter to a project.
conversation_idstringoptionalFilter to a conversation.
+
+
+ +
+
+ POST + /files + Upload a file +
+
+

Multipart form-data upload.

+

Form fields

+ + + + +
filefilerequiredThe file binary. Accepted: PDF, DOCX, XLSX, CSV, TXT, PNG, JPG, and more.
project_idstringoptionalAttach to a project.
conversation_idstringoptionalAttach to a conversation. Can be set alongside project_id.
+
+
curl
+
curl -X POST http://localhost:26866/api/v1/files \
+  -F "file=@Q2-report.pdf" \
+  -F "project_id=proj_xyz"
+
+
+
+ +
+
+ DELETE + /files/{id} + Delete a file +
+
+
+ + +
+

Connectors

+

Integrate external data sources. Connectors exist independently of any project but can be referenced inside any project. They are defined by specs (the connector type, e.g. PostgreSQL, Snowflake, Google Sheets) and instantiated as connections with encrypted credentials. Credentials are write-only — never returned after creation.

+ +

ConnectorSpec object

+
+
json
+
{
+  "id":           "postgres",
+  "name":         "PostgreSQL",
+  "description":  "Connect to any PostgreSQL-compatible database.",
+  "auth_type":    "credentials",  // "credentials" | "oauth2"
+  "fields": [                       // credential fields required at connection time
+    { "key": "host",     "label": "Host",     "secret": false },
+    { "key": "port",     "label": "Port",     "secret": false },
+    { "key": "database", "label": "Database", "secret": false },
+    { "key": "user",     "label": "User",     "secret": false },
+    { "key": "password", "label": "Password", "secret": true  }
+  ]
+}
+
+ +

Connection object

+
+
json
+
{
+  "id":         "conn_abc123",
+  "spec_id":    "postgres",       // which ConnectorSpec this uses
+  "name":       "prod-db",
+  "status":     "connected",      // "connected" | "error" | "pending"
+  "created_at": "2026-06-11T10:00:00Z"
+  // credentials are never returned
+}
+
+ +
+
+ GET + /connectors/specs + List available connector specs +
+
+
+
curl
+
curl "http://localhost:26866/api/v1/connectors/specs"
+
+
+
+ +
+
+ GET + /connectors/connections + List active connections +
+
+

Query parameters

+ + +
spec_idstringoptionalFilter by connector type (e.g. postgres).
+
+
+ +
+
+ POST + /connectors/connections + Create a connection +
+
+

Body

+ + + + +
spec_idstringrequiredThe connector spec to use (e.g. "postgres").
namestringrequiredHuman-readable label for this connection.
credentialsobjectrequiredKey-value map of credential fields defined by the spec. Secret fields are encrypted at rest and never returned.
+
+
curl
+
curl -X POST "http://localhost:26866/api/v1/connectors/connections" \
+  -H "Content-Type: application/json" \
+  -d '{
+    "spec_id": "postgres",
+    "name": "prod-db",
+    "credentials": {
+      "host": "db.example.com",
+      "port": 5432,
+      "database": "analytics",
+      "user": "reader",
+      "password": "s3cr3t"
+    }
+  }'
+
+
+
+ +
+
+ DELETE + /connectors/connections/{id} + Remove a connection +
+
+ +
+
+ GET + /connectors/oauth/{spec}/start + Start OAuth 2.0 flow +
+
+

Returns a redirect URL. Send the user's browser there; after authorization the platform receives the callback and stores the token automatically.

+

Path parameter

+ + +
specstringrequiredThe connector spec ID (e.g. google-sheets, notion).
+
+
+
+ + +
+

Memories

+

Persistent facts and context the agent retains across conversations. Memories can be global (shared across all projects and conversations) or project-scoped — omit project_id to create a global memory. The agent automatically surfaces relevant memories as context at the start of each conversation.

+ +

Memory object

+
+
json
+
{
+  "id":           "mem_abc123",
+  "content":      "Prefers executive summaries under 200 words.",
+  "project_id":   null,            // null = global; string = project-scoped
+  "source":       "user",          // "user" | "agent" — who created it
+  "created_at":   "2026-06-11T10:00:00Z",
+  "updated_at":   "2026-06-11T10:00:00Z"
+}
+
+ +
+
+ GET + /memories + List memories +
+
+

Query parameters

+ + + +
project_idstringoptionalReturn memories scoped to this project. Omit to return global memories.
sourcestringoptionalFilter by who created it: user or agent.
+
+
curl
+
curl "http://localhost:26866/api/v1/memories"               # global
+curl "http://localhost:26866/api/v1/memories?project_id=..."  # project-scoped
+
+
+
+ +
+
+ POST + /memories + Create a memory +
+
+

Body

+ + + +
contentstringrequiredThe fact or preference to remember. Plain text.
project_idstringoptionalScope to a project. Omit for a global memory.
+
+
curl
+
curl -X POST "http://localhost:26866/api/v1/memories" \
+  -H "Content-Type: application/json" \
+  -d '{"content": "Always use Q3 targets as the baseline.", "project_id": "proj_xyz"}'
+
+
+
+ +
+
+ PATCH + /memories/{id} + Update a memory +
+
+

Body

+ + +
contentstringoptionalUpdated text for the memory.
+
+
+ +
+
+ DELETE + /memories/{id} + Delete a memory +
+
+
+ +
+

Skills

+

Reusable capabilities available globally across all projects — custom instructions, tools, or prompt templates the agent can invoke. Skills extend what the agent knows how to do without re-explaining it each time. Like Connectors, they exist independently of any single project.

+ +

Skill object

+
+
json
+
{
+  "id":            "skill_abc123",
+  "name":          "weekly-report",
+  "description":   "Generates a weekly performance report from connected data sources.",
+  "instructions":  "Always include a one-paragraph executive summary first. Use bullet points for metrics...",
+  "tools": [        // external tool integrations this skill may invoke
+    "sql_query",
+    "send_email"
+  ],
+  "created_at":    "2026-06-11T10:00:00Z",
+  "updated_at":    "2026-06-11T10:00:00Z"
+}
+
+ +
+
+ GET + /skills + List all skills +
+
+
+
curl
+
curl "http://localhost:26866/api/v1/skills"
+
+
+
+ +
+
+ POST + /skills + Register a skill +
+
+

Body

+ + + + + +
namestringrequiredKebab-case identifier. Used to invoke the skill from a conversation.
descriptionstringrequiredShort summary of what this skill does. Shown in the UI and used by the agent to decide whether to invoke it.
instructionsstringoptionalDetailed prompt injected whenever this skill is active. Explains how to carry out the task, preferred format, constraints, etc.
toolsstring[]optionalList of tool identifiers the agent may call when running this skill (e.g. "sql_query", "send_email").
+
+
curl
+
curl -X POST "http://localhost:26866/api/v1/skills" \
+  -H "Content-Type: application/json" \
+  -d '{
+    "name": "weekly-report",
+    "description": "Generates a weekly performance report.",
+    "instructions": "Always start with an executive summary. Limit to 3 charts.",
+    "tools": ["sql_query", "send_email"]
+  }'
+
+
+
+ +
+
+ PATCH + /skills/{id} + Update a skill +
+
+

Body

+ + + + + +
namestringoptionalNew identifier.
descriptionstringoptionalUpdated summary.
instructionsstringoptionalRevised prompt instructions.
toolsstring[]optionalReplace the full list of allowed tools.
+
+
+ +
+
+ DELETE + /skills/{id} + Delete a skill +
+
+
+ +
+

Scratchpads

+

Notebook-style workspaces scoped to a conversation. A scratchpad is made up of ordered cells — the agent writes to cells as it reasons, drafts, and executes code. Each cell has a type (markdown, code, or output) and tracks its own execution state. Scratchpads persist for the lifetime of the conversation and can be promoted to an Artifact.

+ +

Scratchpad object

+
+
json
+
{
+  "id":              "sp_abc123",
+  "conversation_id": "conv_xyz",
+  "title":           "Sales analysis draft",
+  "cells":           [ /* ordered array of Cell objects */ ],
+  "saved":           false,     // true once promoted / pinned
+  "created_at":      "2026-06-11T10:00:00Z",
+  "updated_at":      "2026-06-11T10:04:12Z"
+}
+
+ +

Cell object

+
+
json
+
{
+  "id":        "cell_001",
+  "type":      "code",          // "markdown" | "code" | "output"
+  "content":   "df.describe()",
+  "language":  "python",        // present when type = "code"
+  "status":    "success",       // "pending" | "running" | "success" | "error"
+  "outputs":   [                 // present when type = "output"
+    {
+      "mime":    "text/plain",
+      "data":    "count    12.0\nmean     4.2\n..."
+    },
+    {
+      "mime":    "image/png",
+      "data":    "data:image/png;base64,..."
+    }
+  ],
+  "error":     null,            // error message when status = "error"
+  "index":     0                 // display order within the scratchpad
+}
+
+

+ typemarkdown cells are prose written by the agent; code cells are executable snippets; output cells are the results attached to the preceding code cell (stdout, images, tables).
+ status — only relevant on code cells. pending means queued, running means currently executing, success/error are terminal states.
+ outputs — multi-modal: a single code cell can produce several output objects with different MIME types (plain text, HTML, PNG charts, JSON). +

+ +
+
+ GET + /scratchpads + List scratchpads for a conversation +
+
+
+
curl
+
curl "http://localhost:26866/api/v1/scratchpads?conversation_id=..."
+
+
+
+ +
+
+ POST + /scratchpads + Create a scratchpad +
+
+
+
curl
+
curl -X POST "http://localhost:26866/api/v1/scratchpads" \
+  -H "Content-Type: application/json" \
+  -d '{"conversation_id":"...","title":"Sales analysis draft","cells":[]}'
+
+
+
+ +
+
+ GET + /scratchpads/{scratchpad_id} + Get a scratchpad with all cells +
+
+ +
+
+ PATCH + /scratchpads/{scratchpad_id} + Update title or save state +
+
+
+
curl
+
curl -X PATCH "http://localhost:26866/api/v1/scratchpads/{scratchpad_id}" \
+  -H "Content-Type: application/json" \
+  -d '{"title":"Final analysis","saved":true}'
+
+
+
+ +
+
+ DELETE + /scratchpads/{scratchpad_id} + Delete a scratchpad and all its cells +
+
+ +

Cells

+

Cells are managed individually so the agent can append, edit, or re-run a single cell without replacing the whole scratchpad.

+ +
+
+ POST + /scratchpads/{scratchpad_id}/cells + Append a cell +
+
+
+
curl
+
curl -X POST "http://localhost:26866/api/v1/scratchpads/{scratchpad_id}/cells" \
+  -H "Content-Type: application/json" \
+  -d '{"type":"code","language":"python","content":"df.head()"}'
+
+
+
+ +
+
+ PATCH + /scratchpads/{scratchpad_id}/cells/{cell_id} + Edit a cell's content or index +
+
+
+
curl
+
curl -X PATCH "http://localhost:26866/api/v1/scratchpads/{scratchpad_id}/cells/{cell_id}" \
+  -H "Content-Type: application/json" \
+  -d '{"content":"df.tail(10)","index":2}'
+
+
+
+ +
+
+ POST + /scratchpads/{scratchpad_id}/cells/{cell_id}/run + Execute a code cell +
+
+

Runs the cell and streams output back as server-sent events. Each event carries a partial output object. Terminal event has status: "success" or status: "error".

+
+
curl
+
curl -X POST "http://localhost:26866/api/v1/scratchpads/{scratchpad_id}/cells/{cell_id}/run"
+
+
+
+ +
+
+ DELETE + /scratchpads/{scratchpad_id}/cells/{cell_id} + Delete a cell +
+
+
+ + + +
+
+ + + + + + diff --git a/docs/docs.json b/docs/docs.json new file mode 100644 index 0000000..8e82e94 --- /dev/null +++ b/docs/docs.json @@ -0,0 +1,1326 @@ +{ + "$schema": "https://mintlify.com/docs.json", + "theme": "almond", + "name": "MindsDB", + "colors": { + "primary": "#3f8394", + "light": "#3f8394", + "dark": "#3f8394" + }, + "favicon": "/favicon.png", + "navigation": { + "tabs": [ + { + "tab": "Documentation", + "groups": [ + { + "group": "Home", + "hidden": true, + "pages": ["homepage"] + }, + { + "group": "Get Started", + "pages": [ + "mindsdb", + "quickstart-tutorial", + "releases" + ] + }, + { + "group": "Setup", + "pages": [ + { + "group": "Installation", + "pages": [ + "setup/self-hosted/docker-desktop", + "setup/self-hosted/docker" + ] + }, + { + "group": "Configuration", + "pages": [ + "setup/custom-config", + "setup/environment-vars", + "setup/mindsdb-apis", + "setup/system-defaults" + ] + }, + { + "group": "Learn more", + "pages": [ + "sql/table-structure", + "sql/project", + "mindsdb-gui" + ] + } + ] + } + ] + }, + { + "tab": "Connect", + "groups": [ + { + "group": "Overview", + "pages": [ + "mindsdb-connect", + "mindsdb-fqe", + "mindsdb-objects" + ] + }, + { + "group": "Data Sources", + "pages": [ + "integrations/data-overview", + "integrations/sample-database", + { + "group": "Applications", + "pages": [ + "integrations/app-integrations/binance", + "integrations/app-integrations/confluence", + "integrations/app-integrations/dockerhub", + "integrations/app-integrations/email", + "integrations/app-integrations/github", + "integrations/app-integrations/gitlab", + "integrations/app-integrations/gmail", + "integrations/app-integrations/google-calendar", + "integrations/app-integrations/google-analytics", + "integrations/app-integrations/gong", + "integrations/app-integrations/hackernews", + "integrations/app-integrations/hubspot", + "integrations/app-integrations/instatus", + "integrations/app-integrations/intercom", + "integrations/app-integrations/jira", + "integrations/app-integrations/mediawiki", + "integrations/app-integrations/microsoft-onedrive", + "integrations/app-integrations/microsoft-teams", + "integrations/app-integrations/netsuite", + "integrations/app-integrations/newsapi", + "integrations/app-integrations/paypal", + "integrations/app-integrations/plaid", + "integrations/app-integrations/pypi", + "integrations/app-integrations/reddit", + "integrations/app-integrations/rest-api", + "integrations/app-integrations/salesforce", + "integrations/app-integrations/sendinblue", + "integrations/app-integrations/shopify", + "integrations/app-integrations/slack", + "integrations/app-integrations/strapi", + "integrations/app-integrations/stripe", + "integrations/app-integrations/symbl", + "integrations/app-integrations/twitter", + "integrations/app-integrations/web-crawler", + "integrations/app-integrations/youtube" + ] + }, + { + "group": "Databases", + "pages": [ + "integrations/data-integrations/airtable", + "integrations/data-integrations/amazon-aurora", + "integrations/data-integrations/amazon-dynamodb", + "integrations/data-integrations/amazon-redshift", + "integrations/data-integrations/amazon-s3", + "integrations/data-integrations/apache-cassandra", + "integrations/data-integrations/apache-druid", + "integrations/data-integrations/apache-hive", + "integrations/data-integrations/apache-ignite", + "integrations/data-integrations/apache-impala", + "integrations/data-integrations/apache-pinot", + "integrations/data-integrations/apache-solr", + "integrations/data-integrations/ckan", + "integrations/data-integrations/clickhouse", + "integrations/data-integrations/cloud-spanner", + "integrations/data-integrations/cockroachdb", + "integrations/data-integrations/couchbase", + "integrations/data-integrations/cratedb", + "integrations/data-integrations/d0lt", + "integrations/data-integrations/databend", + "integrations/data-integrations/databricks", + "integrations/data-integrations/datastax", + "integrations/data-integrations/duckdb", + "integrations/data-integrations/edgelessdb", + "integrations/data-integrations/elasticsearch", + "integrations/data-integrations/firebird", + "integrations/data-integrations/google-bigquery", + "integrations/data-integrations/google-cloud-sql", + "integrations/data-integrations/google-sheets", + "integrations/data-integrations/greptimedb", + "integrations/data-integrations/ibm-db2", + "integrations/data-integrations/ibm-informix", + "integrations/data-integrations/influxdb", + "integrations/data-integrations/mariadb", + "integrations/data-integrations/matrixone", + "integrations/data-integrations/microsoft-access", + "integrations/data-integrations/microsoft-sql-server", + "integrations/data-integrations/monetdb", + "integrations/data-integrations/mongodb", + "integrations/data-integrations/mysql", + "integrations/data-integrations/oceanbase", + "integrations/data-integrations/opengauss", + "integrations/data-integrations/oracle", + "integrations/data-integrations/orioledb", + "integrations/data-integrations/planetscale", + "integrations/data-integrations/postgresql", + "integrations/data-integrations/questdb", + "integrations/data-integrations/sap-hana", + "integrations/data-integrations/sap-sql-anywhere", + "integrations/data-integrations/scylladb", + "integrations/data-integrations/singlestore", + "integrations/data-integrations/snowflake", + "integrations/data-integrations/sqlite", + "integrations/data-integrations/starrocks", + "integrations/data-integrations/supabase", + "integrations/data-integrations/surrealdb", + "integrations/data-integrations/tdengine", + "integrations/data-integrations/teradata", + "integrations/data-integrations/tidb", + "integrations/data-integrations/timescaledb", + "integrations/data-integrations/trino", + "integrations/data-integrations/vertica", + "integrations/data-integrations/vitess", + "integrations/data-integrations/yugabytedb" + ] + }, + { + "group": "Vector Stores", + "pages": [ + "integrations/vector-db-integrations/chromadb", + "integrations/vector-db-integrations/couchbase", + "integrations/vector-db-integrations/milvus", + "integrations/vector-db-integrations/pgvector", + "integrations/vector-db-integrations/pinecone", + "integrations/vector-db-integrations/weaviate" + ] + }, + { + "group": "Files", + "pages": [ + "integrations/files/csv-xlsx-xls", + "integrations/files/json", + "integrations/files/txt", + "integrations/files/pdf", + "integrations/files/parquet" + ] + } + ] + }, + { + "group": "Connection", + "pages": [ + { + "group": "Connect MindsDB to SQL Clients", + "pages": [ + "mindsdb_sql/connect/mindsdb_editor", + "mindsdb_sql/connect/mysql-client", + "mindsdb_sql/connect/dbeaver", + "mindsdb_sql/connect/connect-mariadb-skysql", + "mindsdb_sql/connect/sql-alchemy", + "mindsdb_sql/connect/deepnote", + "mindsdb_sql/connect/metabase", + "mindsdb_sql/connect/tableau", + "mindsdb_sql/connect/jupysql", + "mindsdb_sql/connect/grafana" + ] + }, + { + "group": "Connect Data", + "pages": [ + "mindsdb_sql/sql/list-data-handlers", + "mindsdb_sql/sql/create/database", + "mindsdb_sql/sql/drop/database", + "mindsdb_sql/sql/show-databases", + "mindsdb_sql/sql/api/use" + ] + } + ] + }, + { + "group": "Bring Your Own Models", + "pages": [ + "integrations/ai-engines/byom", + "integrations/ai-engines/mlflow" + ] + } + ] + }, + { + "tab": "Unify", + "groups": [ + { + "group": "Overview", + "pages": [ + "mindsdb-unify", + "mindsdb_sql/overview" + ] + }, + { + "group": "Data Unification", + "pages": [ + { + "group": "Knowledge Bases", + "pages": [ + "mindsdb_sql/knowledge_bases/overview", + "mindsdb_sql/knowledge_bases/create", + "mindsdb_sql/knowledge_bases/alter", + "mindsdb_sql/knowledge_bases/insert_data", + "mindsdb_sql/knowledge_bases/query", + "mindsdb_sql/knowledge_bases/hybrid_search", + "mindsdb_sql/knowledge_bases/evaluate", + "mindsdb_sql/knowledge_bases/examples" + ] + }, + { + "group": "Tables, Views, and Files", + "pages": [ + "mindsdb_sql/sql/create/table", + "mindsdb_sql/sql/drop/table", + "mindsdb_sql/sql/api/select", + "mindsdb_sql/sql/native-queries", + "mindsdb_sql/sql/api/update", + "mindsdb_sql/sql/api/insert", + "mindsdb_sql/sql/api/join-on", + "mindsdb_sql/sql/api/delete", + "mindsdb_sql/sql/create/view", + "mindsdb_sql/sql/drop/view", + "mindsdb_sql/sql/api/select-view", + "mindsdb_sql/sql/api/alter-view", + "mindsdb_sql/sql/create/file", + "mindsdb_sql/sql/drop/file", + "mindsdb_sql/sql/api/select-files" + ] + }, + { + "group": "Projects", + "pages": [ + "mindsdb_sql/sql/create/project", + "mindsdb_sql/sql/drop/project", + "mindsdb_sql/sql/list-projects", + "mindsdb_sql/sql/use/project" + ] + } + ] + }, + { + "group": "Data Transformation", + "pages": [ + { + "group": "Custom Functions", + "pages": [ + "mindsdb_sql/functions/llm_function", + "mindsdb_sql/functions/to_markdown_function", + "mindsdb_sql/functions/from_env", + "mindsdb_sql/functions/custom_functions", + "mindsdb_sql/functions/variables" + ] + }, + { + "group": "Standard SQL Support", + "pages": [ + "mindsdb_sql/functions/standard-functions", + "mindsdb_sql/sql_support/cte", + "mindsdb_sql/sql_support/case-when" + ] + } + ] + }, + { + "group": "Data Automation", + "pages": [ + { + "group": "Jobs", + "pages": [ + "mindsdb_sql/sql/create/jobs", + "mindsdb_sql/sql/drop/jobs", + "mindsdb_sql/sql/query-jobs" + ] + }, + { + "group": "Triggers", + "pages": [ + "mindsdb_sql/sql/create/trigger", + "mindsdb_sql/sql/drop/trigger", + "mindsdb_sql/sql/query-triggers" + ] + } + ] + } + ] + }, + { + "tab": "Respond", + "groups": [ + { + "group": "Overview", + "pages": [ + "mindsdb-respond" + ] + }, + { + "group": "Agents", + "pages": [ + "mindsdb_sql/agents/agent", + "mindsdb_sql/agents/agent_syntax", + "mindsdb_sql/agents/agent_gui" + ] + }, + { + "group": "MCP API", + "pages": [ + "model-context-protocol/overview", + "model-context-protocol/usage", + { + "group": "MCP Clients", + "pages": [ + "model-context-protocol/openai", + "model-context-protocol/anthropic", + "model-context-protocol/cursor_usage" + ] + } + ] + } + ] + }, + { + "tab": "MCP API", + "groups": [ + { + "group": "MCP API", + "pages": [ + "model-context-protocol/overview", + "model-context-protocol/usage", + { + "group": "MCP Clients", + "pages": [ + "model-context-protocol/openai", + "model-context-protocol/anthropic", + "model-context-protocol/cursor_usage" + ] + } + ] + } + ] + }, + { + "tab": "SDKs & APIs", + "groups": [ + { + "group": "Overview", + "pages": [ + "overview_sdks_apis" + ] + }, + { + "group": "Interfaces", + "pages": [ + { + "group": "REST API", + "pages": [ + "rest/overview", + { + "group": "Connect", + "icon": "link", + "pages": [ + "rest/authentication", + "rest/usage", + { + "group": "Data Sources", + "pages": [ + "rest/databases/create-databases", + "rest/databases/update-databases", + "rest/databases/delete-databases", + "rest/databases/list-databases", + "rest/databases/list-database" + ] + } + ] + }, + { + "group": "Unify", + "icon": "circle-nodes", + "pages": [ + { + "group": "Projects", + "pages": [ + "rest/projects/get-projects", + "rest/projects/get-project" + ] + }, + { + "group": "Knowledge Bases", + "pages": [ + "rest/knowledge_bases/create", + "rest/knowledge_bases/alter", + "rest/knowledge_bases/insert", + "rest/knowledge_bases/query", + "rest/knowledge_bases/list", + "rest/knowledge_bases/get", + "rest/knowledge_bases/delete" + ] + }, + { + "group": "Tables", + "pages": [ + "rest/tables/create-table", + "rest/tables/delete-table", + "rest/tables/list-tables", + "rest/tables/list-table", + "rest/sql" + ] + }, + { + "group": "Views", + "pages": [ + "rest/views/create-view", + "rest/views/delete-views", + "rest/views/update-view", + "rest/views/list-views", + "rest/views/list-view" + ] + }, + { + "group": "Files", + "pages": [ + "rest/files/upload", + "rest/files/delete", + "rest/files/list" + ] + }, + { + "group": "Jobs", + "pages": [ + "rest/jobs/create", + "rest/jobs/list", + "rest/jobs/get", + "rest/jobs/delete" + ] + } + ] + }, + { + "group": "Respond", + "icon": "comment-dots", + "pages": [ + { + "group": "AI Agents", + "pages": [ + "rest/agents/create", + "rest/agents/list", + "rest/agents/get", + "rest/agents/query", + "rest/agents/update", + "rest/agents/delete" + ] + } + ] + } + ] + }, + { + "group": "Python SDK", + "pages": [ + "sdks/python/overview", + { + "group": "Connect", + "icon": "link", + "pages": [ + { + "group": "Setup", + "pages": [ + "sdks/python/installation", + "sdks/python/connect" + ] + }, + { + "group": "Data Sources", + "pages": [ + "sdks/python/list_data_handlers", + "sdks/python/create_database", + "sdks/python/drop_database", + "sdks/python/list_databases" + ] + } + ] + }, + { + "group": "Unify", + "icon": "circle-nodes", + "pages": [ + { + "group": "Projects", + "pages": [ + "sdks/python/create_project", + "sdks/python/drop_project", + "sdks/python/list_projects", + "sdks/python/query_projects" + ] + }, + { + "group": "Knowledge Bases", + "pages": [ + "sdks/python/knowledge_bases/overview", + "sdks/python/knowledge_bases/create", + "sdks/python/knowledge_bases/insert_data", + "sdks/python/knowledge_bases/query" + ] + }, + { + "group": "Tables, Views, and Files", + "pages": [ + "sdks/python/create_table", + "sdks/python/delete_table", + "sdks/python/query_table", + "sdks/python/native_queries", + "sdks/python/update_table", + "sdks/python/insert_into_table", + "sdks/python/join_on", + "sdks/python/delete_from", + "sdks/python/create_view", + "sdks/python/drop_view", + "sdks/python/query_view", + "sdks/python/list_views", + "sdks/python/upload_file", + "sdks/python/delete_file", + "sdks/python/query_files" + ] + }, + { + "group": "Jobs", + "pages": [ + "sdks/python/create_job", + "sdks/python/drop_job", + "sdks/python/list_jobs", + "sdks/python/refresh_job", + "sdks/python/get_history" + ] + } + ] + }, + { + "group": "Respond", + "icon": "comment-dots", + "pages": [ + "sdks/python/agents" + ] + } + ] + }, + { + "group": "JavaScript SDK", + "pages": [ + "sdks/javascript/overview", + { + "group": "Connect", + "icon": "link", + "pages": [ + { + "group": "Setup", + "pages": [ + "sdks/javascript/installation", + "sdks/javascript/connect" + ] + }, + { + "group": "Data Sources", + "pages": [ + "sdks/javascript/list_data_handlers", + "sdks/javascript/create_database", + "sdks/javascript/get_database", + "sdks/javascript/drop_database", + "sdks/javascript/list_databases" + ] + } + ] + }, + { + "group": "Unify", + "icon": "circle-nodes", + "pages": [ + { + "group": "Projects", + "pages": [ + "sdks/javascript/list_projects" + ] + }, + { + "group": "Tables, Views, and Files", + "pages": [ + "sdks/javascript/create_table", + "sdks/javascript/delete_table", + "sdks/javascript/query_table", + "sdks/javascript/native_queries", + "sdks/javascript/update_table", + "sdks/javascript/insert_into_table", + "sdks/javascript/join_on", + "sdks/javascript/delete_from", + "sdks/javascript/create_view", + "sdks/javascript/drop_view", + "sdks/javascript/query_view", + "sdks/javascript/list_views", + "sdks/javascript/query_files" + ] + } + ] + }, + { + "group": "Respond", + "icon": "comment-dots", + "pages": [ + "sdks/javascript/agents" + ] + } + ] + } + ] + } + ] + }, + { + "tab": "Contribute", + "groups": [ + { + "group": "Contribute", + "pages": [ + "contribute/contribute", + "contribute/install", + "contribute/python-coding-standards", + "contribute/data-handlers", + "contribute/app-handlers", + "contribute/integrations-readme", + "contribute/docs", + "contribute/community" + ] + } + ] + }, + { + "tab": "FAQs", + "groups": [ + { + "group": "FAQs", + "pages": [ + "faqs/benefits", + "faqs/persist-predictions", + "faqs/mindsdb-with-php", + "faqs/disposable-email-doman-and-openai", + "faqs/missing-required-cpu-features" + ] + } + ] + } + ], + "global": { + "anchors": [ + + ] + } + }, + "contextual": { + "options":["copy"] + }, + "logo": { + "light": "/logo/light.svg", + "dark": "/logo/dark.svg", + "href": "/homepage" + }, + "api": { + "mdx": { + "server": "http://127.0.0.1:47334" + } + }, + "navbar": { + "links": [ + { + "label": "Slack", + "href": "https://mindsdb.com/joincommunity" + }, + { + "label": "GitHub", + "href": "https://github.com/mindsdb/mindsdb" + }, + { + "label": "Website", + "href": "https://mindsdb.com/" + } + ], + "primary": { + "type": "button", + "label": "Watch Video", + "href": "https://www.youtube.com/watch?v=HPwUPJ3NWLI" + } + }, + "footer": { + "socials": { + "github": "https://github.com/mindsdb/mindsdb", + "facebook": "https://www.facebook.com/MindsDB", + "twitter": "https://twitter.com/MindsDB", + "slack": "https://mindsdb.com/joincommunity", + "linkedin": "https://www.linkedin.com/company/mindsdb", + "youtube": "https://www.youtube.com/channel/UC5_wBOLCWath6q1iTgPPD5A", + "medium": "https://medium.com/mindsdb" + } + }, + "integrations": { + "gtm": { + "tagId": "GTM-MNN47J3" + } + }, + "redirects": [ + { + "source": "/app-integrations/github", + "destination": "/integrations/app-integrations/github" + }, + { + "source": "/app-integrations/gmail", + "destination": "/integrations/app-integrations/gmail" + }, + { + "source": "/app-integrations/google-calendar", + "destination": "/integrations/app-integrations/google-calendar" + }, + { + "source": "/app-integrations/google-analytics", + "destination": "/integrations/app-integrations/google-analytics" + }, + { + "source": "/app-integrations/shopify", + "destination": "/integrations/app-integrations/shopify" + }, + { + "source": "/app-integrations/twitter", + "destination": "/integrations/app-integrations/twitter" + }, + { + "source": "/app-integrations/youtube", + "destination": "/integrations/app-integrations/youtube" + }, + { + "source": "/data-integrations/all-data-integrations", + "destination": "/integrations/data-integrations/all-data-integrations" + }, + { + "source": "/data-integrations/airtable", + "destination": "/integrations/data-integrations/airtable" + }, + { + "source": "/data-integrations/amazon-aurora", + "destination": "/integrations/data-integrations/amazon-aurora" + }, + { + "source": "/data-integrations/amazon-dynamodb", + "destination": "/integrations/data-integrations/amazon-dynamodb" + }, + { + "source": "/data-integrations/amazon-redshift", + "destination": "/integrations/data-integrations/amazon-redshift" + }, + { + "source": "/data-integrations/amazon-s3", + "destination": "/integrations/data-integrations/amazon-s3" + }, + { + "source": "/data-integrations/apache-cassandra", + "destination": "/integrations/data-integrations/apache-cassandra" + }, + { + "source": "/data-integrations/apache-druid", + "destination": "/integrations/data-integrations/apache-druid" + }, + { + "source": "/data-integrations/apache-hive", + "destination": "/integrations/data-integrations/apache-hive" + }, + { + "source": "/data-integrations/apache-ignite", + "destination": "/integrations/data-integrations/apache-ignite" + }, + { + "source": "/data-integrations/apache-impala", + "destination": "/integrations/data-integrations/apache-impala" + }, + { + "source": "/data-integrations/apache-pinot", + "destination": "/integrations/data-integrations/apache-pinot" + }, + { + "source": "/data-integrations/apache-solr", + "destination": "/integrations/data-integrations/apache-solr" + }, + { + "source": "/data-integrations/ckan", + "destination": "/integrations/data-integrations/ckan" + }, + { + "source": "/data-integrations/clickhouse", + "destination": "/integrations/data-integrations/clickhouse" + }, + { + "source": "/data-integrations/cloud-spanner", + "destination": "/integrations/data-integrations/cloud-spanner" + }, + { + "source": "/data-integrations/cockroachdb", + "destination": "/integrations/data-integrations/cockroachdb" + }, + { + "source": "/data-integrations/couchbase", + "destination": "/integrations/data-integrations/couchbase" + }, + { + "source": "/data-integrations/cratedb", + "destination": "/integrations/data-integrations/cratedb" + }, + { + "source": "/data-integrations/d0lt", + "destination": "/integrations/data-integrations/d0lt" + }, + { + "source": "/data-integrations/databend", + "destination": "/integrations/data-integrations/databend" + }, + { + "source": "/data-integrations/databricks", + "destination": "/integrations/data-integrations/databricks" + }, + { + "source": "/data-integrations/datastax", + "destination": "/integrations/data-integrations/datastax" + }, + { + "source": "/data-integrations/duckdb", + "destination": "/integrations/data-integrations/duckdb" + }, + { + "source": "/data-integrations/edgelessdb", + "destination": "/integrations/data-integrations/edgelessdb" + }, + { + "source": "/data-integrations/elasticsearch", + "destination": "/integrations/data-integrations/elasticsearch" + }, + { + "source": "/data-integrations/firebird", + "destination": "/integrations/data-integrations/firebird" + }, + { + "source": "/data-integrations/google-bigquery", + "destination": "/integrations/data-integrations/google-bigquery" + }, + { + "source": "/data-integrations/google-cloud-sql", + "destination": "/integrations/data-integrations/google-cloud-sql" + }, + { + "source": "/data-integrations/google-sheets", + "destination": "/integrations/data-integrations/google-sheets" + }, + { + "source": "/data-integrations/greptimedb", + "destination": "/integrations/data-integrations/greptimedb" + }, + { + "source": "/data-integrations/ibm-db2", + "destination": "/integrations/data-integrations/ibm-db2" + }, + { + "source": "/data-integrations/ibm-informix", + "destination": "/integrations/data-integrations/ibm-informix" + }, + { + "source": "/data-integrations/influxdb", + "destination": "/integrations/data-integrations/influxdb" + }, + { + "source": "/data-integrations/mariadb", + "destination": "/integrations/data-integrations/mariadb" + }, + { + "source": "/data-integrations/matrixone", + "destination": "/integrations/data-integrations/matrixone" + }, + { + "source": "/data-integrations/microsoft-access", + "destination": "/integrations/data-integrations/microsoft-access" + }, + { + "source": "/data-integrations/microsoft-sql-server", + "destination": "/integrations/data-integrations/microsoft-sql-server" + }, + { + "source": "/data-integrations/monetdb", + "destination": "/integrations/data-integrations/monetdb" + }, + { + "source": "/data-integrations/mysql", + "destination": "/integrations/data-integrations/mysql" + }, + { + "source": "/data-integrations/oceanbase", + "destination": "/integrations/data-integrations/oceanbase" + }, + { + "source": "/data-integrations/opengauss", + "destination": "/integrations/data-integrations/opengauss" + }, + { + "source": "/data-integrations/oracle", + "destination": "/integrations/data-integrations/oracle" + }, + { + "source": "/data-integrations/orioledb", + "destination": "/integrations/data-integrations/orioledb" + }, + { + "source": "/data-integrations/planetscale", + "destination": "/integrations/data-integrations/planetscale" + }, + { + "source": "/data-integrations/postgresql", + "destination": "/integrations/data-integrations/postgresql" + }, + { + "source": "/data-integrations/questdb", + "destination": "/integrations/data-integrations/questdb" + }, + { + "source": "/data-integrations/sap-hana", + "destination": "/integrations/data-integrations/sap-hana" + }, + { + "source": "/data-integrations/sap-sql-anywhere", + "destination": "/integrations/data-integrations/sap-sql-anywhere" + }, + { + "source": "/data-integrations/scylladb", + "destination": "/integrations/data-integrations/scylladb" + }, + { + "source": "/data-integrations/singlestore", + "destination": "/integrations/data-integrations/singlestore" + }, + { + "source": "/data-integrations/snowflake", + "destination": "/integrations/data-integrations/snowflake" + }, + { + "source": "/data-integrations/sqlite", + "destination": "/integrations/data-integrations/sqlite" + }, + { + "source": "/data-integrations/starrocks", + "destination": "/integrations/data-integrations/starrocks" + }, + { + "source": "/data-integrations/supabase", + "destination": "/integrations/data-integrations/supabase" + }, + { + "source": "/data-integrations/surrealdb", + "destination": "/integrations/data-integrations/surrealdb" + }, + { + "source": "/data-integrations/tdengine", + "destination": "/integrations/data-integrations/tdengine" + }, + { + "source": "/data-integrations/teradata", + "destination": "/integrations/data-integrations/teradata" + }, + { + "source": "/data-integrations/tidb", + "destination": "/integrations/data-integrations/tidb" + }, + { + "source": "/data-integrations/timescaledb", + "destination": "/integrations/data-integrations/timescaledb" + }, + { + "source": "/data-integrations/trino", + "destination": "/integrations/data-integrations/trino" + }, + { + "source": "/data-integrations/vertica", + "destination": "/integrations/data-integrations/vertica" + }, + { + "source": "/data-integrations/vitess", + "destination": "/integrations/data-integrations/vitess" + }, + { + "source": "/data-integrations/yugabytedb", + "destination": "/integrations/data-integrations/yugabytedb" + }, + { + "source": "/custom-model/byom", + "destination": "/integrations/ai-engines/byom" + }, + { + "source": "/custom-model/mlflow", + "destination": "/integrations/ai-engines/mlflow" + }, + { + "source": "/connect/mindsdb_editor", + "destination": "/mindsdb_sql/connect/mindsdb_editor" + }, + { + "source": "/connect/mysql-client", + "destination": "/mindsdb_sql/connect/mysql-client" + }, + { + "source": "/connect/dbeaver", + "destination": "/mindsdb_sql/connect/dbeaver" + }, + { + "source": "/connect/connect-mariadb-skysql", + "destination": "/mindsdb_sql/connect/connect-mariadb-skysql" + }, + { + "source": "/connect/sql-alchemy", + "destination": "/mindsdb_sql/connect/sql-alchemy" + }, + { + "source": "/connect/deepnote", + "destination": "/mindsdb_sql/connect/deepnote" + }, + { + "source": "/connect/metabase", + "destination": "/mindsdb_sql/connect/metabase" + }, + { + "source": "/connect/tableau", + "destination": "/mindsdb_sql/connect/tableau" + }, + { + "source": "/connect/jupysql", + "destination": "/mindsdb_sql/connect/jupysql" + }, + { + "source": "/connect/grafana", + "destination": "/mindsdb_sql/connect/grafana" + }, + { + "source": "/sql/list-data-handlers", + "destination": "/mindsdb_sql/sql/list-data-handlers" + }, + { + "source": "/sql/create/database", + "destination": "/mindsdb_sql/sql/create/database" + }, + { + "source": "/sql/drop/database", + "destination": "/mindsdb_sql/sql/drop/database" + }, + { + "source": "/sql/show-databases", + "destination": "/mindsdb_sql/sql/show-databases" + }, + { + "source": "/sql/api/use", + "destination": "/mindsdb_sql/sql/api/use" + }, + { + "source": "/sql/create/file", + "destination": "/mindsdb_sql/sql/create/file" + }, + { + "source": "/sql/list-ml-handlers", + "destination": "/mindsdb_sql/sql/list-ml-handlers" + }, + { + "source": "/sql/create/ml-engine", + "destination": "/mindsdb_sql/sql/create/ml-engine" + }, + { + "source": "/sql/drop/ml-engine", + "destination": "/mindsdb_sql/sql/drop/ml-engine" + }, + { + "source": "/sql/show-ml-engines", + "destination": "/mindsdb_sql/sql/show-ml-engines" + }, + { + "source": "/sql/create/project", + "destination": "/mindsdb_sql/sql/create/project" + }, + { + "source": "/sql/drop/project", + "destination": "/mindsdb_sql/sql/drop/project" + }, + { + "source": "/sql/list-projects", + "destination": "/mindsdb_sql/sql/list-projects" + }, + { + "source": "/sql/create/model", + "destination": "/mindsdb_sql/sql/create/model" + }, + { + "source": "/sql/drop/model", + "destination": "/mindsdb_sql/sql/drop/model" + }, + { + "source": "/sql/show-models", + "destination": "/mindsdb_sql/sql/show-models" + }, + { + "source": "/sql/api/describe", + "destination": "/mindsdb_sql/sql/api/describe" + }, + { + "source": "/sql/api/retrain", + "destination": "/mindsdb_sql/sql/api/retrain" + }, + { + "source": "/sql/api/finetune", + "destination": "/mindsdb_sql/sql/api/finetune" + }, + { + "source": "/sql/api/manage-models-versions", + "destination": "/mindsdb_sql/sql/api/manage-models-versions" + }, + { + "source": "/sql/get-single-prediction", + "destination": "/mindsdb_sql/sql/get-single-prediction" + }, + { + "source": "/sql/get-batch-predictions", + "destination": "/mindsdb_sql/sql/get-batch-predictions" + }, + { + "source": "/sql/api/join", + "destination": "/mindsdb_sql/sql/api/join" + }, + { + "source": "/sql/create/table", + "destination": "/mindsdb_sql/sql/create/table" + }, + { + "source": "/sql/drop/table", + "destination": "/mindsdb_sql/sql/drop/table" + }, + { + "source": "/sql/api/select", + "destination": "/mindsdb_sql/sql/api/select" + }, + { + "source": "/sql/native-queries", + "destination": "/mindsdb_sql/sql/native-queries" + }, + { + "source": "/sql/api/update", + "destination": "/mindsdb_sql/sql/api/update" + }, + { + "source": "/sql/api/insert", + "destination": "/mindsdb_sql/sql/api/insert" + }, + { + "source": "/sql/api/join-on", + "destination": "/mindsdb_sql/sql/api/join-on" + }, + { + "source": "/sql/api/delete", + "destination": "/mindsdb_sql/sql/api/delete" + }, + { + "source": "/sql/create/view", + "destination": "/mindsdb_sql/sql/create/view" + }, + { + "source": "/sql/drop/view", + "destination": "/mindsdb_sql/sql/drop/view" + }, + { + "source": "/sql/api/select-view", + "destination": "/mindsdb_sql/sql/api/select-view" + }, + { + "source": "/sql/drop/file", + "destination": "/mindsdb_sql/sql/drop/file" + }, + { + "source": "/sql/api/select-files", + "destination": "/mindsdb_sql/sql/api/select-files" + }, + { + "source": "/sql/create/jobs", + "destination": "/mindsdb_sql/sql/create/jobs" + }, + { + "source": "/sql/drop/jobs", + "destination": "/mindsdb_sql/sql/drop/jobs" + }, + { + "source": "/sql/query-jobs", + "destination": "/mindsdb_sql/sql/query-jobs" + }, + { + "source": "/sql/create/trigger", + "destination": "/mindsdb_sql/sql/create/trigger" + }, + { + "source": "/sql/drop/trigger", + "destination": "/mindsdb_sql/sql/drop/trigger" + }, + { + "source": "/sql/query-triggers", + "destination": "/mindsdb_sql/sql/query-triggers" + }, + { + "source": "/agents/agent", + "destination": "/mindsdb_sql/agents/agent" + }, + { + "source": "/agents/chatbot", + "destination": "/mindsdb_sql/agents/chatbot" + }, + { + "source": "/agents/knowledge-bases", + "destination": "/mindsdb_sql/agents/knowledge-bases" + }, + { + "source": "/features/data-integrations", + "destination": "/integrations/data-overview" + }, + { + "source": "/mindsdb_sql/agents/knowledge-bases", + "destination": "/mindsdb_sql/knowledge-bases" + }, + { + "source": "/mindsdb_sql/knowledge-bases", + "destination": "/mindsdb_sql/knowledge_bases/overview" + }, + { + "source": "/what-is-mindsdb", + "destination": "/mindsdb" + }, + { + "source": "/mcp/overview", + "destination": "/model-context-protocol/overview" + }, + { + "source": "/mcp/usage", + "destination": "/model-context-protocol/usage" + }, + { + "source": "/mcp/openai", + "destination": "/model-context-protocol/openai" + }, + { + "source": "/mcp/anthropic", + "destination": "/model-context-protocol/anthropic" + }, + { + "source": "/mcp/cursor_usage", + "destination": "/model-context-protocol/cursor_usage" + }, + { + "source": "/use-cases/overview", + "destination": "/homepage" + }, + { + "source": "/", + "destination": "/homepage" + } + ] +} diff --git a/docs/favicon-dark.png b/docs/favicon-dark.png new file mode 100644 index 0000000..27c9b42 Binary files /dev/null and b/docs/favicon-dark.png differ diff --git a/docs/favicon.png b/docs/favicon.png new file mode 100644 index 0000000..70a9955 Binary files /dev/null and b/docs/favicon.png differ diff --git a/docs/favicon_old.png b/docs/favicon_old.png new file mode 100644 index 0000000..7e1ee76 Binary files /dev/null and b/docs/favicon_old.png differ diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 0000000..c27ab44 --- /dev/null +++ b/docs/index.html @@ -0,0 +1,397 @@ + + + + +Minds Cowork — Docs + + + + + + + + + + + + + + + + + + + + + + + +
+
Documentation
+

Build and automate
with Minds Cowork

+

+ A general-purpose AI platform for knowledge workers. Automate recurring tasks, + create artifacts, and deploy anywhere — on your terms. +

+ +
+
+ +
+
Guide
+

Get Started

+

Clone, install dependencies, and run the desktop or web app in under five minutes.

+ Setup guide → +
+
+ +
+
Examples
+

Use Cases

+

See what creators, operators, and strategists are building with the platform.

+ Explore examples → +
+
+ +
+
Reference
+

API

+

REST endpoints for conversations, projects, artifacts, schedules, connectors, and more.

+ API reference → +
+
+
+ +
+ +
+
+ +
frontend
+
Electron + Vite desktop app. Also ships as a web SPA via make dev-web.
+ +
+
+ +
backend / core_api
+
FastAPI server. Conversations, projects, artifacts, schedules, connectors.
+ +
+
+ +
backend / core_agent
+
Anton — the autonomous coding and reasoning agent powering task execution.
+ +
+
+ +
query engine optional
+
Embeddable query engine for conversational business intelligence across data sources.
+ +
+
+
+ + + + + + diff --git a/docs/setup.html b/docs/setup.html new file mode 100644 index 0000000..55d5ee3 --- /dev/null +++ b/docs/setup.html @@ -0,0 +1,619 @@ + + + + +Setup — Minds Cowork Docs + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
Setup
+

Get Started

+

+ The simplest way to use Minds Cowork is the pre-built app — available on web and desktop. +

+ + +
+

Desktop or Web App

+

Pre-built, packaged and ready — no setup required.

+ +
+ +
+ +
+

Build From Source

+

Or build from source if you want to hack the code ;)

+
+ + +
+

01 Prerequisites

+

Make sure the following are installed on your machine before starting.

+
+
+
Node.js
+
v20 or later
+
+
+
Python
+
3.12 or later
+
+
+
uv
+
Python package manager
+
+
+
make
+
pre-installed on macOS / Linux
+
+
+

Install uv if you don't have it:

+
+
bash
+
curl -LsSf https://astral.sh/uv/install.sh | sh
+
+
+ + +
+

02 Clone & install

+

Clone with --recurse-submodules to pull frontend, backend/core_api, and backend/core_agent in one shot.

+
+
bash
+
git clone --recurse-submodules https://github.com/mindsdb/minds-platform.git
+cd minds-platform
+make setup
+
+

make setup runs npm ci for the frontend and uv sync for both Python backends. It is automatically skipped on subsequent runs if nothing changed in the lock files.

+
+ + +
+

Desktop app

+

Starts the FastAPI backend (with hot reload) and the Electron renderer (TypeScript watch + Vite HMR) in parallel.

+
+
bash
+
make dev
+
+

Press Ctrl-C once to shut down all processes cleanly.

+

To open DevTools, set ANTON_OPEN_DEVTOOLS=1 before running:

+
+
bash
+
ANTON_OPEN_DEVTOOLS=1 make dev
+
+
+ + +
+

Web app

+

Starts the FastAPI backend and the Vite dev server with BUILD_TARGET=web. Opens the browser automatically.

+
+
bash
+
make dev-web
+
+

The app is served at http://localhost:5173. The API runs on http://localhost:26866.

+
+ API key required. Set ANTON_ANTHROPIC_API_KEY=sk-ant-... in a .env file inside backend/core_api/ before running. +
+
+ + +
+

Docker

+

Run the full stack in containers — the web SPA served by nginx on port 3000, the API on port 26866.

+
+
bash
+
make docker-build   # build both images
+make docker-up      # start everything
+
+

Or pass your API key inline:

+
+
bash
+
ANTON_ANTHROPIC_API_KEY=sk-ant-... docker compose up --build
+
+

Open http://localhost:3000 when the health check turns green.

+
+ + +
+

All make commands

+ + + + + + + + + + + + + + + + + + + + + + + + +
CommandWhat it does
make / make helpList every target with a one-line description (this is the default goal).
make setupInstall all dependencies (npm + uv). Auto-skipped when lock files haven't changed.
make devStart backend + Electron with full hot reload (local module source).
make dev-webStart backend + Vite web dev server.
make buildProduction build of the frontend (renderer + main process).
make dist-macBuild and package a macOS .dmg.
make dist-winBuild and package a Windows .exe.
make docker-buildBuild the api and web Docker images.
make docker-upStart the Docker stack (docker compose up).
make docker-downStop and remove containers.
make flushWipe all local installs + app data for a fresh start (see below).
Module-branch workflow (see below)
make refsPrint which module branches the next run will use.
make useCheck out your dev.env refs across all submodules.
make server(Re)install the Electron desktop server from your branch.
make appRun the desktop app against your branch (auto-update off).
make baselineReset every submodule to the superproject's pinned commits.
make pinRecord the submodules' current commits as the superproject pins (one deliberate commit).
+ +

Working on module branches

+

This repo is a superproject that pins each module (frontend, backend/core_api, backend/core_agent, backend/data-vault) to a commit. To let a team work on module branches without polluting git status or fighting over pins:

+

1. Pick your branches in a gitignored dev.env (copy the template):

+
cp dev.env.example dev.env      # then set REF=feat/my-thing (or per-module API_REF=…)
+

2. make follows it — one knob, both run paths. make use checks out those refs; make dev/dev-web run the local module source on them, and make server + make app run the desktop app against the matching branch server.

+

Every submodule is configured with ignore = all, so your branch work never shows up as a superproject change — the parent git status stays clean. Pins move only via make pin (a deliberate, reviewable commit), and make baseline snaps submodules back to the pinned commits when you're not developing a module.

+
+ One DB, one ref. make dev (local source) and the desktop app (make app) share ~/.cowork/cowork.db, so keep both on the same branch — a migration applied by one must exist in the other, or the app fails to start with Can't locate revision …. make flush resets if they drift. +
+ +

Reset to a clean slate

+

make flush returns the machine to a pre-install state. It uninstalls the local runtime — the cowork-server uv tool and the backend/core_api/.venv + backend/core_agent/.venv — and deletes all app state: ~/.anton (provider keys / .env) and ~/.cowork (database, hermes, projects).

+

Use it to test the from-scratch install flow or to recover from a broken install. It prompts for confirmation before deleting; pass FORCE=1 to skip the prompt in scripts/CI. The next make setup (or app launch) reinstalls everything.

+
+ Destructive. This permanently deletes your conversations and saved provider keys. There is no undo. +
+
make flush          # prompts before wiping
+make flush FORCE=1  # no prompt (CI / scripts)
+
+
+
+ + + + + + diff --git a/docs/use-cases.html b/docs/use-cases.html new file mode 100644 index 0000000..937cb98 --- /dev/null +++ b/docs/use-cases.html @@ -0,0 +1,403 @@ + + + + +Use Cases — Minds Cowork Docs + + + + + + + + + + + + + + + + + + + + + + + +
+
Use Cases
+

Two things.
Automate and Create.

+

+ Minds Cowork is built around two core primitives. Everything below is an expression of one or both. +

+
+
+
Automate
+
Recurring tasks that run without you — reports, monitoring, workflows, digests.
+
+
+
Create
+
Artifacts that used to take hours — apps, decks, docs, analyses, dashboards.
+
+
+
+ +
+ + +
+
+
+
+

Creators

+
Writers, designers, content teams
+
+
+
+
+ Automate +
Content pipeline on autopilot
+
Draft, research, and publish in one run. The agent handles the full workflow from brief to publication.
+
blog → social → newsletter
+
+
+ Automate +
Repurpose long-form content
+
Feed a transcript or essay and get a Twitter thread, LinkedIn post, and email summary — automatically.
+
video → clips → captions → posts
+
+
+ Create +
Personal knowledge base
+
Upload your notes, docs, and bookmarks. Ask questions in plain language and get answers that actually reference your material.
+
+
+
+ + +
+
+
+
+

Operators

+
Sales, support, finance, engineering teams
+
+
+
+
+ Automate +
Live data reports, written for you
+
Connect your data source and set a schedule. Every Monday the agent pulls fresh numbers and writes the summary.
+
data → analysis → digest → send
+
+
+ Automate +
Meeting notes to tasks
+
Paste a transcript or upload a recording. The agent extracts action items and creates tasks — hands-free.
+
meeting → notes → actions → tasks
+
+
+ Automate +
Thread monitoring and triage
+
Monitor a Slack channel or email thread and surface only what actually needs a decision — nothing else.
+
+
+
+ + +
+
+
+
+

Strategists

+
Analysts, founders, product and research teams
+
+
+
+
+ Create +
Ask across all your data
+
Query across docs, tickets, spreadsheets, and databases in plain language. No SQL, no dashboards.
+
+
+ Automate +
Competitive research digest
+
Run a competitor sweep on a schedule. Every week you get a structured digest of what changed — pricing, features, messaging.
+
sources → extract → compare → report
+
+
+ Create +
Synthesize feedback at scale
+
Feed support tickets, reviews, and survey responses. Get back themes, sentiment, and concrete product signal.
+
feedback → themes → insights → action
+
+
+
+ + +
+
+
+
+

For everyone

+
Any knowledge worker with repetitive work
+
+
+
+
+ Automate +
Automate any multi-step task
+
If it involves reading something and writing something else on a schedule, the agent can own it.
+
+
+ Create +
Build internal AI tools
+
Describe what your team needs. The agent builds it — a web app, a form, a dashboard — and deploys it, no engineering required.
+
+
+
+ +
+ +
+
+
+

Ready to build?

+

Set up the platform in minutes and start automating your first workflow today.

+
+ Get started → +
+
+ + + + + +