Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .agents/CONTEXT.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

1. Instruções do usuário (chat/prompt)
2. `AGENTS.md` (SSoT)
3. Arquivo de plataforma (`CLAUDE.md`, `DEVIN.md`, `GEMINI.md`)
3. Arquivo de plataforma (`CLAUDE.md`) — Devin e Windsurf leem `AGENTS.md` diretamente
4. `.agents/RULES.md`
5. `rules/*.instructions.md`
6. `.agents/skills/`
Expand Down
22 changes: 9 additions & 13 deletions .agents/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,10 @@
## Diagrama de Arquivos

```
AGENTS.md ← SSoT (≤500 linhas)
CLAUDE.md ← Delta para Claude Code
DEVIN.md ← Delta para Devin
GEMINI.md ← Delta para Gemini CLI
.aiignore ← Ignore JetBrains AI
AGENTS.md ← SSoT (≤500 linhas) — lido por Devin e Windsurf
CLAUDE.md ← Delta para Claude Code (@import AGENTS.md)
.claudeignore ← Ignore Claude Code
.cursorignore ← Ignore Cursor
.devinignore ← Ignore Devin
.geminiignore ← Ignore Gemini CLI
.windsurfignore ← Ignore Windsurf
Comment on lines +6 to 10

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 Info: Stale ignore files remain in repo after documentation cleanup

The PR removes .aiignore, .cursorignore, and .geminiignore from the README diagram, but these files still exist in the repository (confirmed via ls). While the documentation is being simplified to only reference Claude Code, Devin, and Windsurf, the orphaned ignore files for removed platforms were not cleaned up. This isn't a bug (the files are harmless), but a follow-up to delete them would keep the repo consistent with the updated docs.

Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

.agents/
├── CONTEXT.md ← Estratégias de contexto
Expand All @@ -36,12 +31,13 @@ rules/

## Compatibilidade

| Feature | Claude | Devin | Gemini | Cursor | Windsurf |
|---------|--------|-------|--------|--------|----------|
| AGENTS.md | Sim | Sim | Sim | Sim | Sim |
| Skills | Sim | Sim | Sim | Sim | Sim |
| Rules | Sim | Sim | Sim | Sim | Sim |
| Ignore | .claudeignore | .devinignore | .geminiignore | .cursorignore | .windsurfignore |
| Feature | Claude Code | Devin | Windsurf |
|---------|-------------|-------|----------|
| AGENTS.md (SSoT) | Sim | Sim | Sim |
| Platform file | CLAUDE.md | AGENTS.md | AGENTS.md |

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚩 Cross-file inconsistency: Windsurf config principal in AGENTS.md vs README

The new README line 37 states Windsurf's platform file is AGENTS.md, and CONTEXT.md line 16 states "Devin e Windsurf leem AGENTS.md diretamente". However, AGENTS.md:61 lists Windsurf's Config Principal as .windsurfignore, which is an ignore file, not a configuration file. The AGENTS.md entry appears to be a pre-existing error (an ignore file shouldn't be listed as config principal), and this PR's changes are arguably more accurate. However, since AGENTS.md is the declared SSoT, the inconsistency between these files should be resolved — ideally by also correcting AGENTS.md:61 to list AGENTS.md as Windsurf's config principal.

Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

| Skills (.agents/skills/) | Sim | Sim | Sim |
| Rules (rules/) | Sim | Sim | Sim |
| Ignore file | .claudeignore | .devinignore | .windsurfignore |

## Referências

Expand Down
Loading