A CLI tool that detects AI coding assistant configuration files in your projects.
As "vibe coding" becomes mainstream, projects often accumulate configuration files for multiple AI coding tools. vibedetector scans a directory and reports which AI assistants have been configured, making it easy to understand a project's AI tooling setup at a glance.
go install github.com/VacTube/vibedetector@latestgit clone https://github.com/VacTube/vibedetector.git
cd vibedetector
go build -o vibedetector .brew install vactube/tap/vibedetector# Scan current directory
vibedetector
# Scan a specific directory
vibedetector /path/to/project
# Output as JSON
vibedetector -f json
# Output as compact list (just tool names)
vibedetector -f compact
# Output as table
vibedetector -f table
# List all supported tools
vibedetector -l
# Quiet mode - only return exit code (useful in scripts)
vibedetector -q && echo "AI tools detected"
# Show version
vibedetector -v| Code | Meaning |
|---|---|
| 0 | AI coding tools detected |
| 1 | No AI coding tools detected |
| 2 | Error (invalid directory, etc.) |
AI coding tools detected in /path/to/project:
Claude Code
Anthropic's CLI for Claude
https://claude.ai/code
Files:
[file] CLAUDE.md
[dir ] .claude
Cursor
AI-powered code editor
https://cursor.com
Files:
[file] .cursorrules
{
"directory": "/path/to/project",
"detected": true,
"tools": [
{
"name": "Claude Code",
"description": "Anthropic's CLI for Claude",
"url": "https://claude.ai/code",
"paths": [
{"path": "CLAUDE.md", "type": "file"},
{"path": ".claude", "type": "directory"}
]
}
]
}Claude Code, Cursor, GitHub Copilot, Windsurf
Tool | Type | Path
-----------------------|------|-----
Claude Code | file | CLAUDE.md
Claude Code | dir | .claude
Cursor | file | .cursorrules
| Tool | Files | Directories | URL |
|---|---|---|---|
| Claude Code | CLAUDE.md |
.claude/ |
claude.ai/code |
| Cursor | .cursorrules |
.cursor/ |
cursor.com |
| Windsurf | .windsurfrules |
.windsurf/ |
codeium.com/windsurf |
| GitHub Copilot | .github/copilot-instructions.md |
— | github.com/features/copilot |
| Aider | .aider.conf.yml, .aiderignore, CONVENTIONS.md |
.aider/ |
aider.chat |
| Cline | .clinerules |
.clinerules/ |
github.com/cline/cline |
| Zed | — | .zed/ |
zed.dev |
| Continue.dev | — | .continue/ |
continue.dev |
| Kiro | — | .kiro/ |
kiro.dev |
| Gemini CLI | GEMINI.md, AGENT.md |
.gemini/ |
developers.google.com/gemini-code-assist |
| AGENTS.md Standard | AGENTS.md |
— | github.com/anthropics/agent-rules |
| Bolt | .bolt |
.bolt/ |
bolt.new |
| Replit Agent | .replit |
.replit/ |
replit.com |
| Codex CLI | codex.md |
.codex/ |
github.com/openai/codex |
| Tabnine | .tabnine.json, tabnine.yaml |
.tabnine/ |
tabnine.com |
| Amazon Q Developer | — | .amazonq/, .q/ |
aws.amazon.com/q/developer |
| Sourcegraph Cody | .cody.json, cody.json |
.cody/ |
sourcegraph.com/cody |
| Augment Code | — | .augment/ |
augmentcode.com |
| Supermaven | — | .supermaven/ |
supermaven.com |
Check if a project has AI coding configurations before running AI-assisted code review:
if vibedetector -q; then
echo "AI coding tools detected - running AI review checks"
# run additional checks
fiScan multiple projects to understand AI tool adoption:
for dir in ~/projects/*; do
echo "=== $dir ==="
vibedetector -f compact "$dir" 2>/dev/null || echo "None"
done# Get just the tool names
vibedetector -f json | jq -r '.tools[].name'
# Check if a specific tool is configured
vibedetector -f json | jq -e '.tools[] | select(.name == "Claude Code")' > /dev/nullAdd to .git/hooks/pre-commit to document AI tool usage:
#!/bin/bash
tools=$(vibedetector -f compact 2>/dev/null)
if [ -n "$tools" ]; then
echo "AI coding tools in use: $tools"
fi- CLAUDE.md: Project-level instructions and context for Claude
- .claude/: Directory containing commands, settings, and MCP configurations
- .cursorrules: Project-specific rules for AI behavior, code style, and patterns
- .cursor/: Directory with rules and additional configuration
- .windsurfrules: Rules file similar to Cursor's format
- .github/copilot-instructions.md: Instructions that Copilot reads for project context
- .aider.conf.yml: YAML configuration for Aider settings
- .aiderignore: Files to exclude from Aider's context
- CONVENTIONS.md: Coding conventions loaded via
--readflag
- .clinerules/: Directory with Markdown files for project guidelines
- .zed/: Contains
settings.jsonand rules for Zed's AI features
- .continue/: Contains
config.yamlorconfig.jsonwith model and rule configurations
- .kiro/: Contains steering files (
product.md,structure.md,tech.md), specs, and agent configurations
- GEMINI.md or AGENT.md: Context files for Gemini Code Assist
- .gemini/: Contains
settings.jsonand additional configuration
- AGENTS.md: Proposed cross-tool standard for agent rules (supported by multiple tools)
Contributions are welcome! If you know of an AI coding tool that's missing, please open an issue or PR.
To add a new tool, edit the tools slice in main.go:
{
Name: "New Tool",
Description: "Description of the tool",
URL: "https://newtool.dev",
Files: []string{".newtoolrc", "newtool.config"},
Directories: []string{".newtool"},
},MIT License - see LICENSE for details.