---
description: FAQ Distribution Strategy: **Goal:** Make FAQ content available everywhere it's needed without duplication **Approach:** Single source of truth (docs/FAQ.md) wi
---
Goal: Make FAQ content available everywhere it's needed without duplication Approach: Single source of truth (docs/FAQ.md) with references in multiple locations
We have great FAQ content that would be valuable in multiple places:
- Website FAQ page
- Book/documentation
- MkDocs
- README
- Marketing materials
But we don't want:
- Duplicate content (maintenance nightmare)
- Content drift (updates only in some places)
- Different answers to same question
Master FAQ: docs/FAQ.md (comprehensive, 10,000+ words)
Everywhere else: Reference or excerpt sections, don't duplicate
Location: docs/FAQ.md (already there!)
In mkdocs.yml:
nav:
- Home: index.md
- Getting Started: guides/getting-started.md
- Guides:
- Five Levels of Empathy: guides/five-levels-of-empathy.md
- Teaching AI Your Standards: guides/teaching-ai-your-standards.md
- FAQ: FAQ.md # ← Add this
- API Reference: api-reference/Advantage: Full content, searchable, versioned with docs
Location: website/app/faq/page.tsx
Approach: Excerpt key sections, link to full MkDocs FAQ
What to include (short versions):
- What is Empathy Framework? (3 sentences + link)
- What are the 5 Levels? (table + link)
- How do I get started? (code snippet + link)
- Does it work with [tool]? (yes/no + links)
For each answer:
<Answer>
<ShortAnswer>
2-3 sentences covering the core point
</ShortAnswer>
<LearnMore href="https://docs.smartaimemory.com/FAQ#section">
Full details in documentation →
</LearnMore>
</Answer>Advantage: Fast loading, mobile-friendly, comprehensive answers in docs
Location: README.md
Approach: Link to FAQ, show 2-3 most common questions
Structure:
## Frequently Asked Questions
**Quick answers:**
- **What is this?** An open-source Python framework for AI memory and coordination
- **Quick start?** `pip install empathy-framework && empathy-memory serve`
- **Does it work with [Copilot/Cursor/Claude]?** Yes! [See compatibility guide](docs/FAQ.md#tool-compatibility)
**More questions?** See the [comprehensive FAQ](docs/FAQ.md)Advantage: Answers most common questions without leaving README
Location: docs/guides/*.md
Approach: Embed relevant FAQ sections inline, cite FAQ for details
Example in "Teaching AI Your Standards" guide:
## Common Questions
> **Q: Isn't this just fancy prompting?**
>
> No - the key difference is persistence. [See FAQ for detailed comparison](../FAQ.md#whats-the-difference-between-prompting-and-project-memory).
> **Q: How much time does this save?**
>
> We measured 80 hours/month. [See FAQ for breakdown by team size](../FAQ.md#what-results-can-i-expect).Advantage: Questions answered in context, full details available without duplication
Location: docs/marketing/*.md
Approach: Reference FAQ for objection handling, don't duplicate
In response templates:
## When Someone Asks "Isn't this overengineered?"
See: [FAQ - Isn't this overengineered?](../FAQ.md#isnt-this-overengineered)
Quick version for Reddit:
"Fair question! [2-3 sentence summary from FAQ]. Full breakdown: [link to FAQ]"Advantage: Consistent answers, can update once and all marketing benefits
Location: .github/ISSUE_TEMPLATE/ and .github/DISCUSSION_TEMPLATE/
Approach: Link to relevant FAQ sections before allowing submission
In issue template:
## Before Opening an Issue
Please check if your question is answered in the FAQ:
**Common questions:**
- [Tool compatibility](https://docs.smartaimemory.com/FAQ#tool-compatibility)
- [Getting started](https://docs.smartaimemory.com/FAQ#getting-started)
- [Implementation](https://docs.smartaimemory.com/FAQ#implementation)
**Full FAQ:** https://docs.smartaimemory.com/FAQAdvantage: Reduces duplicate issues, helps users find answers faster
The docs/FAQ.md has 7 sections:
- Getting Started - What is it? Quick start? 5 Levels?
- Teaching AI Your Standards - How to? Prompting vs memory? Examples?
- Tool Compatibility - Copilot? Cursor? Claude? ChatGPT?
- Implementation - Setup time? What to document? Keep updated?
- Results & ROI - Expected results? How to measure?
- Common Concerns - Overengineered? Replace code review? Hallucinations?
- Advanced Topics - Multi-project? Language-specific? Data science?
For website/README (casual users): → Sections 1-3 (Getting Started, Teaching AI, Tool Compatibility)
For book/guides (learning users): → Sections 2, 4, 5 (Teaching AI, Implementation, Results)
For marketing (skeptical users): → Sections 5, 6 (Results, Common Concerns)
For support (power users): → Sections 4, 7 (Implementation, Advanced Topics)
- Update master: Edit
docs/FAQ.md - Check references: Search for links to that section
- Update excerpts: If website/README quotes it, update those too
- Commit together: All changes in one commit
Example commit:
git add docs/FAQ.md website/app/faq/page.tsx README.md
git commit -m "docs: Update FAQ section on tool compatibility"- Add to master: Write full answer in
docs/FAQ.md - Add to table of contents: Update FAQ TOC
- Consider excerpts: Does website need a short version?
- Add links: Update guides that reference this topic
- Create master FAQ (
docs/FAQ.md) - Add FAQ to mkdocs.yml
- Test MkDocs build
- Verify all internal links work
- Design FAQ component for website
- Extract key sections (10-15 questions)
- Add "Learn more" links to full FAQ
- Test responsive design
- Add FAQ references to key guides
- Update "Teaching AI Your Standards" with FAQ links
- Update "Five Levels" guide with FAQ links
- Add FAQ link to README
- Update issue templates with FAQ links
- Update discussion templates with FAQ links
- Add FAQ to response templates
- Train on FAQ for common questions
Once deployed to docs site:
Full FAQ: https://docs.smartaimemory.com/FAQ
Section links:
- Getting Started:
https://docs.smartaimemory.com/FAQ#getting-started - Teaching AI:
https://docs.smartaimemory.com/FAQ#teaching-ai-your-standards - Tool Compatibility:
https://docs.smartaimemory.com/FAQ#tool-compatibility - Implementation:
https://docs.smartaimemory.com/FAQ#implementation - Results:
https://docs.smartaimemory.com/FAQ#results--roi - Concerns:
https://docs.smartaimemory.com/FAQ#common-concerns - Advanced:
https://docs.smartaimemory.com/FAQ#advanced-topics
- One place to update
- No content drift
- Easy to maintain
- Website: Short answers + links
- Docs: Full details
- README: Quick start questions only
- All FAQ content indexed together
- Internal links boost ranking
- Users find answers easily
- Quick answers for casual users
- Deep dives for power users
- Searchable in docs
- Clear update process
- Easy to find references
- Version controlled
- Add FAQ to mkdocs.yml (5 min)
- Test MkDocs build (2 min)
- Create website FAQ excerpt (1 hour)
- Update README with FAQ links (15 min)
- Add FAQ references to guides (30 min)
Total time: ~2 hours Long-term savings: Massive (no duplicate maintenance)
Last Updated: January 7, 2026 Owner: Patrick Roebuck