From 310eba8902b21e048579142b17d8655bbd750260 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Sat, 2 May 2026 16:02:57 +0000 Subject: [PATCH 01/16] Add AGENTS.md with cloud-specific instructions for development environment Co-authored-by: QuantuM --- AGENTS.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 AGENTS.md diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 00000000..9a108eba --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,29 @@ +# AGENTS.md + +## Cursor Cloud specific instructions + +This is GitHub's `.github` meta-repository containing default community health files (README, CODE_OF_CONDUCT, CONTRIBUTING, SECURITY) and a repolinter configuration. There is **no application code, no build system, no tests, and no package dependencies**. + +### What this repo contains + +- `README.md` / `profile/README.md` — Organization description and profile page +- `CODE_OF_CONDUCT.md` — Contributor Covenant v2.1 +- `CONTRIBUTING.md` — Default contributing guidelines +- `SECURITY.md` — Security vulnerability reporting policy +- `config/repolinter-ruleset.json` — Repolinter rules enforcing LICENSE, README, and CODEOWNERS file presence + +### Running repolinter (the only tool) + +Repolinter is the only tooling referenced by this repo. To lint the repo against its ruleset: + +```sh +repolinter lint --rulesetFile config/repolinter-ruleset.json +``` + +This checks 3 rules: `license-file-is-MIT`, `readme-file-exists`, and `codeowners-file-exists`. + +### Gotchas + +- `config/repolinter-ruleset.json` has a trailing comma on line 66 which is technically invalid JSON, but repolinter parses it without error. +- `CONTRIBUTING.md` references `script/bootstrap` and `script/cibuild` — these scripts do **not** exist in this repo and are generic placeholder instructions. +- Repolinter's `fix` actions may auto-create files (e.g. CODEOWNERS) when rules fail — be aware of untracked files after a lint run. From 4ce164ee5731a41d329188729b5020cef4e81e09 Mon Sep 17 00:00:00 2001 From: "cubic-dev-ai[bot]" <1082092+cubic-dev-ai[bot]@users.noreply.github.com> Date: Sat, 2 May 2026 16:36:14 +0000 Subject: [PATCH 02/16] fix: correct trailing comma line reference in AGENTS.md from 66 to 65 --- AGENTS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AGENTS.md b/AGENTS.md index 9a108eba..938829c8 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -24,6 +24,6 @@ This checks 3 rules: `license-file-is-MIT`, `readme-file-exists`, and `codeowner ### Gotchas -- `config/repolinter-ruleset.json` has a trailing comma on line 66 which is technically invalid JSON, but repolinter parses it without error. +- `config/repolinter-ruleset.json` has a trailing comma on line 65 (closing `codeowners-file-exists`) which is technically invalid JSON, but repolinter parses it without error. - `CONTRIBUTING.md` references `script/bootstrap` and `script/cibuild` — these scripts do **not** exist in this repo and are generic placeholder instructions. - Repolinter's `fix` actions may auto-create files (e.g. CODEOWNERS) when rules fail — be aware of untracked files after a lint run. From 96c7752fa8b1a506f7c43796f1328734b39b0905 Mon Sep 17 00:00:00 2001 From: QuantuM Date: Sat, 2 May 2026 19:40:48 +0100 Subject: [PATCH 03/16] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- AGENTS.md | 1 - 1 file changed, 1 deletion(-) diff --git a/AGENTS.md b/AGENTS.md index 938829c8..1c146ae3 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -24,6 +24,5 @@ This checks 3 rules: `license-file-is-MIT`, `readme-file-exists`, and `codeowner ### Gotchas -- `config/repolinter-ruleset.json` has a trailing comma on line 65 (closing `codeowners-file-exists`) which is technically invalid JSON, but repolinter parses it without error. - `CONTRIBUTING.md` references `script/bootstrap` and `script/cibuild` — these scripts do **not** exist in this repo and are generic placeholder instructions. - Repolinter's `fix` actions may auto-create files (e.g. CODEOWNERS) when rules fail — be aware of untracked files after a lint run. From 1aa7b4ca8ae9f3cb00efa57d43c377bea427509d Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Sat, 2 May 2026 18:57:46 +0000 Subject: [PATCH 04/16] Add AGENTS.md with cloud-specific development instructions Co-authored-by: QuantuM --- AGENTS.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 AGENTS.md diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 00000000..dcac6582 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,23 @@ +# AGENTS.md + +## Cursor Cloud specific instructions + +This is a GitHub organization `.github` repository containing community health files (Markdown docs and a repolinter config). There is no application code, no build step, and no services to run. + +### Repository contents + +- `README.md`, `CONTRIBUTING.md`, `CODE_OF_CONDUCT.md`, `SECURITY.md` — community health files +- `profile/README.md` — GitHub organization profile page +- `config/repolinter-ruleset.json` — repolinter rules for enforcing repo standards (MIT license, README, CODEOWNERS) + +### Available dev tools + +- **repolinter**: `repolinter lint --rulesetFile config/repolinter-ruleset.json` — runs repo policy checks using the custom ruleset +- **markdownlint**: `markdownlint '*.md' 'profile/*.md'` — lints Markdown files (many pre-existing warnings are expected) + +### Known issues + +- `config/repolinter-ruleset.json` has a trailing comma on the last rule entry (line 65-66), which makes it invalid strict JSON. Repolinter's parser handles it, but `JSON.parse()` and `python3 json.load()` will fail. Do not attempt to "fix" this unless explicitly asked. +- `CONTRIBUTING.md` references `script/bootstrap` and `script/cibuild` commands that do not exist in this repository — they are generic placeholder instructions. +- Repolinter's `license-file-is-MIT` rule will flag a warning because this repo has no LICENSE file (expected for an org-level `.github` repo). +- Running `repolinter lint` with the custom ruleset may auto-create a `CODEOWNERS` file via its fix rule. Clean up with `rm -f CODEOWNERS` if this happens unintentionally. From 7ed84aea081bc0f434da6811450c7ab39beb88b0 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Sat, 2 May 2026 19:06:40 +0000 Subject: [PATCH 05/16] Add AGENTS.md with Cursor Cloud specific instructions Co-authored-by: QuantuM --- AGENTS.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 AGENTS.md diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 00000000..2767b115 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,18 @@ +## Cursor Cloud specific instructions + +This is GitHub's `.github` organization-level meta-repository. It contains **no application code** — only Markdown community health files (`README.md`, `CODE_OF_CONDUCT.md`, `CONTRIBUTING.md`, `SECURITY.md`, `profile/README.md`) and a `config/repolinter-ruleset.json` configuration. + +### Linting + +The only tooling available is [repolinter](https://github.com/todogroup/repolinter), which validates repos against policy rules defined in `config/repolinter-ruleset.json`. + +Run it with: +``` +repolinter lint --rulesetFile config/repolinter-ruleset.json --dryRun . +``` + +Use `--dryRun` to avoid auto-creating fix files (e.g. a `CODEOWNERS` file). Without `--dryRun`, repolinter will apply fixes and create files in the working directory. + +### No build, no tests, no dev server + +There are no dependencies, no test suite, no build step, and no dev server to run. Changes are Markdown-only and can be validated visually or with repolinter. From ca36d99061c98a27d9721e3df8c17d9e4cdcec68 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Sat, 2 May 2026 19:40:47 +0000 Subject: [PATCH 06/16] docs: add demo note to README Co-authored-by: QuantuM --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 3f4e6314..1cb87a46 100644 --- a/README.md +++ b/README.md @@ -3,3 +3,7 @@ *Community health files for the [@GitHub](https://github.com/github) organization* For more information, please see the article on [creating a default community health file for your organization](https://help.github.com/en/articles/creating-a-default-community-health-file-for-your-organization). + +--- + +> Demo pull request created via Cursor cloud agent. From 42dc859d099fc93ef5474cd955cd183751b1f764 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Sat, 2 May 2026 19:41:37 +0000 Subject: [PATCH 07/16] docs: update community health file link to docs.github.com Co-authored-by: QuantuM --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3f4e6314..cae57854 100644 --- a/README.md +++ b/README.md @@ -2,4 +2,4 @@ *Community health files for the [@GitHub](https://github.com/github) organization* -For more information, please see the article on [creating a default community health file for your organization](https://help.github.com/en/articles/creating-a-default-community-health-file-for-your-organization). +For more information, please see the article on [creating a default community health file for your organization](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/creating-a-default-community-health-file). From 4e7fe45ef4c1a612458fe4646d6575a8243397b7 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Sat, 2 May 2026 19:42:23 +0000 Subject: [PATCH 08/16] Remove demo note from README --- README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.md b/README.md index 1cb87a46..3f4e6314 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,3 @@ *Community health files for the [@GitHub](https://github.com/github) organization* For more information, please see the article on [creating a default community health file for your organization](https://help.github.com/en/articles/creating-a-default-community-health-file-for-your-organization). - ---- - -> Demo pull request created via Cursor cloud agent. From 83d6520ff2af8ab7797d1966a3e987fc3e0a0518 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Mon, 4 May 2026 01:01:30 +0000 Subject: [PATCH 09/16] docs: add demo pull request marker to README Co-authored-by: QuantuM --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 3f4e6314..cf097b7a 100644 --- a/README.md +++ b/README.md @@ -3,3 +3,5 @@ *Community health files for the [@GitHub](https://github.com/github) organization* For more information, please see the article on [creating a default community health file for your organization](https://help.github.com/en/articles/creating-a-default-community-health-file-for-your-organization). + + From 8571e52a65048bdcf315f2d7b43ae02b3d399652 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Mon, 4 May 2026 01:01:36 +0000 Subject: [PATCH 10/16] Fix typo: 'your self' -> 'yourself' in CONTRIBUTING.md Co-authored-by: QuantuM --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f301de7d..e293f2ab 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -14,7 +14,7 @@ Please note that this project is released with a Contributor Code of Conduct. By 0. Create a new branch: `git checkout -b my-branch-name` 0. Make your change, add tests, and make sure the tests still pass 0. Push to your fork and submit a pull request -0. Pat your self on the back and wait for your pull request to be reviewed and merged. +0. Pat yourself on the back and wait for your pull request to be reviewed and merged. Here are a few things you can do that will increase the likelihood of your pull request being accepted: From cdcafd18d96734214d29460a2f266836c4ba3b42 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 4 May 2026 16:26:54 +0000 Subject: [PATCH 11/16] Initial plan From c7012e05c9b04f909aba5ca76f64725be1dbe144 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 4 May 2026 16:29:46 +0000 Subject: [PATCH 12/16] Fix repolinter ruleset and add missing LICENSE and CODEOWNERS files Agent-Logs-Url: https://github.com/marekdkropiewnicki-dotcom/.github/sessions/67f3f96e-327b-4085-945e-abbbcc1b6348 Co-authored-by: marekdkropiewnicki-dotcom <259442047+marekdkropiewnicki-dotcom@users.noreply.github.com> --- CODEOWNERS | 2 ++ LICENSE | 21 +++++++++++++++++++++ config/repolinter-ruleset.json | 6 +++--- 3 files changed, 26 insertions(+), 3 deletions(-) create mode 100644 CODEOWNERS create mode 100644 LICENSE diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 00000000..235987c7 --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1,2 @@ +# Default owners for everything in the repo. +* @marekdkropiewnicki-dotcom diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..485761d2 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 marekdkropiewnicki-dotcom + +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/config/repolinter-ruleset.json b/config/repolinter-ruleset.json index c57e1b87..34c16b22 100644 --- a/config/repolinter-ruleset.json +++ b/config/repolinter-ruleset.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/prototypicalpro/repolinter/master/rulesets/schema.json", + "$schema": "https://raw.githubusercontent.com/todogroup/repolinter/master/rulesets/schema.json", "version": 2, "axioms": {}, "rules": { @@ -57,12 +57,12 @@ "type": "file-create", "options": { "file": "CODEOWNERS", - "text": { "url": "https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners" } + "text": "* @marekdkropiewnicki-dotcom\n" } }, "policyInfo": "GitHub requires a CODEOWNERS file in all projects. This enables GitHub to contact the maintainers in the event it is necessary.", "policyUrl": "https://github.com/github/open-source/blob/main/policies/release.md" - }, + } }, "formatOptions": { "disclaimer": "🤖*This issue was automatically generated by [repolinter-action](https://github.com/newrelic/repolinter-action), developed by the Open Source and Developer Advocacy team at New Relic.*" From eb6addc6847bdf8ea1d6db7f2c0bc3183ba6994f Mon Sep 17 00:00:00 2001 From: QuantuM Date: Mon, 4 May 2026 17:55:16 +0100 Subject: [PATCH 13/16] Fix link formatting for GitHub Help in CONTRIBUTING.md From a3b49d81a4ba4398848f6a9300166c844449931b Mon Sep 17 00:00:00 2001 From: QuantuM Date: Mon, 4 May 2026 17:55:16 +0100 Subject: [PATCH 14/16] Fix link formatting for GitHub Help in CONTRIBUTING.md From e8f6eb4879cfa397677d362060c99ed8e939c21e Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Thu, 7 May 2026 20:19:12 +0000 Subject: [PATCH 15/16] Update AGENTS.md known issues to reflect current repo state MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Address PR #2 review feedback from Copilot: - Remove the 'trailing comma in repolinter-ruleset.json' bullet — the file is now valid strict JSON (fixed in PR #8). - Remove the 'no LICENSE file' bullet — the repo now ships an MIT LICENSE (added in PR #8), so license-file-is-MIT no longer warns. - Rewrite the CODEOWNERS cleanup guidance to use 'git restore' rather than 'rm -f', because CODEOWNERS (and LICENSE) are now tracked files and 'rm' would delete real content. Also call out that running without --dryRun can overwrite both tracked files via fix rules. Co-authored-by: QuantuM --- AGENTS.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 50fbb595..352fd261 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -17,10 +17,8 @@ This is a GitHub organization `.github` repository containing community health f ### Known issues -- `config/repolinter-ruleset.json` has a trailing comma on the last rule entry (line 65-66), which makes it invalid strict JSON. Repolinter's parser handles it, but `JSON.parse()` and `python3 json.load()` will fail. Do not attempt to "fix" this unless explicitly asked. - `CONTRIBUTING.md` references `script/bootstrap` and `script/cibuild` commands that do not exist in this repository — they are generic placeholder instructions. -- Repolinter's `license-file-is-MIT` rule will flag a warning because this repo has no LICENSE file (expected for an org-level `.github` repo). -- Running `repolinter lint` without `--dryRun` may auto-create a `CODEOWNERS` file via its fix rule. Clean up with `rm -f CODEOWNERS` if this happens unintentionally. +- Running `repolinter lint` without `--dryRun` may invoke fix rules (e.g. `codeowners-file-exists` will overwrite `CODEOWNERS`, `license-file-is-MIT` will overwrite `LICENSE`). Both files are tracked in this repo, so if a fix run mutates them unintentionally, restore the original with `git restore CODEOWNERS LICENSE` rather than `rm`-ing tracked files. Use `--dryRun` to avoid this. ### No build, no tests, no dev server From 069b7ffcefb2010a33f8122f3368a50c60710de3 Mon Sep 17 00:00:00 2001 From: QuantuM Date: Sat, 9 May 2026 17:11:47 +0100 Subject: [PATCH 16/16] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- AGENTS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AGENTS.md b/AGENTS.md index 352fd261..be8d0df8 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -18,7 +18,7 @@ This is a GitHub organization `.github` repository containing community health f ### Known issues - `CONTRIBUTING.md` references `script/bootstrap` and `script/cibuild` commands that do not exist in this repository — they are generic placeholder instructions. -- Running `repolinter lint` without `--dryRun` may invoke fix rules (e.g. `codeowners-file-exists` will overwrite `CODEOWNERS`, `license-file-is-MIT` will overwrite `LICENSE`). Both files are tracked in this repo, so if a fix run mutates them unintentionally, restore the original with `git restore CODEOWNERS LICENSE` rather than `rm`-ing tracked files. Use `--dryRun` to avoid this. +- Running `repolinter lint` without `--dryRun` may invoke fix rules (e.g. `codeowners-file-exists` will create `CODEOWNERS` if it is missing, `license-file-is-MIT` will overwrite `LICENSE`). Both files are tracked in this repo, so if a fix run mutates them unintentionally, restore the original with `git restore CODEOWNERS LICENSE` rather than `rm`-ing tracked files. Use `--dryRun` to avoid this. ### No build, no tests, no dev server