diff options
Diffstat (limited to 'internal/showcase/showcase.go')
| -rw-r--r-- | internal/showcase/showcase.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/showcase/showcase.go b/internal/showcase/showcase.go index f1c8624..46049ff 100644 --- a/internal/showcase/showcase.go +++ b/internal/showcase/showcase.go @@ -795,7 +795,7 @@ func detectVibeCodedProject(repoPath string) bool { // detectAIUsage checks if the repository was generated with AI assistance func detectAIUsage(repoPath string) bool { // Check for AI-related files - aiFiles := []string{"CLAUDE.md", "GEMINI.md"} + aiFiles := []string{"CLAUDE.md", "GEMINI.md", "AGENTS.md"} for _, aiFile := range aiFiles { filePath := filepath.Join(repoPath, aiFile) if _, err := os.Stat(filePath); err == nil { |
