-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Making Gemini and Claude configuration files point to AGENTS.md #3494
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
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
76b1a77
Created GEMINI.md file
george-gca 8c5d14b
Updated GEMINI.md file with more information
george-gca f696ee3
Changed from using GEMINI.md to centralize information in AGENTS.md
george-gca 69a3c9b
Created GIT_WORKFLOW to make AGENTS.md smaller
george-gca e3446a8
Updated AGENTS.md
george-gca 5cf9f37
Created CLAUDE.md pointing to AGENTS.md
george-gca 5081a39
Fixed prettier complaints
george-gca 9fcd0e3
Fixed link to gitignore in GIT_WORKFLOW
george-gca 3263abe
Update .github/GIT_WORKFLOW.md
george-gca 2c1d320
Update AGENTS.md
george-gca 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,14 @@ | ||
| { | ||
| "context": [ | ||
| "AGENTS.md", | ||
| ".github/copilot-instructions.md", | ||
| ".github/agents/customize.agent.md", | ||
| ".github/agents/docs.agent.md", | ||
| ".github/instructions/**/*.md", | ||
| "CUSTOMIZE.md", | ||
| "INSTALL.md", | ||
| "TROUBLESHOOTING.md", | ||
| "QUICKSTART.md", | ||
| "README.md" | ||
| ] | ||
| } |
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,47 @@ | ||
| # Git Workflow | ||
|
|
||
| This document outlines the conventions for using Git and writing commit messages in this project. | ||
|
|
||
| ## Commit Message Format | ||
|
|
||
| All commit messages should follow this format: | ||
|
|
||
| ``` | ||
| <type>: <subject> | ||
|
|
||
| <body (optional)> | ||
| ``` | ||
|
|
||
| **Types:** | ||
|
|
||
| - `feat`: A new feature | ||
| - `fix`: A bug fix | ||
| - `docs`: Documentation only changes | ||
| - `style`: Changes that do not affect the meaning of the code (white-space, formatting, etc.) | ||
| - `config`: Changes to configuration files | ||
| - `chore`: Changes to the build process or auxiliary tools and libraries | ||
|
|
||
| **Examples:** | ||
|
|
||
| ``` | ||
| feat: Add dark mode toggle button to header | ||
| fix: Correct baseurl in project site configuration | ||
| docs: Update INSTALL.md with Docker troubleshooting | ||
| style: Format all Liquid templates with Prettier | ||
| config: Enable blog section in _config.yml | ||
| chore: Update Jekyll dependencies with bundle update --all | ||
| ``` | ||
|
|
||
| ## Staging Changes | ||
|
|
||
| **Always `git add` files explicitly.** Do not stage everything with `git add .` unless you are certain of what's being committed. Check `git status` first to review your changes. | ||
|
|
||
| ## What NOT to Commit | ||
|
|
||
| **Always obey the project's [`.gitignore`](../.gitignore) file.** It prevents the accidental commit of: | ||
george-gca marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| - Build outputs (`_site/`, `.jekyll-cache/`) | ||
| - Dependencies (`node_modules/`, `vendor/`) | ||
| - OS-specific files (`.DS_store`) | ||
| - Editor temporary files (`.idea/`, `.swp`, `.swo`) | ||
| - Secrets and API keys (never commit credentials) | ||
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 @@ | ||
| @AGENTS.md | ||
george-gca marked this conversation as resolved.
Show resolved
Hide resolved
|
||
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.