Skip to content
Open
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
20 changes: 20 additions & 0 deletions components/FAQSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,26 @@ export default function FAQ() {
</>
),
},
{
question: "How do I configure Claude Code?",
answer: (
<>
<p className="mb-2">
Claude Code reads <code>CLAUDE.md</code> rather than <code>AGENTS.md</code>. Import
your AGENTS.md from <code>CLAUDE.md</code> with a one-line directive so there is a
single source of truth both tools share:
</p>
<div className="w-full flex justify-center">
<CodeExample
code="@AGENTS.md"
compact
heightClass="min-h-[48px]"
centerVertically
/>
</div>
</>
),
},
];

return (
Expand Down