DN agents setup review - #77
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Code Review
This pull request deletes the GitHub Copilot repository guidance file and updates the .gitignore file to standardize the node_modules/ path, add .venv/, and remove ignore rules for .codex/, .claude/, and .cursor/. The feedback recommends keeping the ignore rules for .codex/, .claude/, and .cursor/ to prevent local agent caches, history, and temporary run files from being accidentally committed to the repository.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
| # venv | ||
| .venv/ |
There was a problem hiding this comment.
Removing the ignore rules for .codex/, .claude/, and .cursor/ can result in local agent caches, history, and temporary run files being accidentally committed to the repository. It is best practice to keep these directories ignored to maintain a clean repository state.
# venv
.venv/
# agents
.codex/
.claude/
.cursor/
No description provided.