-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Agents #616
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
marekdkropiewnicki-dotcom
wants to merge
27
commits into
github:main
Choose a base branch
from
marekdkropiewnicki-dotcom:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Agents #616
Changes from 26 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
310eba8
Add AGENTS.md with cloud-specific instructions for development enviro…
cursoragent 4ce164e
fix: correct trailing comma line reference in AGENTS.md from 66 to 65
96c7752
Potential fix for pull request finding
marekdkropiewnicki-dotcom 1aa7b4c
Add AGENTS.md with cloud-specific development instructions
cursoragent 7ed84ae
Add AGENTS.md with Cursor Cloud specific instructions
cursoragent ca36d99
docs: add demo note to README
cursoragent 42dc859
docs: update community health file link to docs.github.com
cursoragent 4e7fe45
Remove demo note from README
cursoragent 83d6520
docs: add demo pull request marker to README
cursoragent 8571e52
Fix typo: 'your self' -> 'yourself' in CONTRIBUTING.md
cursoragent 3d76909
Add AGENTS.md for Cursor Cloud dev environment setup (#3)
marekdkropiewnicki-dotcom d373794
Resolve merge conflict in AGENTS.md: combine both versions and addres…
cursoragent 63cd0c3
Merge pull request #1 from marekdkropiewnicki-dotcom/cursor/setup-dev…
marekdkropiewnicki-dotcom cdcafd1
Initial plan
Copilot c7012e0
Fix repolinter ruleset and add missing LICENSE and CODEOWNERS files
Copilot eb6addc
Fix link formatting for GitHub Help in CONTRIBUTING.md
marekdkropiewnicki-dotcom a3b49d8
Fix link formatting for GitHub Help in CONTRIBUTING.md
marekdkropiewnicki-dotcom 25eeb65
Demo pull request (#6)
marekdkropiewnicki-dotcom c8a7562
Fix typo: "your self" → "yourself" in CONTRIBUTING.md (#7)
marekdkropiewnicki-dotcom 7229335
Demo pull request (#4)
marekdkropiewnicki-dotcom e8fde47
Merge branch 'main' into cursor/demo-pull-request-41f9
Copilot 3cfb0de
Merge pull request #5 from marekdkropiewnicki-dotcom/cursor/demo-pull…
marekdkropiewnicki-dotcom 3c9f799
Merge pull request #8 from marekdkropiewnicki-dotcom/copilot/fix-repo…
marekdkropiewnicki-dotcom 81bea69
Merge branch 'main' into cursor/dev-env-setup-2c16
Copilot e8f6eb4
Update AGENTS.md known issues to reflect current repo state
cursoragent 9d10b54
Add AGENTS.md with cloud-specific development instructions (#2)
marekdkropiewnicki-dotcom 069b7ff
Potential fix for pull request finding
marekdkropiewnicki-dotcom File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| # 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 --dryRun .` — runs repo policy checks using the custom ruleset. Use `--dryRun` to avoid auto-creating fix files (e.g. a `CODEOWNERS` file). The ruleset checks 3 rules: `license-file-is-MIT`, `readme-file-exists`, and `codeowners-file-exists`. | ||
| - **markdownlint**: `markdownlint '*.md' 'profile/*.md'` — lints Markdown files (many pre-existing warnings are expected) | ||
|
|
||
| ### 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. | ||
|
|
||
| ### 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. | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| # Default owners for everything in the repo. | ||
| * @marekdkropiewnicki-dotcom |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.