Skip to content
Open
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
310eba8
Add AGENTS.md with cloud-specific instructions for development enviro…
cursoragent May 2, 2026
4ce164e
fix: correct trailing comma line reference in AGENTS.md from 66 to 65
May 2, 2026
96c7752
Potential fix for pull request finding
marekdkropiewnicki-dotcom May 2, 2026
1aa7b4c
Add AGENTS.md with cloud-specific development instructions
cursoragent May 2, 2026
7ed84ae
Add AGENTS.md with Cursor Cloud specific instructions
cursoragent May 2, 2026
ca36d99
docs: add demo note to README
cursoragent May 2, 2026
42dc859
docs: update community health file link to docs.github.com
cursoragent May 2, 2026
4e7fe45
Remove demo note from README
cursoragent May 2, 2026
83d6520
docs: add demo pull request marker to README
cursoragent May 4, 2026
8571e52
Fix typo: 'your self' -> 'yourself' in CONTRIBUTING.md
cursoragent May 4, 2026
3d76909
Add AGENTS.md for Cursor Cloud dev environment setup (#3)
marekdkropiewnicki-dotcom May 4, 2026
d373794
Resolve merge conflict in AGENTS.md: combine both versions and addres…
cursoragent May 4, 2026
63cd0c3
Merge pull request #1 from marekdkropiewnicki-dotcom/cursor/setup-dev…
marekdkropiewnicki-dotcom May 4, 2026
cdcafd1
Initial plan
Copilot May 4, 2026
c7012e0
Fix repolinter ruleset and add missing LICENSE and CODEOWNERS files
Copilot May 4, 2026
eb6addc
Fix link formatting for GitHub Help in CONTRIBUTING.md
marekdkropiewnicki-dotcom May 4, 2026
a3b49d8
Fix link formatting for GitHub Help in CONTRIBUTING.md
marekdkropiewnicki-dotcom May 4, 2026
25eeb65
Demo pull request (#6)
marekdkropiewnicki-dotcom May 5, 2026
c8a7562
Fix typo: "your self" → "yourself" in CONTRIBUTING.md (#7)
marekdkropiewnicki-dotcom May 5, 2026
7229335
Demo pull request (#4)
marekdkropiewnicki-dotcom May 5, 2026
e8fde47
Merge branch 'main' into cursor/demo-pull-request-41f9
Copilot May 5, 2026
3cfb0de
Merge pull request #5 from marekdkropiewnicki-dotcom/cursor/demo-pull…
marekdkropiewnicki-dotcom May 5, 2026
3c9f799
Merge pull request #8 from marekdkropiewnicki-dotcom/copilot/fix-repo…
marekdkropiewnicki-dotcom May 5, 2026
81bea69
Merge branch 'main' into cursor/dev-env-setup-2c16
Copilot May 7, 2026
e8f6eb4
Update AGENTS.md known issues to reflect current repo state
cursoragent May 7, 2026
9d10b54
Add AGENTS.md with cloud-specific development instructions (#2)
marekdkropiewnicki-dotcom May 7, 2026
069b7ff
Potential fix for pull request finding
marekdkropiewnicki-dotcom May 9, 2026
6c32052
Rewrite QuantuM org profile — The Quiet Blacksmith
marekdkropiewnicki-dotcom Jul 19, 2026
924e8f7
Add sponsorship section to README
marekdkropiewnicki-dotcom Jul 25, 2026
dd6845a
Add funding configuration in FUNDING.yml
marekdkropiewnicki-dotcom Jul 25, 2026
289f20b
Add Polish support section to README
marekdkropiewnicki-dotcom Jul 25, 2026
1d6566a
Update location from Drogheda toPopraw miejscowość: Dunleer (Dún Léir…
marekdkropiewnicki-dotcom Jul 28, 2026
db13e72
Fix location: Dun Leire (Dunleer), County Louth
marekdkropiewnicki-dotcom Jul 28, 2026
bbcf8a2
Fix location name to Dun Leire
marekdkropiewnicki-dotcom Jul 28, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update AGENTS.md known issues to reflect current repo state
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 <qumusai@proton.me>
  • Loading branch information
cursoragent and QuantuM committed May 7, 2026
commit e8f6eb4879cfa397677d362060c99ed8e939c21e
4 changes: 1 addition & 3 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Comment thread
marekdkropiewnicki-dotcom marked this conversation as resolved.
Outdated

### No build, no tests, no dev server

Expand Down