DN agents setup review - #45
Conversation
…ns, including the audit hygiene prompt, prompt evolution README, review codebase prompt, bugs report, refactoring backlog, and various rules. Clean up the directory structure by deleting unnecessary files to streamline the documentation process for the aiscr-webamcr-help repository.
There was a problem hiding this comment.
Code Review
This pull request removes the .agents/ directory, which contained configurations, prompts, rules, and reports for AI coding agents. It also updates .gitignore by adding .venv/ and node_modules/ while removing ignore patterns for .codex/, .claude/, and .cursor/. The review feedback correctly recommends retaining these agent-related ignore patterns in .gitignore to prevent developers from accidentally committing local workspace configurations and history.
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/ | ||
|
|
||
| # node_modules | ||
| node_modules/ |
There was a problem hiding this comment.
Even if the repository-level AI agent configuration (.agents/) is being removed, individual developers may still use tools like Cursor, Claude Code, or Codex locally. Removing .cursor/, .claude/, and .codex/ from .gitignore increases the risk of developers accidentally committing local workspace history, cache, or user-specific configurations. It is recommended to keep these patterns in .gitignore.
# venv
.venv/
# node_modules
node_modules/
# agents
.codex/
.claude/
.cursor/
|
@petrpajdla S těmi draft PR zatím nic nedělej. Mám to tu jen pro sebe, abych si v tom dělal pořádek. Dám vědět, až to bude relevantní. |
No description provided.