Skip to content
Open
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: 2 additions & 0 deletions crates/tui/src/project_context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
//! instructions and context to the AI agent. These include:
//!
//! - `AGENTS.md` - Project-level agent instructions (primary)
//! - `DEEPSEEK.md` - DeepSeek TUI-specific project instructions
//! - `.claude/instructions.md` - Claude-style hidden instructions
//! - `CLAUDE.md` - Claude-style instructions
//! - `.deepseek/instructions.md` - Hidden instructions file (legacy)
Expand All @@ -21,6 +22,7 @@ use thiserror::Error;
/// Names of project context files to look for, in priority order.
const PROJECT_CONTEXT_FILES: &[&str] = &[
"AGENTS.md",
"DEEPSEEK.md",
".claude/instructions.md",
"CLAUDE.md",
".deepseek/instructions.md",
Expand Down
1 change: 1 addition & 0 deletions crates/tui/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ pub fn is_key_file(path: &Path) -> bool {
| "pom.xml"
| "readme.md"
| "agents.md"
| "deepseek.md"
| "claude.md"
| "makefile"
| "dockerfile"
Expand Down
1 change: 1 addition & 0 deletions crates/tui/src/working_set.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1156,6 +1156,7 @@ fn detect_key_files(workspace: &Path) -> Vec<String> {
"Cargo.toml",
"README.md",
"AGENTS.md",
"DEEPSEEK.md",
"CLAUDE.md",
"package.json",
"pyproject.toml",
Expand Down