@@ -129,7 +129,7 @@ interface CoalescedToolCallProps {
// Map tool names to their specialized components.
// IMPORTANT: When adding a new tool here, also add it to Message.tsx renderContent()
-// for both tool_use and tool_result cases. See AGENT.md in this directory.
+// for both tool_use and tool_result cases. See AGENTS.md in this directory.
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const TOOL_COMPONENTS: Record<string, React.ComponentType<any>> = {
bash: BashTool,
@@ -345,7 +345,7 @@ function Message({ message, onOpenDiffViewer, onCommentTextChange }: MessageProp
// IMPORTANT: When adding a new tool component here, also add it to:
// 1. The tool_result case below
// 2. TOOL_COMPONENTS map in ChatInterface.tsx
- // See AGENT.md in this directory.
+ // See AGENTS.md in this directory.
// Use specialized component for bash tool
if (content.ToolName === "bash") {